diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-10-11 09:16:35 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-10-11 09:16:35 +0000 |
commit | a5e880583ca27118788d7df24482d497d6418ac8 (patch) | |
tree | 36b12c15c2dd023aa410e29102a389861008ca50 | |
parent | a48b7a6bfa2d639e1fb3e8d82fe988decddc0aa3 (diff) | |
download | ffmpeg-a5e880583ca27118788d7df24482d497d6418ac8.tar.gz |
corrected pixel format display
Originally committed as revision 1025 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index b22b8fcf28..034df6d76e 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -220,7 +220,6 @@ AVCodec *avcodec_find(enum CodecID id) } const char *pix_fmt_str[] = { - "??", "yuv420p", "yuv422", "rgb24", @@ -229,9 +228,10 @@ const char *pix_fmt_str[] = { "yuv444p", "rgba32", "bgra32", - "yuv410p" + "yuv410p", + "yuv411p", }; - + void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) { const char *codec_name; |