diff options
author | Marton Balint <cus@passwd.hu> | 2024-03-18 22:08:54 +0100 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2024-03-24 21:27:55 +0100 |
commit | 1bea3e9ee2f3521182eea6066fc8e8e1f8910c5b (patch) | |
tree | 2ca9c3a48bea11d7141fd434a862f4a231f2fcdd /tests | |
parent | 9a5627ea9a213c4929020ee8c90bae74788f645c (diff) | |
download | ffmpeg-1bea3e9ee2f3521182eea6066fc8e8e1f8910c5b.tar.gz |
avfilter/af_channelmap: fix mapping if in_channel was a string but out_channel was not specified
In this case in_channel_idx was never set and the default 0 was used.
Suprisingly no one noticed that the respective fate test output was wrong.
Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fate/filter-audio.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate/filter-audio.mak b/tests/fate/filter-audio.mak index 8d05e6bd77..3f22db1e05 100644 --- a/tests/fate/filter-audio.mak +++ b/tests/fate/filter-audio.mak @@ -302,7 +302,7 @@ fate-filter-channelmap-one-str: SRC = $(TARGET_PATH)/tests/data/asynth-44100-2.w fate-filter-channelmap-one-str: tests/data/asynth-44100-2.wav fate-filter-channelmap-one-str: CMD = md5 -auto_conversion_filters -i $(SRC) -/filter_complex $(TARGET_PATH)/tests/data/filtergraphs/channelmap_one_str -f wav -fflags +bitexact fate-filter-channelmap-one-str: CMP = oneline -fate-filter-channelmap-one-str: REF = 0ea3052e482c95d5d3bd9da6dac1b5fa +fate-filter-channelmap-one-str: REF = e18791f65ce5861e130b2c3e472ab90a FATE_AFILTER-$(call FILTERDEMDECENCMUX, CHANNELMAP ARESAMPLE, WAV, PCM_S16LE, PCM_S16LE, WAV) += $(FATE_FILTER_CHANNELMAP) |