[FFmpeg-soc] [soc]: r458 - rv40/rv40.c

kostya subversion at mplayerhq.hu
Tue Jul 17 19:10:22 CEST 2007


Author: kostya
Date: Tue Jul 17 19:10:21 2007
New Revision: 458

Log:
Do not set coded_* as it is wrong for some slices

Modified:
   rv40/rv40.c

Modified: rv40/rv40.c
==============================================================================
--- rv40/rv40.c	(original)
+++ rv40/rv40.c	Tue Jul 17 19:10:21 2007
@@ -482,8 +482,8 @@ static int rv40_parse_slice_header(RV40D
         return -1;
     t = get_bits(gb, 13); /// ???
     rv40_parse_picture_size(gb, &w, &h);
-    r->s.avctx->coded_width  = w;
-    r->s.avctx->coded_height = h;
+//    r->s.avctx->coded_width  = w;
+//    r->s.avctx->coded_height = h;
     mb_bits = av_log2((w + 7) >> 3) + av_log2((h + 7) >> 3);
     r->block_start = get_bits(gb, mb_bits);
 



More information about the FFmpeg-soc mailing list