mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
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.
This commit is contained in:
parent
bf930a161f
commit
ea885f5afe
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
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),
|
||||
|
|
|
@ -117,7 +117,7 @@ struct _QtDemuxStream
|
|||
|
||||
/* duration/scale */
|
||||
guint64 duration; /* in timescale */
|
||||
guint64 timescale;
|
||||
guint32 timescale;
|
||||
|
||||
/* our samples */
|
||||
guint32 n_samples;
|
||||
|
|
Loading…
Reference in a new issue