diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2009-09-25 01:31:53 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2009-09-25 01:31:53 +0000 |
commit | 84e30ef9927b1c2e497add27b909571ccb050cb9 (patch) | |
tree | 79b4d035d7e776bb827f2c925e42aa31071074c9 /libavcodec | |
parent | ef530829f87f306207a52d3a88995c2b1b26c611 (diff) | |
download | ffmpeg-84e30ef9927b1c2e497add27b909571ccb050cb9.tar.gz |
Align pix_fmt list by allowing one more char for the pix_fmt name.
Originally committed as revision 20024 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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 ecadd6339b..8e0490ac93 100644 --- a/libavcodec/imgconvert.c +++ b/libavcodec/imgconvert.c @@ -585,7 +585,7 @@ void avcodec_pix_fmt_string (char *buf, int buf_size, enum PixelFormat pix_fmt) char is_alpha_char= info.is_alpha ? 'y' : 'n'; snprintf (buf, buf_size, - "%-10s" " %1d " " %2d " " %c ", + "%-11s" " %1d " " %2d " " %c ", info.name, info.nb_channels, info.depth, |