Commit 40a3e1e9 authored by Rodger Combs's avatar Rodger Combs Committed by Michael Niedermayer

avformat/wavdec: Increase dts packet threshold to fix more misdetections

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 9f576943
......@@ -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, 20);
st->probe_packets = FFMIN(st->probe_packets, 32);
}
}
......
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