Skip to content

Commit

Permalink
PCE skips 3 bits?
Browse files Browse the repository at this point in the history
  • Loading branch information
dieterstueken committed Aug 26, 2018
1 parent 9854a70 commit 3da3f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/sourceforge/jaad/aac/DecoderConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static DecoderConfig parseMP4DecoderSpecificInfo(byte[] data) throws AACExceptio

if(config.channelConfiguration==ChannelConfiguration.CHANNEL_CONFIG_NONE) {
//TODO: is this working correct? -> ISO 14496-3 part 1: 1.A.4.3
in.skipBits(3); //PCE
//in.skipBits(3); //PCE
PCE pce = new PCE();
pce.decode(in);
config.profile = pce.getProfile();
Expand Down

0 comments on commit 3da3f83

Please sign in to comment.