mirror of https://bitbucket.org/ausocean/av.git
codec/h265: using idx++ rather than idx += 1 in handleAggregation
This commit is contained in:
parent
149f91f44d
commit
6435b3c55f
|
@ -133,7 +133,7 @@ func (l *Lexer) handleAggregation(d []byte) {
|
|||
case 2:
|
||||
idx += 2
|
||||
default:
|
||||
idx += 1
|
||||
idx++
|
||||
}
|
||||
}
|
||||
size := int(binary.BigEndian.Uint16(d[idx:]))
|
||||
|
|
Loading…
Reference in New Issue