Skip to content

Commit

Permalink
fix misleading FullBox parameters
Browse files Browse the repository at this point in the history
FullBox as defined by ISO14496-12 has 8+24bits for versioning
and flags. Passing both 32bits integers for those params is
misleading and will anyway be truncated.
  • Loading branch information
fcartegnie committed Dec 5, 2016
1 parent 2960d44 commit ecc3bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/spherical-video-v2-rfc.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ ProjectionDataBox in a given `proj` box.

##### Syntax
```
aligned(8) class ProjectionDataBox(unsigned int(32) proj_type, unsigned int(32) version, unsigned int(32) flags)
aligned(8) class ProjectionDataBox(unsigned int(32) proj_type, unsigned int(8)version, unsigned int(24) flags)
extends FullBox(proj_type, version, flags) {
}
```
Expand Down

0 comments on commit ecc3bdd

Please sign in to comment.