mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 23:28:16 +00:00
rtpbin, rtspsrc: fix compiler warnings about 64-bit integer signednes
"warning: this decimal constant is unsigned only in ISO C90" with gcc 4.8.4 (Ubuntu/Linaro 4.8.4-2ubuntu1~14.04.3)
This commit is contained in:
parent
97285753fc
commit
d5f72418c8
2 changed files with 4 additions and 4 deletions
|
@ -313,8 +313,8 @@ enum
|
|||
#define DEFAULT_MAX_MISORDER_TIME 2000
|
||||
#define DEFAULT_RFC7273_SYNC FALSE
|
||||
#define DEFAULT_MAX_STREAMS G_MAXUINT
|
||||
#define DEFAULT_MAX_TS_OFFSET_ADJUSTMENT 0
|
||||
#define DEFAULT_MAX_TS_OFFSET 3000000000
|
||||
#define DEFAULT_MAX_TS_OFFSET_ADJUSTMENT G_GUINT64_CONSTANT(0)
|
||||
#define DEFAULT_MAX_TS_OFFSET G_GINT64_CONSTANT(3000000000)
|
||||
|
||||
enum
|
||||
{
|
||||
|
|
|
@ -231,8 +231,8 @@ gst_rtsp_src_ntp_time_source_get_type (void)
|
|||
#define DEFAULT_USER_AGENT "GStreamer/" PACKAGE_VERSION
|
||||
#define DEFAULT_MAX_RTCP_RTP_TIME_DIFF 1000
|
||||
#define DEFAULT_RFC7273_SYNC FALSE
|
||||
#define DEFAULT_MAX_TS_OFFSET_ADJUSTMENT 0
|
||||
#define DEFAULT_MAX_TS_OFFSET 3000000000
|
||||
#define DEFAULT_MAX_TS_OFFSET_ADJUSTMENT G_GUINT64_CONSTANT(0)
|
||||
#define DEFAULT_MAX_TS_OFFSET G_GINT64_CONSTANT(3000000000)
|
||||
#define DEFAULT_VERSION GST_RTSP_VERSION_1_0
|
||||
|
||||
enum
|
||||
|
|
Loading…
Reference in a new issue