diff options
author | Rodger Combs <rodger.combs@gmail.com> | 2015-05-23 14:07:14 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-07-20 04:43:39 +0200 |
commit | 308bcf53f9d6c9c0001f3466e36a1e09a611ed58 (patch) | |
tree | 467bb57e144ac746977685370ffa68e6b0a20e10 | |
parent | 4db46cf5208f47ed5a055b2bddcfca3a74afd16f (diff) | |
download | ffmpeg-308bcf53f9d6c9c0001f3466e36a1e09a611ed58.tar.gz |
avformat/wavdec: Increase dts packet threshold to fix more misdetections
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 40a3e1e9c54997e4dfc7802b5a758b68ceb64982)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 77d7062167..1086b035f5 100644 --- a/libavformat/wavdec.c +++ b/libavformat/wavdec.c @@ -119,7 +119,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, 20); + st->probe_packets = FFMIN(st->probe_packets, 32); } } |