From e1fd6837ef29b252805e08f5b5c16f807c411445 Mon Sep 17 00:00:00 2001 From: Saxon Date: Fri, 24 May 2019 10:34:52 +0930 Subject: [PATCH] codec/h264/lex.go: updated comment for RTPLexer.Lex() --- codec/h264/lex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec/h264/lex.go b/codec/h264/lex.go index cde1e2e0..ce3ae14c 100644 --- a/codec/h264/lex.go +++ b/codec/h264/lex.go @@ -175,7 +175,7 @@ func NewRTPLexer() *RTPLexer { buf: bytes.NewBuffer(make([]byte, 0, maxAUSize))} } -// LexFromRTP extracts H264 access units from an RTP stream. This function +// Lex extracts H264 access units from an RTP stream. This function // expects that each read from src will provide a single RTP packet. func (l *RTPLexer) Lex(dst io.Writer, src io.Reader, delay time.Duration) error { buf := make([]byte, maxRTPSize)