# HG changeset patch # User kostya # Date 1258876115 0 # Node ID e2d17f7f9408356c3ba40a65d413547be94ad9f6 # Parent a0dd118e82aedcb6fd3e5626e254cc2d8d140731 Update dimensions in AVCodecContext when RV3/4 frame dimensions change diff -r a0dd118e82ae -r e2d17f7f9408 rv34.c --- a/rv34.c Sat Nov 21 20:56:46 2009 +0000 +++ b/rv34.c Sun Nov 22 07:48:35 2009 +0000 @@ -1285,8 +1285,8 @@ if(s->width != r->si.width || s->height != r->si.height){ av_log(s->avctx, AV_LOG_DEBUG, "Changing dimensions to %dx%d\n", r->si.width,r->si.height); MPV_common_end(s); - s->width = r->si.width; - s->height = r->si.height; + s->width = s->avctx->width = r->si.width; + s->height = s->avctx->height = r->si.height; if(MPV_common_init(s) < 0) return -1; r->intra_types_stride = s->mb_width*4 + 4;