diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-01-12 14:12:35 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2017-01-12 15:02:42 +0100 |
commit | f31bac596f93e02b49d04733e57770e183a3d0c8 (patch) | |
tree | d3c6b924ff897945f4161fd175673af97fc8bbb7 /libavformat/dss.c | |
parent | aaae459a850ee367f5a0409a5f2ba8200a2b2fe5 (diff) | |
download | ffmpeg-f31bac596f93e02b49d04733e57770e183a3d0c8.tar.gz |
lavf/dss: Do not fail randomly if dss_sp input contains 0xff.
Fixes decoding the sample from ticket #6072 with ffmpeg.
Diffstat (limited to 'libavformat/dss.c')
-rw-r--r-- | libavformat/dss.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavformat/dss.c b/libavformat/dss.c index cbf6e17dee..083eb4ad43 100644 --- a/libavformat/dss.c +++ b/libavformat/dss.c @@ -265,9 +265,6 @@ static int dss_sp_read_packet(AVFormatContext *s, AVPacket *pkt) goto error_eof; } - if (pkt->data[0] == 0xff) - return AVERROR_INVALIDDATA; - return pkt->size; error_eof: |