diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-20 23:09:11 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-20 23:09:11 +0000 |
commit | 6531b5c9f4388d28183be8f04d6cf2b42a2eee93 (patch) | |
tree | 74b7342512bd6af5115b13c9ba7e17d57c8f093d /libavcodec/rawdec.c | |
parent | 4d2f703a34bae1bf0a56a751fa5546466ac1f03c (diff) | |
download | ffmpeg-6531b5c9f4388d28183be8f04d6cf2b42a2eee93.tar.gz |
Rename ff_raw_pixelFormatTags symbol to ff_raw_pix_fmt_tags.
The new name is shorter and consistent with the FFmpeg style.
Originally committed as revision 23206 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rawdec.c')
-rw-r--r-- | libavcodec/rawdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c index 8b398d2dc9..afbc966e4e 100644 --- a/libavcodec/rawdec.c +++ b/libavcodec/rawdec.c @@ -75,7 +75,7 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx) if (avctx->codec_tag == MKTAG('r','a','w',' ')) avctx->pix_fmt = findPixelFormat(pixelFormatBpsMOV, avctx->bits_per_coded_sample); else if (avctx->codec_tag) - avctx->pix_fmt = findPixelFormat(ff_raw_pixelFormatTags, avctx->codec_tag); + avctx->pix_fmt = findPixelFormat(ff_raw_pix_fmt_tags, avctx->codec_tag); else if (avctx->bits_per_coded_sample) avctx->pix_fmt = findPixelFormat(pixelFormatBpsAVI, avctx->bits_per_coded_sample); |