mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst-libs/gst/rtp/gstbasertpdepayload.c: Use G_GINT64_CONSTANT macro for int64 constant.
Original commit message from CVS: * gst-libs/gst/rtp/gstbasertpdepayload.c: (gst_base_rtp_depayload_set_gst_timestamp): Use G_GINT64_CONSTANT macro for int64 constant. * win32/common/libgstinterfaces.def: * win32/common/libgsttag.def: Add new exported functions.
This commit is contained in:
parent
6f25fde218
commit
a6d8c4109e
4 changed files with 21 additions and 1 deletions
|
@ -1,3 +1,12 @@
|
|||
2007-06-07 Sebastien Moutte <sebastien@moutte.net>
|
||||
|
||||
* gst-libs/gst/rtp/gstbasertpdepayload.c:
|
||||
(gst_base_rtp_depayload_set_gst_timestamp):
|
||||
Use G_GINT64_CONSTANT macro for int64 constant.
|
||||
* win32/common/libgstinterfaces.def:
|
||||
* win32/common/libgsttag.def:
|
||||
Add new exported functions.
|
||||
|
||||
2007-06-07 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
|
||||
|
|
|
@ -507,7 +507,7 @@ gst_base_rtp_depayload_set_gst_timestamp (GstBaseRTPDepayload * filter,
|
|||
if (diff > G_MAXINT32) {
|
||||
/* timestamp went backwards more than allowed, we wrap around and get
|
||||
* updated extended timestamp. */
|
||||
priv->ts_wraparound += (1LL << 32);
|
||||
priv->ts_wraparound += (G_GINT64_CONSTANT (1) << 32);
|
||||
exttimestamp = timestamp + priv->ts_wraparound;
|
||||
}
|
||||
priv->prev_timestamp = exttimestamp;
|
||||
|
|
|
@ -8,6 +8,7 @@ EXPORTS
|
|||
gst_color_balance_value_changed
|
||||
gst_mixer_get_option
|
||||
gst_mixer_get_type
|
||||
gst_mixer_get_volume
|
||||
gst_mixer_list_tracks
|
||||
gst_mixer_mute_toggled
|
||||
gst_mixer_option_changed
|
||||
|
@ -17,6 +18,7 @@ EXPORTS
|
|||
gst_mixer_set_mute
|
||||
gst_mixer_set_option
|
||||
gst_mixer_set_record
|
||||
gst_mixer_set_volume
|
||||
gst_mixer_track_flags_get_type
|
||||
gst_mixer_track_get_type
|
||||
gst_mixer_type_get_type
|
||||
|
@ -24,7 +26,10 @@ EXPORTS
|
|||
gst_navigation_send_event
|
||||
gst_navigation_send_key_event
|
||||
gst_navigation_send_mouse_event
|
||||
gst_property_probe_get_properties
|
||||
gst_property_probe_get_property
|
||||
gst_property_probe_get_type
|
||||
gst_property_probe_get_values_name
|
||||
gst_property_probe_needs_probe_name
|
||||
gst_property_probe_probe_property_name
|
||||
gst_tuner_channel_changed
|
||||
|
@ -46,6 +51,11 @@ EXPORTS
|
|||
gst_tuner_set_norm
|
||||
gst_tuner_signal_changed
|
||||
gst_tuner_signal_strength
|
||||
gst_video_orientation_get_type
|
||||
gst_video_orientation_set_hcenter
|
||||
gst_video_orientation_set_hflip
|
||||
gst_video_orientation_set_vcenter
|
||||
gst_video_orientation_set_vflip
|
||||
gst_x_overlay_expose
|
||||
gst_x_overlay_get_type
|
||||
gst_x_overlay_got_xwindow_id
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
EXPORTS
|
||||
gst_tag_freeform_string_to_utf8
|
||||
gst_tag_from_id3_tag
|
||||
gst_tag_from_id3_user_tag
|
||||
gst_tag_id3_genre_get
|
||||
|
|
Loading…
Reference in a new issue