From 18f541b349a9eac55a608ff582ef876b911b36aa Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 15 Jan 2005 16:05:58 +0000 Subject: [PATCH] The offsets in the CTTS atom seem to be signed and not unsigned. --- src/input/r_qtmp4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input/r_qtmp4.h b/src/input/r_qtmp4.h index 11c9791de..10dd74f24 100644 --- a/src/input/r_qtmp4.h +++ b/src/input/r_qtmp4.h @@ -108,7 +108,7 @@ struct qtmp4_demuxer_t { vector keyframe_table; vector editlist_table; vector raw_frame_offset_table; - vector frame_offset_table; + vector frame_offset_table; esds_t esds; bool esds_parsed;