compressor: Remove unneeded casts in ApplyCompressorEffect
Same behavior, but also silences a -Wcast-qual warning, since the second cast casts away const.
This commit is contained in:
		| @@ -103,8 +103,7 @@ static void ApplyCompressorEffect(CompressorInfo::ParameterVersion2& params, | |||||||
|     } else { |     } else { | ||||||
|         for (s16 channel = 0; channel < params.channel_count; channel++) { |         for (s16 channel = 0; channel < params.channel_count; channel++) { | ||||||
|             if (params.inputs[channel] != params.outputs[channel]) { |             if (params.inputs[channel] != params.outputs[channel]) { | ||||||
|                 std::memcpy((char*)output_buffers[channel].data(), |                 std::memcpy(output_buffers[channel].data(), input_buffers[channel].data(), | ||||||
|                             (char*)input_buffers[channel].data(), |  | ||||||
|                             output_buffers[channel].size_bytes()); |                             output_buffers[channel].size_bytes()); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user