diff h263dec.c @ 281:1fc96b02142e libavcodec

mpeg4 aspect_ratio_info in AVCodecContext (requested by alex) experimental (& faster) motion estimation squished a dirty uninitialized var bug mpeg1 fcode>1 support
author michaelni
date Fri, 22 Mar 2002 23:22:08 +0000
parents d0c186bcf075
children c1a8a1b4a24b
line wrap: on
line diff
--- a/h263dec.c	Fri Mar 22 16:51:44 2002 +0000
+++ b/h263dec.c	Fri Mar 22 23:22:08 2002 +0000
@@ -123,6 +123,7 @@
     if (!s->context_initialized) {
         avctx->width = s->width;
         avctx->height = s->height;
+        avctx->aspect_ratio_info= s->aspect_ratio_info;
         if (MPV_common_init(s) < 0)
             return -1;
     } else if (s->width != avctx->width || s->height != avctx->height) {