diff options
author | David Schleef <ds@schleef.org> | 2014-08-26 21:24:01 -0700 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2014-08-26 21:24:30 -0700 |
commit | d84190d24394d3007ebad8f740cc32a16472028a (patch) | |
tree | 4c22e75d94f5eb4197403c138e74ff4bbc5d9eac /tools/proxy-server.c | |
parent | d2e343f95296ac936cf25e2dc7c328e3b2bbe8de (diff) |
hacking
Diffstat (limited to 'tools/proxy-server.c')
-rw-r--r-- | tools/proxy-server.c | 5 |
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); } |