diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-23 12:03:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-28 02:33:55 +0200 |
commit | f1a4af4dc27c41e13e15ff5e7e9f5af3551a1b2e (patch) | |
tree | 2bc431df7b84adf87a5ac05918ceb6d543fcfde5 /libavformat/wavdec.c | |
parent | 51a624bb80b3a79b75c9a8b813f74da45365d646 (diff) | |
download | ffmpeg-f1a4af4dc27c41e13e15ff5e7e9f5af3551a1b2e.tar.gz |
avformat/wavdec: Increase probe_packets limit
Fixes DTS detection of b2429e5ba9.dts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 9f5769437aaab30a359cde254f39d9a28b1ce657)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/wavdec.c')
-rw-r--r-- | libavformat/wavdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c index 9c4e2dfa14..763e2e4926 100644 --- a/libavformat/wavdec.c +++ b/libavformat/wavdec.c @@ -114,7 +114,7 @@ static void handle_stream_probing(AVStream *st) { if (st->codec->codec_id == AV_CODEC_ID_PCM_S16LE) { st->request_probe = AVPROBE_SCORE_EXTENSION; - st->probe_packets = FFMIN(st->probe_packets, 14); + st->probe_packets = FFMIN(st->probe_packets, 20); } } |