From d0e7c3c100a0bc52db4abc72c6f1c74bf3f19a6b Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Fri, 18 Feb 2022 21:03:33 +0100 Subject: [PATCH] update docs --- internal/hls/muxer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/hls/muxer.go b/internal/hls/muxer.go index 61438c2e..d030f403 100644 --- a/internal/hls/muxer.go +++ b/internal/hls/muxer.go @@ -54,12 +54,12 @@ func (m *Muxer) Close() { m.streamPlaylist.close() } -// WriteH264 writes H264 NALUs, grouped by PTS, into the muxer. +// WriteH264 writes H264 NALUs, grouped by timestamp, into the muxer. func (m *Muxer) WriteH264(pts time.Duration, nalus [][]byte) error { return m.tsGenerator.writeH264(pts, nalus) } -// WriteAAC writes AAC AUs, grouped by PTS, into the muxer. +// WriteAAC writes AAC AUs, grouped by timestamp, into the muxer. func (m *Muxer) WriteAAC(pts time.Duration, aus [][]byte) error { return m.tsGenerator.writeAAC(pts, aus) }