summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-10-23 03:23:43 +0100
committerMans Rullgard <mans@mansr.com>2012-10-23 11:12:24 +0100
commit6f9018fc5ecd974061e17ba84a14625a925e353a (patch)
tree06ec9ded90104f728284ae169d11e48c8fb76632
parentec444c84cfd30ef34a4e7b4ec7ee77d7e5250d25 (diff)
fate: fix ENCMUX macro
This matches how it is actually being called. Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 5fd1a3c608..8bc2b410e5 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -34,7 +34,7 @@ ENCDEC2 = $(call ALLYES, $(firstword $(1))_ENCODER $(lastword $(1))_DECODER \
$(firstword $(3))_MUXER $(lastword $(3))_DEMUXER)
DEMDEC = $(call ALLYES, $(1)_DEMUXER $(2:%=%_DECODER))
-ENCMUX = $(call ALLYES, $(2:%=%_ENCODER) $(1)_MUXER)
+ENCMUX = $(call ALLYES, $(1:%=%_ENCODER) $(2)_MUXER)
include $(SRC_PATH)/tests/fate/acodec.mak
include $(SRC_PATH)/tests/fate/vcodec.mak