diff options
author | David Schleef <ds@schleef.org> | 2014-08-23 23:25:03 -0700 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2014-08-23 23:25:03 -0700 |
commit | fde02a939319b2509a4cd2759215deec933232a0 (patch) | |
tree | d7921cc32fb482d730677f3013c228fe8457a077 /tools | |
parent | 6b0cac8398d8a85c3686729cce1f8c1180a90673 (diff) |
change GstRtmpServerConnection to GstRtmpConnection
Diffstat (limited to 'tools')
-rw-r--r-- | tools/proxy-server.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/proxy-server.c b/tools/proxy-server.c index 37629af..fe8fc18 100644 --- a/tools/proxy-server.c +++ b/tools/proxy-server.c @@ -29,10 +29,10 @@ #define GETTEXT_PACKAGE NULL static void -add_connection (GstRtmpServer * server, GstRtmpServerConnection * connection, +add_connection (GstRtmpServer * server, GstRtmpConnection * connection, gpointer user_data); static void -got_chunk (GstRtmpServerConnection * connection, GstRtmpChunk * chunk, +got_chunk (GstRtmpConnection * connection, GstRtmpChunk * chunk, gpointer user_data); static void dump_data (GBytes * bytes); @@ -74,7 +74,7 @@ main (int argc, char *argv[]) } static void -add_connection (GstRtmpServer * server, GstRtmpServerConnection * connection, +add_connection (GstRtmpServer * server, GstRtmpConnection * connection, gpointer user_data) { GST_ERROR ("new connection"); @@ -83,7 +83,7 @@ add_connection (GstRtmpServer * server, GstRtmpServerConnection * connection, } static void -got_chunk (GstRtmpServerConnection * connection, GstRtmpChunk * chunk, +got_chunk (GstRtmpConnection * connection, GstRtmpChunk * chunk, gpointer user_data) { GBytes *bytes; |