aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/DynamicHlsController.cs
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-07-10 10:09:02 -0600
committerCody Robibero <cody@robibe.ro>2021-07-10 10:09:02 -0600
commit65f8d8c0cd6cf64cebcbc0cc9279d9857ebf343c (patch)
tree005197f12671ec838186369579951b236c8e4650 /Jellyfin.Api/Controllers/DynamicHlsController.cs
parent4281722d5a50347c26ee92dcd47b3bbad5cedbbf (diff)
[CA1801] Parameter is never used. Remove the parameter or use it in the method body.
Diffstat (limited to 'Jellyfin.Api/Controllers/DynamicHlsController.cs')
-rw-r--r--Jellyfin.Api/Controllers/DynamicHlsController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/DynamicHlsController.cs b/Jellyfin.Api/Controllers/DynamicHlsController.cs
index 62283d038..fc1e4dced 100644
--- a/Jellyfin.Api/Controllers/DynamicHlsController.cs
+++ b/Jellyfin.Api/Controllers/DynamicHlsController.cs
@@ -1496,7 +1496,7 @@ namespace Jellyfin.Api.Controllers
args += " -ar " + state.OutputAudioSampleRate.Value.ToString(CultureInfo.InvariantCulture);
}
- args += _encodingHelper.GetAudioFilterParam(state, _encodingOptions, true);
+ args += _encodingHelper.GetAudioFilterParam(state, _encodingOptions);
return args;
}