diff mbox

[FFmpeg-devel] avcodec: fix vc1dsp dependencies

Message ID 7783620b-5a1f-5179-3526-73143553bccd@gmail.com
State Superseded
Headers show

Commit Message

Xiaolei Yu Sept. 25, 2016, 6:20 a.m. UTC
---
 libavcodec/aarch64/Makefile       | 2 +-
 libavcodec/aarch64/h264cmc_neon.S | 2 +-
 libavcodec/arm/h264cmc_neon.S     | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

Comments

Carl Eugen Hoyos Sept. 25, 2016, 7:42 a.m. UTC | #1
2016-09-25 8:20 GMT+02:00 Xiaolei Yu <dreifachstein@gmail.com>:
> ---
>  libavcodec/aarch64/Makefile       | 2 +-
>  libavcodec/aarch64/h264cmc_neon.S | 2 +-
>  libavcodec/arm/h264cmc_neon.S     | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/libavcodec/aarch64/Makefile b/libavcodec/aarch64/Makefile
> index 36d9d34..c3df887 100644
> --- a/libavcodec/aarch64/Makefile
> +++ b/libavcodec/aarch64/Makefile
> @@ -14,7 +14,7 @@ OBJS-$(CONFIG_VIDEODSP)                 +=
> aarch64/videodsp_init.o

There is a linebreak here that makes committing this difficult,
please resend as attachment.

Thank you, Carl Eugen
diff mbox

Patch

diff --git a/libavcodec/aarch64/Makefile b/libavcodec/aarch64/Makefile
index 36d9d34..c3df887 100644
--- a/libavcodec/aarch64/Makefile
+++ b/libavcodec/aarch64/Makefile
@@ -14,7 +14,7 @@  OBJS-$(CONFIG_VIDEODSP)                 +=
aarch64/videodsp_init.o
 # decoders/encoders
 OBJS-$(CONFIG_DCA_DECODER)              += aarch64/synth_filter_init.o
 OBJS-$(CONFIG_RV40_DECODER)             += aarch64/rv40dsp_init_aarch64.o
-OBJS-$(CONFIG_VC1_DECODER)              += aarch64/vc1dsp_init_aarch64.o
+OBJS-$(CONFIG_VC1DSP)                   += aarch64/vc1dsp_init_aarch64.o
 OBJS-$(CONFIG_VORBIS_DECODER)           += aarch64/vorbisdsp_init.o

 # ARMv8 optimizations
diff --git a/libavcodec/aarch64/h264cmc_neon.S
b/libavcodec/aarch64/h264cmc_neon.S
index 486079f..ff97a29 100644
--- a/libavcodec/aarch64/h264cmc_neon.S
+++ b/libavcodec/aarch64/h264cmc_neon.S
@@ -445,7 +445,7 @@  endconst
         h264_chroma_mc4 avg, rv40
 #endif

-#if CONFIG_VC1_DECODER
+#if CONFIG_VC1DSP
         h264_chroma_mc8 put, vc1
         h264_chroma_mc8 avg, vc1
         h264_chroma_mc4 put, vc1
diff --git a/libavcodec/arm/h264cmc_neon.S b/libavcodec/arm/h264cmc_neon.S
index 77ed3c0..fc48a6f 100644
--- a/libavcodec/arm/h264cmc_neon.S
+++ b/libavcodec/arm/h264cmc_neon.S
@@ -455,7 +455,7 @@  endconst
         h264_chroma_mc4 avg, rv40
 #endif

-#if CONFIG_VC1_DECODER
+#if CONFIG_VC1DSP
         h264_chroma_mc8 put, vc1
         h264_chroma_mc8 avg, vc1
         h264_chroma_mc4 put, vc1