From: Alex Beregszaszi Date: Thu, 16 Nov 2006 20:43:29 +0000 (+0000) Subject: BGR555 has never been working as alpha supporting format. Remove the false setting. X-Git-Tag: v0.5~10974 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=08d23410ea054e0a0ac3ff4c1e3da381aa552dcd;p=platform%2Fupstream%2Flibav.git BGR555 has never been working as alpha supporting format. Remove the false setting. Originally committed as revision 7105 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 046feca..4a5e72b 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -269,7 +269,7 @@ static const PixFmtInfo pix_fmt_info[PIX_FMT_NB] = { }, [PIX_FMT_BGR555] = { .name = "bgr555", - .nb_channels = 4, .is_alpha = 1, + .nb_channels = 3, .color_type = FF_COLOR_RGB, .pixel_type = FF_PIXEL_PACKED, .depth = 5,