diff options
author | Aman Gupta <aman@tmm1.net> | 2017-06-05 16:22:58 -0400 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-06-08 19:16:09 +0200 |
commit | a32a6b4201dca46c54247194bd5249dfb7c64874 (patch) | |
tree | 15d3c387279dd0ca509fb87c083086c19ca0b335 /libavcodec/mediacodecdec_common.c | |
parent | a3b5b60bdf451faefeeec07c4e684a251968bf2d (diff) | |
download | ffmpeg-a32a6b4201dca46c54247194bd5249dfb7c64874.tar.gz |
lavc: add mpeg2 mediacodec decoder
Android TV and FireOS hardware supports mpeg2 hardware decoding via
MediaCodec.
Signed-off-by: Matthieu Bouron <matthieu.bouron@gmail.com>
Diffstat (limited to 'libavcodec/mediacodecdec_common.c')
-rw-r--r-- | libavcodec/mediacodecdec_common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/mediacodecdec_common.c b/libavcodec/mediacodecdec_common.c index 2ec25c581d..1263188d34 100644 --- a/libavcodec/mediacodecdec_common.c +++ b/libavcodec/mediacodecdec_common.c @@ -766,6 +766,13 @@ AVHWAccel ff_hevc_mediacodec_hwaccel = { .pix_fmt = AV_PIX_FMT_MEDIACODEC, }; +AVHWAccel ff_mpeg2_mediacodec_hwaccel = { + .name = "mediacodec", + .type = AVMEDIA_TYPE_VIDEO, + .id = AV_CODEC_ID_MPEG2VIDEO, + .pix_fmt = AV_PIX_FMT_MEDIACODEC, +}; + AVHWAccel ff_mpeg4_mediacodec_hwaccel = { .name = "mediacodec", .type = AVMEDIA_TYPE_VIDEO, |