diff options
author | Mans Rullgard <mans@mansr.com> | 2012-10-23 03:23:43 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-10-23 11:12:24 +0100 |
commit | 6f9018fc5ecd974061e17ba84a14625a925e353a (patch) | |
tree | 06ec9ded90104f728284ae169d11e48c8fb76632 /tests/Makefile | |
parent | ec444c84cfd30ef34a4e7b4ec7ee77d7e5250d25 (diff) | |
download | ffmpeg-streaming-6f9018fc5ecd974061e17ba84a14625a925e353a.zip ffmpeg-streaming-6f9018fc5ecd974061e17ba84a14625a925e353a.tar.gz |
fate: fix ENCMUX macro
This matches how it is actually being called.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | 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 |