mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 07:10:45 +00:00
[CA1801] Parameter is never used. Remove the parameter or use it in the method body.
This commit is contained in:
parent
4281722d5a
commit
65f8d8c0cd
9 changed files with 22 additions and 38 deletions
|
|
@ -1692,7 +1692,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
return 128000;
|
||||
}
|
||||
|
||||
public string GetAudioFilterParam(EncodingJobInfo state, EncodingOptions encodingOptions, bool isHls)
|
||||
public string GetAudioFilterParam(EncodingJobInfo state, EncodingOptions encodingOptions)
|
||||
{
|
||||
var channels = state.OutputAudioChannels;
|
||||
|
||||
|
|
@ -3836,7 +3836,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
args += " -ar " + state.OutputAudioSampleRate.Value.ToString(_usCulture);
|
||||
}
|
||||
|
||||
args += GetAudioFilterParam(state, encodingOptions, false);
|
||||
args += GetAudioFilterParam(state, encodingOptions);
|
||||
|
||||
return args;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue