Commit a5e88058 authored by Fabrice Bellard's avatar Fabrice Bellard

corrected pixel format display

Originally committed as revision 1025 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a48b7a6b
...@@ -220,7 +220,6 @@ AVCodec *avcodec_find(enum CodecID id) ...@@ -220,7 +220,6 @@ AVCodec *avcodec_find(enum CodecID id)
} }
const char *pix_fmt_str[] = { const char *pix_fmt_str[] = {
"??",
"yuv420p", "yuv420p",
"yuv422", "yuv422",
"rgb24", "rgb24",
...@@ -229,9 +228,10 @@ const char *pix_fmt_str[] = { ...@@ -229,9 +228,10 @@ const char *pix_fmt_str[] = {
"yuv444p", "yuv444p",
"rgba32", "rgba32",
"bgra32", "bgra32",
"yuv410p" "yuv410p",
"yuv411p",
}; };
void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode) void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
{ {
const char *codec_name; const char *codec_name;
......
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