mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
9c8ea35617
Original commit message from CVS: * gst/avi/gstavimux.c: Comment a #if 0 in caps template definition as VS6 seems to do not support it. * gst/rtsp/gstrtspsrc.c:(gst_rtspsrc_loop_udp): Use gst_guint64_to_gdouble for conversion. * gst/rtsp/rtspconnection.c:(rtsp_connection_send): Move variables declaration before the first instruction. * gst/rtsp/rtspdefs.c:(rtsp_strresult): Don't use hstrerror for error log on G_OS_WIN32 build as it's not supported. And don't include netdb.h for G_OS_WIN32 * gst/rtsp/sdpmessage.c:(sdp_parse_line): This initialization SDPMedia nmedia = {.media = NULL }; is not supported by VS6 then use an other way to initialize SDPMedia structure. * gst/udp/gstdynudpsink.h: * gst/udp/gstdynudpnetutils.h: Do not include <sys/time.h> for G_OS_WIN32 * gst/udp/gstudpsrc.c: Define socklen_t as int for G_OS_WIN32 * win/common/config.h.in: Undef HAVE_NETINET_IN_H * win32/vs6/gst_plugins_good.dsw: * win32/vs6/libgstrtp.dsp: * win32/vs6/libgstrtsp.dsp: * win32/vs6/libgstautogen.dsp: * win32/vs6/libgstaudiofx.dsp: * win32/vs6/libgstudp.dsp: Add and update project files. * win32/common/gstudp-enumtypes.c: * win32/common/gstudp-enumtypes.h: Add a copy of udp enumtypes to win32/common as in core and base.
77 lines
2.2 KiB
C
77 lines
2.2 KiB
C
/* GStreamer UDP network utility functions
|
|
* Copyright (C) 2006 Tim-Philipp Müller <tim centricular net>
|
|
* Copyright (C) 2006 Joni Valtanen <joni.valtanen@movial.fi>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __GST_UDP_NET_UTILS_H__
|
|
#define __GST_UDP_NET_UTILS_H__
|
|
|
|
#include <sys/types.h>
|
|
|
|
/* Needed for G_OS_XXXX */
|
|
#include <glib.h>
|
|
|
|
#ifdef G_OS_WIN32
|
|
#include <winsock2.h>
|
|
#include <ws2tcpip.h>
|
|
|
|
/* Needed for GstObject and GST_WARNING_OBJECT */
|
|
#include <gst/gstobject.h>
|
|
#include <gst/gstinfo.h>
|
|
|
|
#else
|
|
#include <sys/time.h>
|
|
#include <netinet/in.h>
|
|
#include <netdb.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/wait.h>
|
|
#include <arpa/inet.h>
|
|
#include <unistd.h>
|
|
#include <sys/ioctl.h>
|
|
#endif
|
|
|
|
#include <fcntl.h>
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
#define IOCTL_SOCKET ioctlsocket
|
|
#define CLOSE_SOCKET(sock) closesocket(sock)
|
|
#define setsockopt(sock,l,opt,val,len) setsockopt(sock,l,opt,(char *)(val),len)
|
|
#define inet_aton(c,addr) gst_udp_net_utils_win32_inet_aton ((c),(addr))
|
|
#define WSA_STARTUP(obj) gst_udp_net_utils_win32_wsa_startup(GST_OBJECT(obj))
|
|
#define WSA_CLEANUP(obj) WSACleanup ()
|
|
|
|
#else
|
|
|
|
#define IOCTL_SOCKET ioctl
|
|
#define CLOSE_SOCKET(sock) close(sock)
|
|
#define setsockopt(sock,l,opt,val,len) setsockopt(sock,l,opt,(void *)(val),len)
|
|
#define WSA_STARTUP(obj)
|
|
#define WSA_CLEANUP(obj)
|
|
|
|
#endif
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
int gst_udp_net_utils_win32_inet_aton (const char *c, struct in_addr * addr);
|
|
gboolean gst_udp_net_utils_win32_wsa_startup (GstObject * obj);
|
|
|
|
#endif
|
|
|
|
#endif /* __GST_UDP_NET_UTILS_H__*/
|
|
|