The offsets in the CTTS atom seem to be signed and not unsigned.

This commit is contained in:
Moritz Bunkus 2005-01-15 16:05:58 +00:00
parent 6b97556a0b
commit 18f541b349

View File

@ -108,7 +108,7 @@ struct qtmp4_demuxer_t {
vector<uint32_t> keyframe_table; vector<uint32_t> keyframe_table;
vector<qt_editlist_t> editlist_table; vector<qt_editlist_t> editlist_table;
vector<qt_frame_offset_t> raw_frame_offset_table; vector<qt_frame_offset_t> raw_frame_offset_table;
vector<uint32_t> frame_offset_table; vector<int32_t> frame_offset_table;
esds_t esds; esds_t esds;
bool esds_parsed; bool esds_parsed;