summaryrefslogtreecommitdiff
path: root/generate/src/gabble-media-stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'generate/src/gabble-media-stream.h')
-rw-r--r--generate/src/gabble-media-stream.h109
1 files changed, 0 insertions, 109 deletions
diff --git a/generate/src/gabble-media-stream.h b/generate/src/gabble-media-stream.h
deleted file mode 100644
index 862ee76f7..000000000
--- a/generate/src/gabble-media-stream.h
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * gabble-media-stream.h - Header for GabbleMediaStream
- * Copyright (C) 2005 Collabora Ltd.
- * Copyright (C) 2005 Nokia Corporation
- *
- * 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
- */
-
-#ifndef __GABBLE_MEDIA_STREAM_H__
-#define __GABBLE_MEDIA_STREAM_H__
-
-#include <glib-object.h>
-
-G_BEGIN_DECLS
-
-typedef struct _GabbleMediaStream GabbleMediaStream;
-typedef struct _GabbleMediaStreamClass GabbleMediaStreamClass;
-
-struct _GabbleMediaStreamClass {
- GObjectClass parent_class;
-};
-
-struct _GabbleMediaStream {
- GObject parent;
-
- gpointer priv;
-};
-
-GType gabble_media_stream_get_type(void);
-
-/* TYPE MACROS */
-#define GABBLE_TYPE_MEDIA_STREAM \
- (gabble_media_stream_get_type())
-#define GABBLE_MEDIA_STREAM(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST((obj), GABBLE_TYPE_MEDIA_STREAM, GabbleMediaStream))
-#define GABBLE_MEDIA_STREAM_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST((klass), GABBLE_TYPE_MEDIA_STREAM, GabbleMediaStreamClass))
-#define GABBLE_IS_MEDIA_STREAM(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE((obj), GABBLE_TYPE_MEDIA_STREAM))
-#define GABBLE_IS_MEDIA_STREAM_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE((klass), GABBLE_TYPE_MEDIA_STREAM))
-#define GABBLE_MEDIA_STREAM_GET_CLASS(obj) \
- (G_TYPE_INSTANCE_GET_CLASS ((obj), GABBLE_TYPE_MEDIA_STREAM, GabbleMediaStreamClass))
-
-
-gboolean
-gabble_media_stream_codec_choice (GabbleMediaStream *self,
- guint codec_id,
- GError **error);
-
-gboolean
-gabble_media_stream_error (GabbleMediaStream *self,
- guint errno,
- const gchar *message,
- GError **error);
-
-gboolean
-gabble_media_stream_native_candidates_prepared (GabbleMediaStream *self,
- GError **error);
-
-gboolean
-gabble_media_stream_new_active_candidate_pair (GabbleMediaStream *self,
- const gchar *native_candidate_id,
- const gchar *remote_candidate_id,
- GError **error);
-
-gboolean
-gabble_media_stream_new_native_candidate (GabbleMediaStream *self,
- const gchar *candidate_id,
- const GPtrArray *transports,
- GError **error);
-
-gboolean
-gabble_media_stream_ready (GabbleMediaStream *self,
- const GPtrArray *codecs,
- GError **error);
-
-gboolean
-gabble_media_stream_set_local_codecs (GabbleMediaStream *self,
- const GPtrArray *codecs,
- GError **error);
-
-gboolean
-gabble_media_stream_stream_state (GabbleMediaStream *self,
- guint state,
- GError **error);
-
-gboolean
-gabble_media_stream_supported_codecs (GabbleMediaStream *self,
- const GPtrArray *codecs,
- GError **error);
-
-
-
-G_END_DECLS
-
-#endif /* #ifndef __GABBLE_MEDIA_STREAM_H__*/