codec/h265: using idx++ rather than idx += 1 in handleAggregation

This commit is contained in:
Saxon 2019-05-09 12:03:40 +09:30
parent 149f91f44d
commit 6435b3c55f
1 changed files with 1 additions and 1 deletions

View File

@ -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:]))