diff options
| author | Nyanmisaka <nst799610810@gmail.com> | 2024-10-26 02:52:27 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-25 12:52:27 -0600 |
| commit | 3ceb8337e7c98fef47bd68753fbdf3b6ab9ecf5a (patch) | |
| tree | d88ad1f680115338b537bca49a50ef64a1107a83 /MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs | |
| parent | 87c8feed4a31c73f66c7a67a7a6dfb5509a4e0d2 (diff) | |
Fix check for format option in scale_cuda filter (#12874)
Diffstat (limited to 'MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs b/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs index b49fbf2ab..23d9ca7ef 100644 --- a/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs +++ b/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs @@ -150,7 +150,7 @@ namespace MediaBrowser.MediaEncoding.Encoder private static readonly Dictionary<int, string[]> _filterOptionsDict = new Dictionary<int, string[]> { - { 0, new string[] { "scale_cuda", "Output format (default \"same\")" } }, + { 0, new string[] { "scale_cuda", "format" } }, { 1, new string[] { "tonemap_cuda", "GPU accelerated HDR to SDR tonemapping" } }, { 2, new string[] { "tonemap_opencl", "bt2390" } }, { 3, new string[] { "overlay_opencl", "Action to take when encountering EOF from secondary input" } }, |
