Browse Source

Fix missing chroma in version 3 STR.

Closes issue 290
Patch by Alexander Strange: astrange ithinksw com

Originally committed as revision 11170 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Alexander Strange Benoit Fouet 18 years ago
parent
commit
bc2bc41bb8
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      libavcodec/mdec.c

+ 4
- 3
libavcodec/mdec.c View File

@@ -175,9 +175,6 @@ static int decode_frame(AVCodecContext *avctx,
}
p->pict_type= I_TYPE;
p->key_frame= 1;
a->last_dc[0]=
a->last_dc[1]=
a->last_dc[2]= 0;

a->bitstream_buffer= av_fast_realloc(a->bitstream_buffer, &a->bitstream_buffer_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
for(i=0; i<buf_size; i+=2){
@@ -192,6 +189,10 @@ static int decode_frame(AVCodecContext *avctx,
a->qscale= get_bits(&a->gb, 16);
a->version= get_bits(&a->gb, 16);

a->last_dc[0]=
a->last_dc[1]=
a->last_dc[2]= 128;

// printf("qscale:%d (0x%X), version:%d (0x%X)\n", a->qscale, a->qscale, a->version, a->version);

for(a->mb_x=0; a->mb_x<a->mb_width; a->mb_x++){


Loading…
Cancel
Save