diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-22 07:47:26 -0800 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-13 08:15:53 -0700 |
commit | a7cc4ac9d99bd586c8939f4312f8c9e56d5f5730 (patch) | |
tree | 2ada063b38944410a18f917195e116c642d86f73 | |
parent | 13ae97b210f35d77290f4edb0d6846269271729a (diff) | |
download | ffmpeg-a7cc4ac9d99bd586c8939f4312f8c9e56d5f5730.tar.gz |
bfin: dsputil: Unconditionally compile hpel pixels code
The functions it contains are used from unconditionally compiled code.
-rw-r--r-- | libavcodec/bfin/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/bfin/Makefile b/libavcodec/bfin/Makefile index fc5f506653..62881c4652 100644 --- a/libavcodec/bfin/Makefile +++ b/libavcodec/bfin/Makefile @@ -1,9 +1,9 @@ OBJS += bfin/dsputil_bfin.o \ bfin/fdct_bfin.o \ + bfin/hpel_pixels_bfin.o \ bfin/idct_bfin.o \ bfin/pixels_bfin.o \ -OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_bfin.o \ - bfin/hpel_pixels_bfin.o +OBJS-$(CONFIG_HPELDSP) += bfin/hpeldsp_bfin.o OBJS-$(CONFIG_VP3DSP) += bfin/vp3_bfin.o \ bfin/vp3_idct_bfin.o |