From 6531b5c9f4388d28183be8f04d6cf2b42a2eee93 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Thu, 20 May 2010 23:09:11 +0000 Subject: 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 --- libavcodec/raw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/raw.c') diff --git a/libavcodec/raw.c b/libavcodec/raw.c index 022a96f61d..be9bdea8d1 100644 --- a/libavcodec/raw.c +++ b/libavcodec/raw.c @@ -27,7 +27,7 @@ #include "avcodec.h" #include "raw.h" -const PixelFormatTag ff_raw_pixelFormatTags[] = { +const PixelFormatTag ff_raw_pix_fmt_tags[] = { { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */ { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') }, { PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') }, @@ -114,7 +114,7 @@ const PixelFormatTag ff_raw_pixelFormatTags[] = { unsigned int avcodec_pix_fmt_to_codec_tag(enum PixelFormat fmt) { - const PixelFormatTag * tags = ff_raw_pixelFormatTags; + const PixelFormatTag *tags = ff_raw_pix_fmt_tags; while (tags->pix_fmt >= 0) { if (tags->pix_fmt == fmt) return tags->fourcc; -- cgit v1.2.3