summaryrefslogtreecommitdiff
path: root/tools/proxy-server.c
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2014-08-26 21:24:01 -0700
committerDavid Schleef <ds@schleef.org>2014-08-26 21:24:30 -0700
commitd84190d24394d3007ebad8f740cc32a16472028a (patch)
tree4c22e75d94f5eb4197403c138e74ff4bbc5d9eac /tools/proxy-server.c
parentd2e343f95296ac936cf25e2dc7c328e3b2bbe8de (diff)
hacking
Diffstat (limited to 'tools/proxy-server.c')
-rw-r--r--tools/proxy-server.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/proxy-server.c b/tools/proxy-server.c
index 0a953fd..e9e1d52 100644
--- a/tools/proxy-server.c
+++ b/tools/proxy-server.c
@@ -94,7 +94,7 @@ static void
add_connection (GstRtmpServer * server, GstRtmpConnection * connection,
gpointer user_data)
{
- GST_INFO ("new connection");
+ GST_ERROR ("new connection");
g_signal_connect (connection, "got-chunk", G_CALLBACK (got_chunk), NULL);
@@ -172,7 +172,8 @@ got_chunk_proxy (GstRtmpConnection * connection, GstRtmpChunk * chunk,
GST_ERROR ("<<<: %" G_GSIZE_FORMAT, chunk->message_length);
bytes = gst_rtmp_chunk_get_payload (chunk);
- gst_rtmp_dump_data (bytes);
+ if (0)
+ gst_rtmp_dump_data (bytes);
gst_rtmp_connection_queue_chunk (client_connection, chunk);
}