Merge commit 'a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7'
* commit 'a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7': silly typo fixes Conflicts: doc/protocols.texi libavcodec/aacpsy.c libavformat/utils.c tools/patcheck Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -85,9 +85,9 @@ static int wav_probe(AVProbeData *p)
|
||||
return 0;
|
||||
if (!memcmp(p->buf + 8, "WAVE", 4)) {
|
||||
if (!memcmp(p->buf, "RIFF", 4))
|
||||
/* Since ACT demuxer has standard WAV header at top of it's
|
||||
* own, returning score is decreased to avoid probe conflict
|
||||
* between ACT and WAV. */
|
||||
/* Since the ACT demuxer has a standard WAV header at the top of
|
||||
* its own, the returned score is decreased to avoid a probe
|
||||
* conflict between ACT and WAV. */
|
||||
return AVPROBE_SCORE_MAX - 1;
|
||||
else if (!memcmp(p->buf, "RF64", 4) &&
|
||||
!memcmp(p->buf + 12, "ds64", 4))
|
||||
|
||||
Reference in New Issue
Block a user