From ca46d561847b79782d444ba9977c04d3fe4e659c Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Tue, 16 Aug 2022 17:17:42 +0200 Subject: [PATCH] fix linting --- internal/rtmp/message/msg_audio.go | 2 +- internal/rtmp/message/msg_video.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/rtmp/message/msg_audio.go b/internal/rtmp/message/msg_audio.go index 08b6e27f..d070c6fa 100644 --- a/internal/rtmp/message/msg_audio.go +++ b/internal/rtmp/message/msg_audio.go @@ -11,7 +11,7 @@ import ( ) const ( - // this is the chunk stream ID that is usually used to send MsgAudio{} + // MsgAudioChunkStreamID is the chunk stream ID that is usually used to send MsgAudio{} MsgAudioChunkStreamID = 6 ) diff --git a/internal/rtmp/message/msg_video.go b/internal/rtmp/message/msg_video.go index 30aaad3f..20c5ef8d 100644 --- a/internal/rtmp/message/msg_video.go +++ b/internal/rtmp/message/msg_video.go @@ -11,7 +11,7 @@ import ( ) const ( - // this is the chunk stream ID that is usually used to send MsgVideo{} + // MsgVideoChunkStreamID is the chunk stream ID that is usually used to send MsgVideo{} MsgVideoChunkStreamID = 6 )