diff options
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mtv.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavformat/mtv.c b/libavformat/mtv.c index 13e8ac2e8d..0c35b8121e 100644 --- a/libavformat/mtv.c +++ b/libavformat/mtv.c @@ -70,6 +70,9 @@ static int mtv_probe(AVProbeData *p) return 0; } + if(p->buf[51] != 16) + return AVPROBE_SCORE_MAX/4; // But we are going to assume 16bbp anyway .. + return AVPROBE_SCORE_MAX; } |