~oah-dev/oah/gst-plugins-bad

« back to all changes in this revision

Viewing changes to gst/dccp/gstdccpclientsrc.h

  • Committer: Haakon Sporsheim
  • Date: 2009-03-12 13:52:03 UTC
  • Revision ID: haakon.sporsheim@tandberg.com-20090312135203-i5k294hgkushb0mt
Initial import of git repository: git://anongit.freedesktop.org/gstreamer/gst-plugins-bad (tag: RELEASE-0_10_10)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GStreamer
 
2
 * Copyright (C) <2007> Leandro Melo de Sales <leandroal@gmail.com>
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __GST_DCCP_CLIENT_SRC_H__
 
21
#define __GST_DCCP_CLIENT_SRC_H__
 
22
 
 
23
#include <gst/gst.h>
 
24
#include <gst/base/gstpushsrc.h>
 
25
#include <gst/base/gstbasesrc.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#include <netdb.h>                        /* sockaddr_in */
 
30
#include <sys/types.h>
 
31
#include <sys/socket.h>
 
32
#include <netinet/in.h>                   /* sockaddr_in */
 
33
#include <unistd.h>
 
34
 
 
35
 
 
36
#define GST_TYPE_DCCP_CLIENT_SRC \
 
37
  (gst_dccp_client_src_get_type())
 
38
#define GST_DCCP_CLIENT_SRC(obj) \
 
39
  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_DCCP_CLIENT_SRC,GstDCCPClientSrc))
 
40
#define GST_DCCP_CLIENT_SRC_CLASS(klass) \
 
41
  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_DCCP_CLIENT_SRC,GstDCCPClientSrcClass))
 
42
#define GST_IS_DCCP_CLIENT_SRC(obj) \
 
43
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_DCCP_CLIENT_SRC))
 
44
#define GST_IS_DCCP_CLIENT_SRC_CLASS(klass) \
 
45
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_DCCP_CLIENT_SRC))
 
46
 
 
47
typedef struct _GstDCCPClientSrc GstDCCPClientSrc;
 
48
typedef struct _GstDCCPClientSrcClass GstDCCPClientSrcClass;
 
49
 
 
50
struct _GstDCCPClientSrc {
 
51
  GstPushSrc element;
 
52
 
 
53
  /* server information */
 
54
  int port;
 
55
  gchar *host;
 
56
  struct sockaddr_in server_sin;
 
57
 
 
58
  /* socket */
 
59
  int sock_fd;
 
60
  gboolean closed;
 
61
 
 
62
  GstCaps *caps;
 
63
  uint8_t ccid;
 
64
};
 
65
 
 
66
struct _GstDCCPClientSrcClass {
 
67
  GstPushSrcClass parent_class;
 
68
 
 
69
  /* signals */
 
70
  void (*connected) (GstElement *src, gint fd);
 
71
};
 
72
 
 
73
GType gst_dccp_client_src_get_type (void);
 
74
 
 
75
G_END_DECLS
 
76
 
 
77
#endif /* __GST_DCCP_CLIENT_SRC_H__ */