Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-02-03 06:01:17 +0300
committerMichael Niedermayer <michaelni@gmx.at>2009-02-03 06:01:17 +0300
commit152714e1f1fef1f27d5a137be8735f0eaabac5ec (patch)
tree8063be3f6d34aa3137b546d668e08dfe84a5cd2b /libavcodec/rv10.c
parentc0f1445864fd6fae3cbd9a9b5f62d6e3a0c2b2f5 (diff)
Fix unknown header 10001000 / http://samples.mplayerhq.hu/real/VC-RV10/thankyou.rm / issue809
Originally committed as revision 16967 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r--libavcodec/rv10.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index 40a08db77e..883e107a1b 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -547,6 +547,9 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx)
if (avctx->sub_id == 0x10000000) {
s->rv10_version= 0;
s->low_delay=1;
+ } else if (avctx->sub_id == 0x10001000) {
+ s->rv10_version= 3;
+ s->low_delay=1;
} else if (avctx->sub_id == 0x10002000) {
s->rv10_version= 3;
s->low_delay=1;