Commit 24409b50 authored by Stefano Sabatini's avatar Stefano Sabatini

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
parent ebb7f7de
...@@ -437,19 +437,16 @@ void avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt) ...@@ -437,19 +437,16 @@ void avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt)
/* print header */ /* print header */
if (pix_fmt < 0) if (pix_fmt < 0)
snprintf (buf, buf_size, snprintf (buf, buf_size,
"name " " nb_channels" " depth" " is_alpha" "name " " nb_channels" " depth"
); );
else{ else{
PixFmtInfo info= pix_fmt_info[pix_fmt]; PixFmtInfo info= pix_fmt_info[pix_fmt];
char is_alpha_char= info.is_alpha ? 'y' : 'n';
snprintf (buf, buf_size, snprintf (buf, buf_size,
"%-11s %5d %9d %6c", "%-11s %5d %9d",
av_pix_fmt_descriptors[pix_fmt].name, av_pix_fmt_descriptors[pix_fmt].name,
info.nb_channels, info.nb_channels,
info.depth, info.depth
is_alpha_char
); );
} }
} }
......
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