Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodger Combs <rodger.combs@gmail.com>2015-05-23 15:07:14 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-05-23 17:04:19 +0300
commit40a3e1e9c54997e4dfc7802b5a758b68ceb64982 (patch)
tree2f0c551c1e309ac3b7af1b0627de37b8d4f68c50 /libavformat
parent9f5769437aaab30a359cde254f39d9a28b1ce657 (diff)
avformat/wavdec: Increase dts packet threshold to fix more misdetections
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 ce86d83412..864185f989 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);
}
}