Browse Source

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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Rodger Combs Michael Niedermayer 10 years ago
parent
commit
40a3e1e9c5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/wavdec.c

+ 1
- 1
libavformat/wavdec.c View File

@@ -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);
}
}



Loading…
Cancel
Save