diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-13 13:57:47 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-13 14:14:11 +0200 |
commit | 3b0bb321a50cd2591c6bd46059a66f6a53d9fc08 (patch) | |
tree | 1e9caead8b857d3a52b4b2dd86407670442ea05a /libavfilter/x86/Makefile | |
parent | 3cc0252732513dc7411093935821b1eb6416a9a6 (diff) | |
parent | f6c38c5f4ed6683a6a61db2ed418a68bbe5f5507 (diff) | |
download | ffmpeg-3b0bb321a50cd2591c6bd46059a66f6a53d9fc08.tar.gz |
Merge commit 'f6c38c5f4ed6683a6a61db2ed418a68bbe5f5507'
* commit 'f6c38c5f4ed6683a6a61db2ed418a68bbe5f5507':
avfilter: call x86 init functions under if (ARCH_X86), not if (HAVE_MMX)
rtspdec: Set the default port for listen mode, if none is specified
tscc2: Fix an out of array access
rtmpproto: Fix an out of array write
rtspdec: Fix use of uninitialized byte
vp8: reset loopfilter delta values at keyframes.
avutil: add yuva422p and yuva444p formats
Conflicts:
libavutil/pixdesc.c
libavutil/pixfmt.h
tests/ref/lavfi/pixdesc
tests/ref/lavfi/pixfmts_copy
tests/ref/lavfi/pixfmts_null
tests/ref/lavfi/pixfmts_scale
tests/ref/lavfi/pixfmts_vflip
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/x86/Makefile')
-rw-r--r-- | libavfilter/x86/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavfilter/x86/Makefile b/libavfilter/x86/Makefile index 46fc84f3ec..4289f924da 100644 --- a/libavfilter/x86/Makefile +++ b/libavfilter/x86/Makefile @@ -1,3 +1,4 @@ -MMX-OBJS-$(CONFIG_YADIF_FILTER) += x86/yadif.o -MMX-OBJS-$(CONFIG_GRADFUN_FILTER) += x86/gradfun.o +OBJS-$(CONFIG_GRADFUN_FILTER) += x86/gradfun.o +OBJS-$(CONFIG_YADIF_FILTER) += x86/yadif.o + YASM-OBJS-$(CONFIG_HQDN3D_FILTER) += x86/hqdn3d.o |