From: Wim Taymans Date: Thu, 12 Apr 2007 10:52:02 +0000 (+0000) Subject: gst/qtdemux/qtdemux.c: Make timescale 32 bits again so we don't screw up the pts_offs... X-Git-Tag: 1.19.3~507^2~21100 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ea885f5afe2a266524a039d6d84ba3316158b091;p=platform%2Fupstream%2Fgstreamer.git gst/qtdemux/qtdemux.c: Make timescale 32 bits again so we don't screw up the pts_offset calculations. Original commit message from CVS: * gst/qtdemux/qtdemux.c: Make timescale 32 bits again so we don't screw up the pts_offset calculations. --- diff --git a/ChangeLog b/ChangeLog index c684127..1f226f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2007-04-12 Wim Taymans + * gst/qtdemux/qtdemux.c: + Make timescale 32 bits again so we don't screw up the pts_offset + calculations. + +2007-04-12 Wim Taymans + * 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 1cd0f3b..66bc04e 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;