comparison raw.c @ 4170:f97a2081b5b1 libavcodec

make some symbols static
author mru
date Sat, 11 Nov 2006 20:54:48 +0000
parents 5c14c4c7974f
children ce643a22f049
comparison
equal deleted inserted replaced
4169:8d67ae8320dc 4170:f97a2081b5b1
35 typedef struct PixelFormatTag { 35 typedef struct PixelFormatTag {
36 int pix_fmt; 36 int pix_fmt;
37 unsigned int fourcc; 37 unsigned int fourcc;
38 } PixelFormatTag; 38 } PixelFormatTag;
39 39
40 const PixelFormatTag pixelFormatTags[] = { 40 static const PixelFormatTag pixelFormatTags[] = {
41 { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */ 41 { PIX_FMT_YUV420P, MKTAG('I', '4', '2', '0') }, /* Planar formats */
42 { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') }, 42 { PIX_FMT_YUV420P, MKTAG('I', 'Y', 'U', 'V') },
43 { PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') }, 43 { PIX_FMT_YUV420P, MKTAG('Y', 'V', '1', '2') },
44 { PIX_FMT_YUV410P, MKTAG('Y', 'U', 'V', '9') }, 44 { PIX_FMT_YUV410P, MKTAG('Y', 'U', 'V', '9') },
45 { PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') }, 45 { PIX_FMT_YUV411P, MKTAG('Y', '4', '1', 'B') },