Opened 12 years ago Closed 12 years ago #780 closed defect (invalid)Profile, tier and level syntax
Description ¶
line 11 is as follows:
for( i = 0; i < MaxNumSubLayersMinus1; i++ ) {
it should be:
for( i = 0; i <= MaxNumSubLayersMinus1; i++ ) { Change History (4)comment:1 Changed 12 years ago by DefaultCC Plugin
comment:2 Changed 12 years ago by ykcomment:3 Changed 12 years ago by kazushi
Oh, yes you are right. comment:4 Changed 12 years ago by bbross
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
No, it should not, as the highest sub-layer information is present already.