aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers
diff options
context:
space:
mode:
authorNegulici-R. Barnabas <negulici.r.barnabas@outlook.com>2022-11-13 16:23:21 +0200
committerNegulici-R. Barnabas <negulici.r.barnabas@outlook.com>2022-11-13 16:23:21 +0200
commit7db1813cc8358ac7d4c7a78022553e1e3215679e (patch)
tree191da105de5c8482ade18c543768532c54bdd896 /MediaBrowser.Providers
parentb7aa5ed862db11bbbc0a4ea5c92a67b772bfc35d (diff)
changed ChapterImageResolution in model to enum type;
added 144p to the ImageResolution enum; updated chapters limit comment inside FFProbeVideoInfo.cs;
Diffstat (limited to 'MediaBrowser.Providers')
-rw-r--r--MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
index c8ff5de69..686f68c5d 100644
--- a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
+++ b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
@@ -666,7 +666,7 @@ namespace MediaBrowser.Providers.MediaInfo
return Array.Empty<ChapterInfo>();
}
- // Limit to 100 chapters just in case there's some incorrect metadata here
+ // Limit the chapters just in case there's some incorrect metadata here
int chapterCount = (int)Math.Min(runtime / dummyChapterDuration, _config.Configuration.DummyChapterCount);
var chapters = new ChapterInfo[chapterCount];