Skip to content
Snippets Groups Projects
Commit 9f576943 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avformat/wavdec: Increase probe_packets limit


Fixes DTS detection of b2429e5ba9.dts

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 0b79a389
No related branches found
No related tags found
No related merge requests found
...@@ -119,7 +119,7 @@ static void handle_stream_probing(AVStream *st) ...@@ -119,7 +119,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, 14); st->probe_packets = FFMIN(st->probe_packets, 20);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment