summaryrefslogtreecommitdiff
path: root/libavformat/wavdec.c
diff options
context:
space:
mode:
authorcsheng <csheng@marvell.com>2014-04-11 03:33:50 -0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-19 03:54:10 +0200
commit549bbdfb4ba44ef69841a7b6f7a9785a2d670299 (patch)
tree89fb5073a2a6585815d9e14b80536e621652eb57 /libavformat/wavdec.c
parentd8f40ca25148578af8ef6bb8ff06ef6e51281011 (diff)
avformat/wavdec: enlarge probe_packets for wav
fix issue https://trac.ffmpeg.org/ticket/3550 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/wavdec.c')
-rw-r--r--libavformat/wavdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index daea64edc5..a865b760b7 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, 4);
+ st->probe_packets = FFMIN(st->probe_packets, 14);
}
}