Module: libav Branch: master Commit: 6f9018fc5ecd974061e17ba84a14625a925e353a
Author: Mans Rullgard <[email protected]> Committer: Mans Rullgard <[email protected]> Date: Tue Oct 23 03:23:43 2012 +0100 fate: fix ENCMUX macro This matches how it is actually being called. Signed-off-by: Mans Rullgard <[email protected]> --- tests/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 5fd1a3c..8bc2b41 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 _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
