Commit a2802d3c authored by Michael Niedermayer's avatar Michael Niedermayer

get_pix_fmt_score: favor equal formats if all else equal

Fixes Ticket2578
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7f866c14
...@@ -113,7 +113,7 @@ static int get_pix_fmt_score(enum AVPixelFormat dst_pix_fmt, ...@@ -113,7 +113,7 @@ static int get_pix_fmt_score(enum AVPixelFormat dst_pix_fmt,
int src_color, dst_color; int src_color, dst_color;
int src_min_depth, src_max_depth, dst_min_depth, dst_max_depth; int src_min_depth, src_max_depth, dst_min_depth, dst_max_depth;
int ret, loss, i, nb_components; int ret, loss, i, nb_components;
int score = INT_MAX; int score = INT_MAX - 1;
if (dst_pix_fmt >= AV_PIX_FMT_NB || dst_pix_fmt <= AV_PIX_FMT_NONE) if (dst_pix_fmt >= AV_PIX_FMT_NB || dst_pix_fmt <= AV_PIX_FMT_NONE)
return ~0; return ~0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment