Skip to content

Commit

Permalink
fix losing synchronization issue for Dolby Digital Plus due to an unr…
Browse files Browse the repository at this point in the history
…easonable ReadByte().
  • Loading branch information
XingzhaoYun committed Feb 27, 2023
1 parent ab5591e commit 4152daf
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 4152daf

Please sign in to comment.