Skip to content

Commit

Permalink
avformat/wavdec: enlarge probe_packets for wav
Browse files Browse the repository at this point in the history
fix issue https://trac.ffmpeg.org/ticket/3550

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
  • Loading branch information
csheng authored and michaelni committed Apr 19, 2014
1 parent d8f40ca commit 549bbdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavformat/wavdec.c
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 549bbdf

Please sign in to comment.