Browse Source

avformat/rsd: increase probe score, as misdetections are fixed

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.2-rc1
Michael Niedermayer 12 years ago
parent
commit
7b7697646b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/rsd.c

+ 1
- 1
libavformat/rsd.c View File

@@ -49,7 +49,7 @@ static int rsd_probe(AVProbeData *p)
return 1;
if (AV_RL32(p->buf + 16) > 8*48000 || !AV_RL32(p->buf + 16))
return 1;
return AVPROBE_SCORE_EXTENSION;
return AVPROBE_SCORE_MAX;
}

static int rsd_read_header(AVFormatContext *s)


Loading…
Cancel
Save