fix compiler errors

merge-requests/195/head
LotP1 2025-10-26 04:20:19 +01:00
parent 67198ee961
commit 0bed9da23f
1 changed files with 0 additions and 8 deletions

View File

@ -99,7 +99,6 @@ namespace Ryujinx.Audio.Renderer.Server
break; break;
case CommandType.BiquadFilterFloatCoeff: case CommandType.BiquadFilterFloatCoeff:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.Mix: case CommandType.Mix:
_mixCommandPool.Release((MixCommand)command); _mixCommandPool.Release((MixCommand)command);
break; break;
@ -159,7 +158,6 @@ namespace Ryujinx.Audio.Renderer.Server
break; break;
case CommandType.MultiTapBiquadFilterFloatCoeff: case CommandType.MultiTapBiquadFilterFloatCoeff:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.CaptureBuffer: case CommandType.CaptureBuffer:
_captureBufferCommandPool.Release((CaptureBufferCommand)command); _captureBufferCommandPool.Release((CaptureBufferCommand)command);
break; break;
@ -171,25 +169,19 @@ namespace Ryujinx.Audio.Renderer.Server
break; break;
case CommandType.BiquadFilterAndMixFloatCoeff: case CommandType.BiquadFilterAndMixFloatCoeff:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.MultiTapBiquadFilterAndMix: case CommandType.MultiTapBiquadFilterAndMix:
_multiTapBiquadFilterAndMixCommandPool.Release((MultiTapBiquadFilterAndMixCommand)command); _multiTapBiquadFilterAndMixCommandPool.Release((MultiTapBiquadFilterAndMixCommand)command);
break; break;
case CommandType.MultiTapBiquadFilterAndMixFloatCoef: case CommandType.MultiTapBiquadFilterAndMixFloatCoef:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.AuxiliaryBufferGrouped: case CommandType.AuxiliaryBufferGrouped:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.FillMixBuffer: case CommandType.FillMixBuffer:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.BiquadFilterCrossFade: case CommandType.BiquadFilterCrossFade:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.MultiTapBiquadFilterCrossFade: case CommandType.MultiTapBiquadFilterCrossFade:
throw new NotImplementedException(); throw new NotImplementedException();
break;
case CommandType.FillBuffer: case CommandType.FillBuffer:
_fillBufferCommandPool.Release((FillBufferCommand)command); _fillBufferCommandPool.Release((FillBufferCommand)command);
break; break;