summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r--libavcodec/ffv1.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index c6767493af..86f2897434 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -530,17 +530,16 @@ static void write_header(FFV1Context *f){
static av_cold int common_init(AVCodecContext *avctx){
FFV1Context *s = avctx->priv_data;
- int width, height;
s->avctx= avctx;
s->flags= avctx->flags;
dsputil_init(&s->dsp, avctx);
- width= s->width= avctx->width;
- height= s->height= avctx->height;
+ s->width = avctx->width;
+ s->height= avctx->height;
- assert(width && height);
+ assert(s->width && s->height);
return 0;
}