diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | gst/qtdemux/qtdemux.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2007-04-12 Wim Taymans <wim@fluendo.com> + * gst/qtdemux/qtdemux.c: + Make timescale 32 bits again so we don't screw up the pts_offset + calculations. + +2007-04-12 Wim Taymans <wim@fluendo.com> + * gst/rtpmanager/gstrtpbin.c: (create_session), (get_pt_map), (create_stream), (gst_rtp_bin_class_init), (pt_map_requested): Emit pt map requests and cache results. diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c index 1cd0f3b8..66bc04ea 100644 --- a/gst/qtdemux/qtdemux.c +++ b/gst/qtdemux/qtdemux.c @@ -117,7 +117,7 @@ struct _QtDemuxStream /* duration/scale */ guint64 duration; /* in timescale */ - guint64 timescale; + guint32 timescale; /* our samples */ guint32 n_samples; |