Skip to content

Instantly share code, notes, and snippets.

@rcombs

rcombs/stdin Secret

Created May 23, 2015 12:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rcombs/6e85572b6b35841ed3f4 to your computer and use it in GitHub Desktop.
Save rcombs/6e85572b6b35841ed3f4 to your computer and use it in GitHub Desktop.
diff --git a/libavformat/wavdec.c b/libavformat/wavdec.c
index ce86d83..864185f 100644
--- a/libavformat/wavdec.c
+++ b/libavformat/wavdec.c
@@ -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);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment