Browse Source

corrected pixel format display

Originally committed as revision 1025 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Fabrice Bellard 23 years ago
parent
commit
a5e880583c
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      libavcodec/utils.c

+ 3
- 3
libavcodec/utils.c View File

@@ -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;


Loading…
Cancel
Save