mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
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
This commit is contained in:
parent
b180d9fe99
commit
bc2bc41bb8
@ -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…
Reference in New Issue
Block a user