aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
diff options
context:
space:
mode:
authorNyanmisaka <nst799610810@gmail.com>2020-11-14 10:19:41 +0000
committerGitHub <noreply@github.com>2020-11-14 10:19:41 +0000
commit06670351ae6be1d3c47a25fe14b2f253cc6ab3e7 (patch)
tree81d028a8ce1d9f40365fc6e9409e9ae827da3b66 /MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
parentfc89b7e6416ed750725154104b37f32496435555 (diff)
Apply suggestions from code review
Co-authored-by: BaronGreenback <jimcartlidge@yahoo.co.uk>
Diffstat (limited to 'MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs')
-rw-r--r--MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
index a8252d473..b181a6ee6 100644
--- a/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
+++ b/MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
@@ -605,7 +605,7 @@ namespace MediaBrowser.Controller.MediaEncoding
public string GetBitStreamArgs(MediaStream stream)
{
- // TODO This is auto inserted into the mpegts mux so it might not be needed
+ // TODO This is auto inserted into the mpegts mux so it might not be needed.
// https://www.ffmpeg.org/ffmpeg-bitstream-filters.html#h264_005fmp4toannexb
if (IsH264(stream))
{
@@ -617,7 +617,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
else if (IsAAC(stream))
{
- // convert adts header(mpegts) to asc header(mp4)
+ // Convert adts header(mpegts) to asc header(mp4).
return "-bsf:a aac_adtstoasc";
}
else