jellyfin/MediaBrowser.MediaEncoding/Probing
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
..
FFProbeHelpers.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00
InternalMediaInfoResult.cs Enable nullable reference types for MediaBrowser.MediaEncoding.Subtitles 2021-05-20 22:10:19 +02:00
MediaChapter.cs Switch chapter id to long to not break on ffmpeg 5.0 2022-02-27 21:04:11 +01:00
MediaFormatInfo.cs Enable nullable reference types for MediaBrowser.MediaEncoding.Subtitles 2021-05-20 22:10:19 +02:00
MediaStreamInfo.cs Merge pull request #7964 from jellyfin/dovi-side-data 2022-06-29 01:26:15 -04:00
MediaStreamInfoSideData.cs Remove redundant using directives 2022-09-28 16:26:03 +02:00
ProbeResultNormalizer.cs Streams with CodecType "data" (like "epg" streams in DVB 2022-10-01 08:53:54 -06:00