Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schoenefeld <sschoenefeld@nvidia.com>2019-08-02 12:18:10 +0300
committerTimo Rothenpieler <timo@rothenpieler.org>2019-08-04 17:19:25 +0300
commite33ea0f50374f2aa22ce0c61b9c0894b0c0135c5 (patch)
treec0abeb5b7228472a2c1e9c6d40403e3a33dba920
parentaf3541fc7ec0be7c4858b8cef31b5576a842b6c0 (diff)
avcodec/h263dec: enable nvdec hwaccel
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
-rw-r--r--libavcodec/h263dec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c
index 68c2ce9192..8ee844e298 100644
--- a/libavcodec/h263dec.c
+++ b/libavcodec/h263dec.c
@@ -747,6 +747,9 @@ const AVCodecHWConfigInternal *ff_h263_hw_config_list[] = {
#if CONFIG_H263_VAAPI_HWACCEL
HWACCEL_VAAPI(h263),
#endif
+#if CONFIG_MPEG4_NVDEC_HWACCEL
+ HWACCEL_NVDEC(mpeg4),
+#endif
#if CONFIG_MPEG4_VDPAU_HWACCEL
HWACCEL_VDPAU(mpeg4),
#endif