~ubuntu-branches/ubuntu/feisty/gst-plugins-good0.10/feisty-security

« back to all changes in this revision

Viewing changes to gst/rtsp/gstrtspsrc.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-08-15 02:58:26 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060815025826-h1sa4q0uxwqgzwki
Tags: 0.10.4-0ubuntu1
* Sync with Debian (pkg-gstreamer SVN, rev 470):
  + debian/rules,
    debian/control.in:
    - Add a -dbg package again

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <gst/gst.h>
25
25
 
26
 
#ifdef __cplusplus
27
 
extern "C" {
28
 
#endif /* __cplusplus */
 
26
G_BEGIN_DECLS
29
27
 
30
28
#include "gstrtsp.h"
31
29
#include "rtsp.h"
35
33
#define GST_RTSPSRC(obj) \
36
34
  (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_RTSPSRC,GstRTSPSrc))
37
35
#define GST_RTSPSRC_CLASS(klass) \
38
 
  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTSPSRC,GstRTSPSrc))
 
36
  (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_RTSPSRC,GstRTSPSrcClass))
39
37
#define GST_IS_RTSPSRC(obj) \
40
38
  (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_RTSPSRC))
41
 
#define GST_IS_RTSPSRC_CLASS(obj) \
 
39
#define GST_IS_RTSPSRC_CLASS(klass) \
42
40
  (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_RTSPSRC))
43
41
 
44
42
typedef struct _GstRTSPSrc GstRTSPSrc;
103
101
 
104
102
GType gst_rtspsrc_get_type(void);
105
103
 
106
 
 
107
 
#ifdef __cplusplus
108
 
}
109
 
#endif /* __cplusplus */
110
 
 
 
104
G_END_DECLS
111
105
 
112
106
#endif /* __GST_RTSPSRC_H__ */