From 86113667c0fc6cded65b94fb57262da09c06594b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Wed, 29 May 2013 21:41:37 +0300 Subject: [PATCH] arm: Include hpeldsp_neon.o if h264qpel is enabled MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A few of the h264qpel neon functions are shared with other hpeldsp functions in this file. This fixes standalone compilation of the h264 decoder on arm. Signed-off-by: Martin Storsjö --- libavcodec/arm/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/arm/Makefile b/libavcodec/arm/Makefile index 2cb7449d98..875c3cc9c5 100644 --- a/libavcodec/arm/Makefile +++ b/libavcodec/arm/Makefile @@ -71,7 +71,8 @@ NEON-OBJS-$(CONFIG_H264CHROMA) += arm/h264cmc_neon.o NEON-OBJS-$(CONFIG_H264DSP) += arm/h264dsp_neon.o \ arm/h264idct_neon.o NEON-OBJS-$(CONFIG_H264PRED) += arm/h264pred_neon.o -NEON-OBJS-$(CONFIG_H264QPEL) += arm/h264qpel_neon.o +NEON-OBJS-$(CONFIG_H264QPEL) += arm/h264qpel_neon.o \ + arm/hpeldsp_neon.o NEON-OBJS-$(CONFIG_HPELDSP) += arm/hpeldsp_init_neon.o \ arm/hpeldsp_neon.o NEON-OBJS-$(CONFIG_MDCT) += arm/mdct_neon.o \