Skip to content

Commit

Permalink
Merge pull request #836 from DolbyLaboratories/dolby/ddp_fix
Browse files Browse the repository at this point in the history
fix losing synchronization issue for EC3 due to an unreasonable ReadByte()
  • Loading branch information
barbibulle committed May 20, 2023
2 parents 4a45f65 + 4152daf commit 489d1f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/C++/Codecs/Ap4Eac3Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ AP4_Eac3Parser::FindHeader(AP4_UI08* header, AP4_Size& skip_size)

return AP4_SUCCESS;
} else {
m_Bits.ReadByte(); // skip
m_Bits.SkipBytes(1); // skip
skip_size++;
}
}
Expand Down

0 comments on commit 489d1f3

Please sign in to comment.