You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/wavdec: Increase probe_packets limit
Fixes DTS detection of b2429e5ba9.dts Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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, 14);
|
||||
st->probe_packets = FFMIN(st->probe_packets, 20);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user