summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/Makefile3
-rw-r--r--libavfilter/vf_hflip.c2
2 files changed, 0 insertions, 5 deletions
diff --git a/libavfilter/Makefile b/libavfilter/Makefile
index b77a20cbef..01a1316434 100644
--- a/libavfilter/Makefile
+++ b/libavfilter/Makefile
@@ -106,7 +106,6 @@ OBJS-$(CONFIG_TESTSRC_FILTER) += vsrc_testsrc.o
OBJS-$(CONFIG_BUFFERSINK_FILTER) += sink_buffer.o
OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o
-
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/mp_image.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/img_format.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_2xsai.o
@@ -164,8 +163,6 @@ OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/vf_yvu9.o
OBJS-$(CONFIG_MP_FILTER) += libmpcodecs/pullup.o
--include $(SRC_PATH)/$(SUBDIR)$(ARCH)/Makefile
-
DIRS = x86 libmpcodecs
TESTPROGS = formats
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c
index f1418ca8b6..b249749b78 100644
--- a/libavfilter/vf_hflip.c
+++ b/libavfilter/vf_hflip.c
@@ -96,10 +96,8 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
for (i = 0; i < h>>vsub; i++) {
switch (step) {
case 1:
- {
for (j = 0; j < (inlink->w >> hsub); j++)
outrow[j] = inrow[-j];
- }
break;
case 2: