codec/h264/lex.go: commented buffer size consts

This commit is contained in:
Saxon 2019-05-24 10:33:34 +09:30
parent 35069bd4f3
commit b49e65d928
1 changed files with 2 additions and 2 deletions

View File

@ -159,8 +159,8 @@ outer:
// Buffer sizes. // Buffer sizes.
const ( const (
maxAUSize = 100000 maxAUSize = 100000 // Max access unit size in bytes.
maxRTPSize = 4096 maxRTPSize = 1500 // Max ethernet transmission unit in bytes.
) )
// RTPLexer is a lexer for lexing H264 from RTP packets. // RTPLexer is a lexer for lexing H264 from RTP packets.