You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avformat/wavdec: enlarge probe_packets for wav
fix issue https://trac.ffmpeg.org/ticket/3550 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
committed by
Michael Niedermayer
parent
d8f40ca251
commit
549bbdfb4b
@@ -114,7 +114,7 @@ static void handle_stream_probing(AVStream *st)
|
|||||||
{
|
{
|
||||||
if (st->codec->codec_id == AV_CODEC_ID_PCM_S16LE) {
|
if (st->codec->codec_id == AV_CODEC_ID_PCM_S16LE) {
|
||||||
st->request_probe = AVPROBE_SCORE_EXTENSION;
|
st->request_probe = AVPROBE_SCORE_EXTENSION;
|
||||||
st->probe_packets = FFMIN(st->probe_packets, 4);
|
st->probe_packets = FFMIN(st->probe_packets, 14);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user