summaryrefslogtreecommitdiffstats
path: root/gst/udp
diff options
context:
space:
mode:
authorVincent Torri <vtorri@univ-evry.fr>2007-01-08 12:45:10 +0000
committerTim-Philipp Müller <tim@centricular.net>2007-01-08 12:45:10 +0000
commitfd185066571a02bb59228df7df9b4f717f81a6fd (patch)
treea99b9c56aae94d053ced74d64efe38ce6cc1139b /gst/udp
parent12359919d3932f49a04382e72be855df53fa1800 (diff)
ext/jpeg/: These libjpeg callbacks should return a 'boolean' (unsigned char apparently) and not a 'gboolean' (which m...
Original commit message from CVS: Patch by: Vincent Torri <vtorri at univ-evry fr> * ext/jpeg/gstjpegdec.c: * ext/jpeg/gstjpegenc.c: * ext/jpeg/smokecodec.c: These libjpeg callbacks should return a 'boolean' (unsigned char apparently) and not a 'gboolean' (which maps to gint). Fixes warnings when compiling with MingW (#393427). * gst/rtsp/rtspconnection.c: (rtsp_connection_read): Use ioctlsocket on win32. * gst/udp/gstudpsrc.c: (gst_udpsrc_create): Some printf format fixes for win32.
Diffstat (limited to 'gst/udp')
-rw-r--r--gst/udp/gstudpsrc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c
index d90efade..b3e4b42d 100644
--- a/gst/udp/gstudpsrc.c
+++ b/gst/udp/gstudpsrc.c
@@ -420,7 +420,7 @@ gst_udpsrc_create (GstPushSrc * psrc, GstBuffer ** buf)
if ((ret = IOCTL_SOCKET (udpsrc->sock, FIONREAD, &readsize)) < 0)
goto ioctl_failed;
- GST_LOG_OBJECT (udpsrc, "ioctl says %d bytes available", readsize);
+ GST_LOG_OBJECT (udpsrc, "ioctl says %d bytes available", (int) readsize);
pktdata = g_malloc (readsize);
pktsize = readsize;
@@ -447,7 +447,7 @@ gst_udpsrc_create (GstPushSrc * psrc, GstBuffer ** buf)
gst_buffer_set_caps (GST_BUFFER_CAST (outbuf), udpsrc->caps);
- GST_LOG_OBJECT (udpsrc, "read %d bytes", readsize);
+ GST_LOG_OBJECT (udpsrc, "read %d bytes", (int) readsize);
*buf = GST_BUFFER_CAST (outbuf);