| 153 | // // |
| 154 | |
| 155 | static __forceinline s32 ApplyVolume(s32 data, s32 volume) |
| 156 | { |
| 157 | return (volume * data) >> 15; |
| 158 | } |
| 159 | |
| 160 | static __forceinline StereoOut32 ApplyVolume(const StereoOut32& data, const V_VolumeLR& volume) |
| 161 | { |
no test coverage detected