summaryrefslogtreecommitdiffstats
path: root/libavcodec/libxavs.c
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2017-12-11 16:18:44 +0100
committerwm4 <nfxjfg@googlemail.com>2017-12-14 19:37:56 +0100
commitb945fed629a872d393f59d16fc5773574126ca88 (patch)
tree2996d9caa31c2dd6383317c4797d2de8d8035e70 /libavcodec/libxavs.c
parent2e391a576c1fc2e8816990924c6e4c21ccf75a82 (diff)
downloadffmpeg-streaming-b945fed629a872d393f59d16fc5773574126ca88.zip
ffmpeg-streaming-b945fed629a872d393f59d16fc5773574126ca88.tar.gz
avcodec: add metadata to identify wrappers and hardware decoders
Explicitly identify decoder/encoder wrappers with a common name. This saves API users from guessing by the name suffix. For example, they don't have to guess that "h264_qsv" is the h264 QSV implementation, and instead they can just check the AVCodec .codec and .wrapper_name fields. Explicitly mark AVCodec entries that are hardware decoders or most likely hardware decoders with new AV_CODEC_CAPs. The purpose is allowing API users listing hardware decoders in a more generic way. The proposed AVCodecHWConfig does not provide this information fully, because it's concerned with decoder configuration, not information about the fact whether the hardware is used or not. AV_CODEC_CAP_HYBRID exists specifically for QSV, which can have software implementations in case the hardware is not capable. Based on a patch by Philip Langdale <philipl@overt.org>. Merges Libav commit 47687a2f8aca3f65b6fdd117b1cb66a7409a7fd1.
Diffstat (limited to 'libavcodec/libxavs.c')
-rw-r--r--libavcodec/libxavs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libxavs.c b/libavcodec/libxavs.c
index 865b5f6..801a05d 100644
--- a/libavcodec/libxavs.c
+++ b/libavcodec/libxavs.c
@@ -478,4 +478,5 @@ AVCodec ff_libxavs_encoder = {
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE },
.priv_class = &xavs_class,
.defaults = xavs_defaults,
+ .wrapper_name = "libxavs",
};
OpenPOWER on IntegriCloud