diff options
author | James Almer <jamrial@gmail.com> | 2018-01-21 22:57:41 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-01-21 22:57:41 -0300 |
commit | 388a0f7869a852dec51482dc1802239f792775db (patch) | |
tree | 1ed49c0c4a5048c27fe98806185c7bfd7c8a01e1 /libavcodec/mpeg12dec.c | |
parent | bda5ad305e907d6e5eaa6abbb1b3bc1590ec20d8 (diff) | |
download | ffmpeg-388a0f7869a852dec51482dc1802239f792775db.tar.gz |
avcodec/mpeg12dec: fix preprocessor check for mpeg1_nvdec hwaccel
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mpeg12dec.c')
-rw-r--r-- | libavcodec/mpeg12dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg12dec.c b/libavcodec/mpeg12dec.c index ac5ac4bca4..f5f2c696c0 100644 --- a/libavcodec/mpeg12dec.c +++ b/libavcodec/mpeg12dec.c @@ -2893,7 +2893,7 @@ AVCodec ff_mpeg1video_decoder = { .max_lowres = 3, .update_thread_context = ONLY_IF_THREADS_ENABLED(mpeg_decode_update_thread_context), .hw_configs = (const AVCodecHWConfigInternal*[]) { -#if CONFIG_MPEG2_NVDEC_HWACCEL +#if CONFIG_MPEG1_NVDEC_HWACCEL HWACCEL_NVDEC(mpeg1), #endif #if CONFIG_MPEG1_VDPAU_HWACCEL |