jellyfin/MediaBrowser.Controller/MediaEncoding
Bond_009 a9a5fcde81 Use ArgumentNullException.ThrowIfNull helper method
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)

```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```

```
ArgumentNullException.ThrowIfNull($1);
```
2022-10-06 20:21:23 +02:00
..
BaseEncodingJobOptions.cs Merge pull request #7947 from nyanmisaka/video-range-condition 2022-06-29 01:26:14 -04:00
EncodingHelper.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
EncodingJobInfo.cs Remove redundant using directives 2022-09-28 16:26:03 +02:00
FilterOptionType.cs EncodingHelper hwaccel pipelines refactor 2021-12-24 17:03:57 +08:00
IAttachmentExtractor.cs Pass CancellationToken to ExtractAllAttachments 2022-03-22 19:17:48 +01:00
IEncodingManager.cs Fix warnings in MediaBrowser.Controller/MediaEncoding directory 2021-08-10 14:29:48 -07:00
ImageEncodingOptions.cs Enable nullable reference types for MediaBrowser.Controller 2021-05-07 00:39:20 +02:00
IMediaEncoder.cs Backport pull request #8213 from jellyfin/release-10.8.z 2022-09-23 23:09:35 -04:00
ISubtitleEncoder.cs Backport pull request #8182 from jellyfin/release-10.8.z 2022-08-13 21:46:33 -04:00
JobLogger.cs Merge pull request #7994 from nyanmisaka/fix-throttler 2022-06-29 01:26:38 -04:00
MediaEncoderHelpers.cs Enable nullable reference types for MediaBrowser.Controller 2021-05-07 00:39:20 +02:00
MediaInfoRequest.cs Enable nullable reference types for MediaBrowser.Controller 2021-05-07 00:39:20 +02:00
TranscodingJobType.cs Update StyleCop 2021-12-24 18:28:27 +01:00