Browse Source

Make avcodec_get_pix_fmt_name() use av_pix_fmt_descriptors rather than

pix_fmt_info.

Originally committed as revision 20625 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini 16 years ago
parent
commit
797229a6a2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/imgconvert.c

+ 1
- 1
libavcodec/imgconvert.c View File

@@ -486,7 +486,7 @@ const char *avcodec_get_pix_fmt_name(enum PixelFormat pix_fmt)
if (pix_fmt < 0 || pix_fmt >= PIX_FMT_NB)
return NULL;
else
return pix_fmt_info[pix_fmt].name;
return av_pix_fmt_descriptors[pix_fmt].name;
}

static enum PixelFormat avcodec_get_pix_fmt_internal(const char *name)


Loading…
Cancel
Save