Commit 99ba5b5a authored by michael's avatar michael

rv10 fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2544 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b291ce98
...@@ -393,6 +393,7 @@ static int rv10_decode_init(AVCodecContext *avctx) ...@@ -393,6 +393,7 @@ static int rv10_decode_init(AVCodecContext *avctx)
s->avctx= avctx; s->avctx= avctx;
s->out_format = FMT_H263; s->out_format = FMT_H263;
s->codec_id= avctx->codec_id;
s->width = avctx->width; s->width = avctx->width;
s->height = avctx->height; s->height = avctx->height;
...@@ -414,9 +415,9 @@ static int rv10_decode_init(AVCodecContext *avctx) ...@@ -414,9 +415,9 @@ static int rv10_decode_init(AVCodecContext *avctx)
s->h263_rv10 = 1; s->h263_rv10 = 1;
break; break;
case 0x20001000: case 0x20001000:
case 0x20100001: case 0x20100001: //ok
case 0x20200002: case 0x20200002:
case 0x20101001: //added case 0x20101001: //ok
default: default:
av_log(s->avctx, AV_LOG_ERROR, "unknown header %X\n", avctx->sub_id); av_log(s->avctx, AV_LOG_ERROR, "unknown header %X\n", avctx->sub_id);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment