forked from FFmpeg/FFmpeg
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
This commit is contained in:
parent
382cb1154c
commit
797229a6a2
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue