diff options
author | Mark Reid <mindmark@gmail.com> | 2014-11-30 12:16:27 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-11-30 23:14:06 +0100 |
commit | e5d217f04899e00b5d6af11fa396242649e75cc1 (patch) | |
tree | cc92a7a82d5442956aa66f38427349eaa63b2f8b /libavformat/mxf.c | |
parent | 21c0c0f9d4a1dcc3279e4309ab89137473abf900 (diff) | |
download | ffmpeg-e5d217f04899e00b5d6af11fa396242649e75cc1.tar.gz |
libavformat/mxfdec.c: initial support for EssenceGroups
Previous version reviewed-by: Tomas Härdin <tomas.hardin@codemill.se>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mxf.c')
-rw-r--r-- | libavformat/mxf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mxf.c b/libavformat/mxf.c index 4dc54d7194..14d143e5f0 100644 --- a/libavformat/mxf.c +++ b/libavformat/mxf.c @@ -94,6 +94,7 @@ static const struct { {AV_PIX_FMT_RGB565BE,{'R', 5, 'G', 6, 'B', 5 }}, {AV_PIX_FMT_RGBA, {'R', 8, 'G', 8, 'B', 8, 'A', 8 }}, {AV_PIX_FMT_PAL8, {'P', 8 }}, + {AV_PIX_FMT_GRAY8, {'A', 8 }}, }; static const int num_pixel_layouts = FF_ARRAY_ELEMS(ff_mxf_pixel_layouts); |