gst/avi/gstavidemux.c: Declare variables at beginning of block and make gcc-2.95...
[platform/upstream/gstreamer.git] / gst / tcp / gsttcpclientsrc.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2004> Thomas Vander Stichele <thomas at apestaart dot org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21
22 #ifndef __GST_TCPCLIENTSRC_H__
23 #define __GST_TCPCLIENTSRC_H__
24
25 #include <gst/gst.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif /* __cplusplus */
30
31 #include <netdb.h>                        /* sockaddr_in */
32 #include <sys/types.h>
33 #include <sys/socket.h>
34 #include <netinet/in.h>                   /* sockaddr_in */
35 #include <unistd.h>
36 #include "gsttcp.h"
37
38 #define GST_TYPE_TCPCLIENTSRC \
39   (gst_tcpclientsrc_get_type())
40 #define GST_TCPCLIENTSRC(obj) \
41   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_TCPCLIENTSRC,GstTCPClientSrc))
42 #define GST_TCPCLIENTSRC_CLASS(klass) \
43   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_TCPCLIENTSRC,GstTCPClientSrc))
44 #define GST_IS_TCPCLIENTSRC(obj) \
45   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_TCPCLIENTSRC))
46 #define GST_IS_TCPCLIENTSRC_CLASS(obj) \
47   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_TCPCLIENTSRC))
48
49 typedef struct _GstTCPClientSrc GstTCPClientSrc;
50 typedef struct _GstTCPClientSrcClass GstTCPClientSrcClass;
51
52 typedef enum {
53   GST_TCPCLIENTSRC_OPEN       = GST_ELEMENT_FLAG_LAST,
54
55   GST_TCPCLIENTSRC_FLAG_LAST,
56 } GstTCPClientSrcFlags;
57
58 struct _GstTCPClientSrc {
59   GstElement element;
60
61   /* pad */
62   GstPad *srcpad;
63
64   /* server information */
65   int port;
66   gchar *host;
67   struct sockaddr_in server_sin;
68
69   /* socket */
70   int sock_fd;
71
72   /* number of bytes we've gotten */
73   off_t curoffset;
74
75   GstTCPProtocolType protocol; /* protocol used for reading data */
76   gboolean caps_received;      /* if we have received caps yet */
77   GstCaps *caps;
78   GstClock *clock;
79
80   gboolean send_discont;       /* TRUE when we need to send a discont */
81   GstBuffer *buffer_after_discont; /* temporary storage for buffer */
82 };
83
84 struct _GstTCPClientSrcClass {
85   GstElementClass parent_class;
86 };
87
88 GType gst_tcpclientsrc_get_type (void);
89
90
91 #ifdef __cplusplus
92 }
93 #endif /* __cplusplus */
94
95 #endif /* __GST_TCPCLIENTSRC_H__ */