diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-02-24 18:27:52 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-02-24 18:27:52 +0000 |
commit | 09a9b45e4fa77a533391184ace5cadb30c6b83c7 (patch) | |
tree | 34f02c95a47afb6caa773b065708f3402e4ed3d7 /libavcodec/mpegvideo.c | |
parent | c0aec489a67d0d228ddc0a2931774a68f857eaaf (diff) | |
download | ffmpeg-09a9b45e4fa77a533391184ace5cadb30c6b83c7.tar.gz |
Add and use ff_pixfmt_list_420.
Originally committed as revision 17564 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r-- | libavcodec/mpegvideo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 168fbacddd..38aa4d2ebf 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -75,6 +75,10 @@ const uint8_t ff_mpeg1_dc_scale_table[128]={ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, }; +const enum PixelFormat ff_pixfmt_list_420[] = { + PIX_FMT_YUV420P, + PIX_FMT_NONE +}; const uint8_t *ff_find_start_code(const uint8_t * restrict p, const uint8_t *end, uint32_t * restrict state){ int i; |