diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-04-24 22:08:31 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-04-24 22:08:31 +0000 |
commit | 9786bd4d94a72ce4245398c3067c016852d1fd55 (patch) | |
tree | 3862dcfa32480fc4b31f66f63a935b236144c6a2 /libavformat/rm.c | |
parent | b80875c18676304dfb3a8efd427efe28406cb04d (diff) | |
download | ffmpeg-9786bd4d94a72ce4245398c3067c016852d1fd55.tar.gz |
fixing broken_rv20_1mb_.rm
Originally committed as revision 4155 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rm.c')
-rw-r--r-- | libavformat/rm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rm.c b/libavformat/rm.c index bea8c4bb2c..f4babe4b62 100644 --- a/libavformat/rm.c +++ b/libavformat/rm.c @@ -606,7 +606,7 @@ static int rm_read_header(AVFormatContext *s, AVFormatParameters *ap) tag, tag_size); #endif - if (tag_size < 10) + if (tag_size < 10 && tag != MKTAG('D', 'A', 'T', 'A')) goto fail; switch(tag) { case MKTAG('P', 'R', 'O', 'P'): |