git subrepo clone https://github.com/libretro/libretro-common.git deps/libretro-common
[pcsx_rearmed.git] / deps / libretro-common / audio / dsp_filters / Panning.dsp
CommitLineData
3719602c
PC
1filters = 1
2filter0 = panning
3
4# Gains are linear.
5
6# The default. Left and right channels map to each other.
7panning_left_mix = "1.0 0.0"
8panning_right_mix = "0.0 1.0"
9
10# Some examples:
11#
12# Mono:
13# panning_left_mix = "0.5 0.5"
14# panning_right_mix = "0.5 0.5"
15
16# Swap left and right channels:
17# panning_left_mix = "0.0 1.0"
18# panning_right_mix = "1.0 0.0"
19#
20# Mono on one speaker:
21# panning_left_mix = "0.5 0.5"
22# panning_right_mix = "0.0 0.0"