aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2015-05-23 14:07:14 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-07-28 02:33:55 +0200
commit9e1a818a2df1a5c023780bb3d9b0bcafbe7bf20e (patch)
treecdc664ed841aa50220c3eeb015f75722e2d235bd /libavformat
parentf1a4af4dc27c41e13e15ff5e7e9f5af3551a1b2e (diff)
downloadffmpeg-9e1a818a2df1a5c023780bb3d9b0bcafbe7bf20e.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>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/wavdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index 763e2e4926..66fd7664f7 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, 20);
+ st->probe_packets = FFMIN(st->probe_packets, 32);
}
}