summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-05-23 12:03:38 +0200
committerMichael Niedermayer <michaelni@gmx.at>2015-05-23 12:07:23 +0200
commit9f5769437aaab30a359cde254f39d9a28b1ce657 (patch)
tree51c227ba85c2744d5063b39f9a28cc3452895322
parent0b79a389ba488d50fd9947554d803fc51b877bb3 (diff)
avformat/wavdec: Increase probe_packets limit
Fixes DTS detection of b2429e5ba9.dts Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavformat/wavdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index befc664688..ce86d83412 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, 14);
+ st->probe_packets = FFMIN(st->probe_packets, 20);
}
}