diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2006-11-16 20:43:29 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2006-11-16 20:43:29 +0000 |
commit | 08d23410ea054e0a0ac3ff4c1e3da381aa552dcd (patch) | |
tree | d64ddbd73dd68665d40a55eb6930b214944362de /libavcodec/imgconvert.c | |
parent | 550f6f974be23fc33ee04b5ab0d67a2b04cb11f6 (diff) | |
download | ffmpeg-08d23410ea054e0a0ac3ff4c1e3da381aa552dcd.tar.gz |
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
Diffstat (limited to 'libavcodec/imgconvert.c')
-rw-r--r-- | libavcodec/imgconvert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c index 046feca1c6..4a5e72ba90 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, |