summaryrefslogtreecommitdiff
path: root/libavcodec/imgconvert.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-11-07 13:01:12 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-11-07 13:01:12 +0000
commit24409b50539edd3228e910bb97cda9fdccf7c8ac (patch)
treec33e5301e4670c985f7ddf659a9a844d7efbdf8c /libavcodec/imgconvert.c
parentebb7f7de8298b27326f6525859e1fa8a7ceaae22 (diff)
Remove alpha information from avcodec_pix_fmt_string(), as that
information does not belong to the pixel format. Originally committed as revision 25686 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgconvert.c')
-rw-r--r--libavcodec/imgconvert.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/libavcodec/imgconvert.c b/libavcodec/imgconvert.c
index 879335c212..0ee2f49d8b 100644
--- a/libavcodec/imgconvert.c
+++ b/libavcodec/imgconvert.c
@@ -437,19 +437,16 @@ void avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt)
/* print header */
if (pix_fmt < 0)
snprintf (buf, buf_size,
- "name " " nb_channels" " depth" " is_alpha"
+ "name " " nb_channels" " depth"
);
else{
PixFmtInfo info= pix_fmt_info[pix_fmt];
- char is_alpha_char= info.is_alpha ? 'y' : 'n';
-
snprintf (buf, buf_size,
- "%-11s %5d %9d %6c",
+ "%-11s %5d %9d",
av_pix_fmt_descriptors[pix_fmt].name,
info.nb_channels,
- info.depth,
- is_alpha_char
+ info.depth
);
}
}