diff options
author | Aman Gupta <aman@tmm1.net> | 2017-12-03 17:32:21 -0800 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-12-16 00:52:00 +0100 |
commit | e4d9f05ca79909e2853834c8f80a52bc9cf0e6b6 (patch) | |
tree | a39fae0fa5d9043f9e5b7464a6d0f9123649c14f /libavutil/hwcontext.c | |
parent | 5450972be4a79f173744ba5cda88a2a17ccdec28 (diff) | |
download | ffmpeg-e4d9f05ca79909e2853834c8f80a52bc9cf0e6b6.tar.gz |
lavu/hwcontext: add AV_HWDEVICE_TYPE_MEDIACODEC
Signed-off-by: Matthieu Bouron <matthieu.bouron@gmail.com>
Diffstat (limited to 'libavutil/hwcontext.c')
-rw-r--r-- | libavutil/hwcontext.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c index f47158f811..31ac12807b 100644 --- a/libavutil/hwcontext.c +++ b/libavutil/hwcontext.c @@ -56,6 +56,9 @@ static const HWContextType * const hw_table[] = { #if CONFIG_VIDEOTOOLBOX &ff_hwcontext_type_videotoolbox, #endif +#if CONFIG_MEDIACODEC + &ff_hwcontext_type_mediacodec, +#endif NULL, }; @@ -69,6 +72,7 @@ static const char *const hw_type_names[] = { [AV_HWDEVICE_TYPE_VAAPI] = "vaapi", [AV_HWDEVICE_TYPE_VDPAU] = "vdpau", [AV_HWDEVICE_TYPE_VIDEOTOOLBOX] = "videotoolbox", + [AV_HWDEVICE_TYPE_MEDIACODEC] = "mediacodec", }; enum AVHWDeviceType av_hwdevice_find_type_by_name(const char *name) |