diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-03-27 23:04:08 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-03-29 09:55:20 +0200 |
commit | c48456166e95648719a8be8f8613f9dee98205c1 (patch) | |
tree | 7ebe903f27b29ce28e9e871dd0e68393addc1ccc /libavutil/pixdesc.c | |
parent | 72b7441a10f578a1d0be7083d8f5adf6a01921c2 (diff) | |
download | ffmpeg-c48456166e95648719a8be8f8613f9dee98205c1.tar.gz |
lavc: add MMAL hardware decoder wrapper
Based on a patch by Rodger Combs.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavutil/pixdesc.c')
-rw-r--r-- | libavutil/pixdesc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index f99137032d..ea432f9079 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -1567,6 +1567,10 @@ const AVPixFmtDescriptor av_pix_fmt_descriptors[AV_PIX_FMT_NB] = { .name = "qsv", .flags = AV_PIX_FMT_FLAG_HWACCEL, }, + [AV_PIX_FMT_MMAL] = { + .name = "mmal", + .flags = AV_PIX_FMT_FLAG_HWACCEL, + }, }; static const char *color_range_names[AVCOL_RANGE_NB] = { |