Skip to content

Commit

Permalink
Merge pull request #69 from kqyang/master
Browse files Browse the repository at this point in the history
Fix version syntax
  • Loading branch information
louquillio committed May 9, 2017
2 parents 22c1507 + c80bef5 commit f050e73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion VPCodecISOMediaFileFormatBinding.md
Expand Up @@ -140,7 +140,7 @@ unless otherwise noted.
#### Syntax

~~~~~
class VPCodecConfigurationBox extends FullBox('vpcC', version, 1){
class VPCodecConfigurationBox extends FullBox('vpcC', version = 1, 0) {
VPCodecConfigurationRecord() vpcConfig;
}
Expand All @@ -161,6 +161,9 @@ aligned (8) class VPCodecConfigurationRecord {

#### Semantics

**version** is an integer that specifies the version of this box, should be 1.
Version 0 is deprecated and should not be used.

**profile** is an integer that specifies the VP codec profile. The value of
profile MUST be valid for all samples that reference this sample entry, that
is, profile SHALL be equal to the profile used to encode the sample.
Expand Down

0 comments on commit f050e73

Please sign in to comment.