diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-10-03 13:54:06 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-10-03 14:15:02 +0200 |
commit | 97cb9b6cbb0ea1e8127a4a52790a8e35c20988ed (patch) | |
tree | 8f4a9645d40ce4e337a858581df8eff0b6f6ec4c | |
parent | d225b0f7aaa65eafccc87165130e1c4bab71708b (diff) | |
download | ffmpeg-97cb9b6cbb0ea1e8127a4a52790a8e35c20988ed.tar.gz |
Revert "avformat/img2dec: reduce bmppipe probe score"
This seems not needed anymore
This reverts commit 321c3cd1a97b9307760c3ebb175296590c382eca.
Found-by: carl
-rw-r--r-- | libavformat/img2dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c index 16bd699c98..5aac5550de 100644 --- a/libavformat/img2dec.c +++ b/libavformat/img2dec.c @@ -585,7 +585,7 @@ static int bmp_probe(AVProbeData *p) return 0; if (!AV_RN32(b + 6)) { - return AVPROBE_SCORE_EXTENSION - 1; // lower than extension as bmp pipe has bugs + return AVPROBE_SCORE_EXTENSION + 1; } else { return AVPROBE_SCORE_EXTENSION / 4; } |