make some symbols static

Originally committed as revision 6972 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2006-11-11 20:54:48 +00:00
parent 7b0d75fc40
commit 8e981daf2b
8 changed files with 22 additions and 22 deletions

View File

@ -37,7 +37,7 @@ typedef struct PixelFormatTag {
unsigned int fourcc;
} PixelFormatTag;
const PixelFormatTag pixelFormatTags[] = {
static const PixelFormatTag pixelFormatTags[] = {
{ 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') },