mirror of https://bitbucket.org/ausocean/av.git
codec/h264/lex.go: commented buffer size consts
This commit is contained in:
parent
35069bd4f3
commit
b49e65d928
|
@ -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.
|
||||||
|
|
Loading…
Reference in New Issue