Skip to content
Snippets Groups Projects
Commit 40a12840 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

rv10 fix

Originally committed as revision 2544 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 68b94c35
No related branches found
No related tags found
No related merge requests found
...@@ -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);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment