Commit 549bbdfb authored by csheng's avatar csheng Committed by Michael Niedermayer

avformat/wavdec: enlarge probe_packets for wav

fix issue https://trac.ffmpeg.org/ticket/3550Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d8f40ca2
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment