summaryrefslogtreecommitdiff
path: root/wocky/wocky-jingle-media-rtp.h
blob: 6ea700831ef9d1277d94d14e0b0d705d3fa6524c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
 * wocky-jingle-media-rtp.h - Header for WockyJingleMediaRtp
 * Copyright (C) 2008 Collabora Ltd.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
#if !defined (WOCKY_H_INSIDE) && !defined (WOCKY_COMPILATION)
# error "Only <wocky/wocky.h> can be included directly."
#endif

#ifndef __JINGLE_MEDIA_RTP_H__
#define __JINGLE_MEDIA_RTP_H__

#include <glib-object.h>

#include "wocky-jingle-content.h"
#include "wocky-jingle-types.h"

G_BEGIN_DECLS

typedef struct _WockyJingleMediaRtpClass WockyJingleMediaRtpClass;

GType wocky_jingle_media_rtp_get_type (void);

/* TYPE MACROS */
#define WOCKY_TYPE_JINGLE_MEDIA_RTP \
  (wocky_jingle_media_rtp_get_type ())
#define WOCKY_JINGLE_MEDIA_RTP(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), WOCKY_TYPE_JINGLE_MEDIA_RTP, \
                              WockyJingleMediaRtp))
#define WOCKY_JINGLE_MEDIA_RTP_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST((klass), WOCKY_TYPE_JINGLE_MEDIA_RTP, \
                           WockyJingleMediaRtpClass))
#define WOCKY_IS_JINGLE_MEDIA_RTP(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), WOCKY_TYPE_JINGLE_MEDIA_RTP))
#define WOCKY_IS_JINGLE_MEDIA_RTP_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE((klass), WOCKY_TYPE_JINGLE_MEDIA_RTP))
#define WOCKY_JINGLE_MEDIA_RTP_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), WOCKY_TYPE_JINGLE_MEDIA_RTP, \
                              WockyJingleMediaRtpClass))

struct _WockyJingleMediaRtpClass {
    WockyJingleContentClass parent_class;
};

typedef struct _WockyJingleMediaRtpPrivate WockyJingleMediaRtpPrivate;

struct _WockyJingleMediaRtp {
    WockyJingleContent parent;
    WockyJingleMediaRtpPrivate *priv;
};

typedef struct {
  guint id;
  gchar *name;
  guint clockrate;
  guint channels;
  GHashTable *params;
  guint trr_int;
  GList *feedback_msgs;
} WockyJingleCodec;

typedef struct {
  gchar *type;
  gchar *subtype;
} WockyJingleFeedbackMessage;

typedef struct {
  guint id;
  WockyJingleContentSenders senders;
  gchar *uri;
} WockyJingleRtpHeaderExtension;

typedef struct {
  GList *codecs;
  GList *hdrexts;
  guint trr_int;
  GList *feedback_msgs;
} WockyJingleMediaDescription;

void jingle_media_rtp_register (WockyJingleFactory *factory);
gboolean jingle_media_rtp_set_local_media_description (
    WockyJingleMediaRtp *self, WockyJingleMediaDescription *md, gboolean ready,
    GError **error);
WockyJingleMediaDescription *wocky_jingle_media_rtp_get_remote_media_description (
    WockyJingleMediaRtp *self);

WockyJingleCodec * jingle_media_rtp_codec_new (guint id, const gchar *name,
    guint clockrate, guint channels, GHashTable *params);
void jingle_media_rtp_codec_free (WockyJingleCodec *p);
void jingle_media_rtp_free_codecs (GList *codecs);
GList * jingle_media_rtp_copy_codecs (GList *codecs);

gboolean jingle_media_rtp_compare_codecs (GList *old,
    GList *new,
    GList **changed,
    GError **e);

WockyJingleMediaDescription *wocky_jingle_media_description_new (void);
void wocky_jingle_media_description_free (WockyJingleMediaDescription *md);
WockyJingleMediaDescription *wocky_jingle_media_description_copy (
    WockyJingleMediaDescription *md);

WockyJingleRtpHeaderExtension *wocky_jingle_rtp_header_extension_new (guint id,
    WockyJingleContentSenders senders, const gchar *uri);
void wocky_jingle_rtp_header_extension_free (WockyJingleRtpHeaderExtension *hdrext);


WockyJingleFeedbackMessage *wocky_jingle_feedback_message_new (const gchar *type,
    const gchar *subtype);
void wocky_jingle_feedback_message_free (WockyJingleFeedbackMessage *fb);
void wocky_jingle_media_description_simplify (WockyJingleMediaDescription *md);

G_END_DECLS

#endif /* __JINGLE_MEDIA_RTP_H__ */