ext/neon/gstneonhttpsrc.c: Minor clean-ups; remove newlines at end of debug statements.

Original commit message from CVS:
* ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
(gst_neonhttp_src_create), (send_request_and_redirect),
(gst_neonhttp_src_start), (oom_callback):
Minor clean-ups; remove newlines at end of debug statements.
This commit is contained in:
Tim-Philipp Müller 2006-12-12 11:46:05 +00:00
parent e7ae77b8ed
commit 9a2781a64f
2 changed files with 23 additions and 14 deletions

View file

@ -1,3 +1,10 @@
2006-12-12 Tim-Philipp Müller <tim at centricular dot net>
* ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_class_init),
(gst_neonhttp_src_create), (send_request_and_redirect),
(gst_neonhttp_src_start), (oom_callback):
Minor clean-ups; remove newlines at end of debug statements.
2006-12-11 Tim-Philipp Müller <tim at centricular dot net> 2006-12-11 Tim-Philipp Müller <tim at centricular dot net>
* gst/qtdemux/qtdemux.c: (qtdemux_parse_tree): * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):

View file

@ -199,11 +199,11 @@ gst_neonhttp_src_class_init (GstNeonhttpSrcClass * klass)
"Enable Neon HTTP debug messages", FALSE, G_PARAM_READWRITE)); "Enable Neon HTTP debug messages", FALSE, G_PARAM_READWRITE));
#endif #endif
gstbasesrc_class->start = gst_neonhttp_src_start; gstbasesrc_class->start = GST_DEBUG_FUNCPTR (gst_neonhttp_src_start);
gstbasesrc_class->stop = gst_neonhttp_src_stop; gstbasesrc_class->stop = GST_DEBUG_FUNCPTR (gst_neonhttp_src_stop);
gstbasesrc_class->get_size = gst_neonhttp_src_get_size; gstbasesrc_class->get_size = GST_DEBUG_FUNCPTR (gst_neonhttp_src_get_size);
gstpush_src_class->create = gst_neonhttp_src_create; gstpush_src_class->create = GST_DEBUG_FUNCPTR (gst_neonhttp_src_create);
GST_DEBUG_CATEGORY_INIT (neonhttpsrc_debug, "neonhttpsrc", 0, GST_DEBUG_CATEGORY_INIT (neonhttpsrc_debug, "neonhttpsrc", 0,
"NEON HTTP Client Source"); "NEON HTTP Client Source");
@ -320,20 +320,22 @@ static GstFlowReturn
gst_neonhttp_src_create (GstPushSrc * psrc, GstBuffer ** outbuf) gst_neonhttp_src_create (GstPushSrc * psrc, GstBuffer ** outbuf)
{ {
GstNeonhttpSrc *src; GstNeonhttpSrc *src;
GstBaseSrc *basesrc;
GstFlowReturn ret; GstFlowReturn ret;
int read; int read;
src = GST_NEONHTTP_SRC (psrc); src = GST_NEONHTTP_SRC (psrc);
basesrc = GST_BASE_SRC_CAST (psrc);
/* The caller should know the number of bytes and not read beyond EOS. */ /* The caller should know the number of bytes and not read beyond EOS. */
if (G_UNLIKELY (src->eos)) if (G_UNLIKELY (src->eos))
goto eos; goto eos;
/* Create the buffer. */ /* Create the buffer. */
ret = gst_pad_alloc_buffer (GST_BASE_SRC_PAD (GST_BASE_SRC (psrc)), ret = gst_pad_alloc_buffer (GST_BASE_SRC_PAD (basesrc),
GST_BUFFER_OFFSET_NONE, GST_BASE_SRC (psrc)->blocksize, GST_BUFFER_OFFSET_NONE, basesrc->blocksize,
src->icy_caps ? src->icy_caps : src->icy_caps ? src->icy_caps :
GST_PAD_CAPS (GST_BASE_SRC_PAD (GST_BASE_SRC (psrc))), outbuf); GST_PAD_CAPS (GST_BASE_SRC_PAD (basesrc)), outbuf);
if (G_UNLIKELY (ret != GST_FLOW_OK)) if (G_UNLIKELY (ret != GST_FLOW_OK))
goto done; goto done;
@ -460,7 +462,7 @@ send_request_and_redirect (GstNeonhttpSrc * src, gboolean do_redir)
#ifndef GST_DISABLE_GST_DEBUG #ifndef GST_DISABLE_GST_DEBUG
if (src->neon_http_msgs_dbg) if (src->neon_http_msgs_dbg)
GST_LOG_OBJECT (src, GST_LOG_OBJECT (src,
"--> Got HTTP Status Code %d; Using 'Location' header [%s]\n", "--> Got HTTP Status Code %d; Using 'Location' header [%s]",
http_status, src->uri.host); http_status, src->uri.host);
#endif #endif
} }
@ -471,7 +473,7 @@ send_request_and_redirect (GstNeonhttpSrc * src, gboolean do_redir)
/* if - NE_OK */ /* if - NE_OK */
++request_count; ++request_count;
if (http_status == 302) { if (http_status == 302) {
GST_WARNING_OBJECT (src, "%s %s.\n", GST_WARNING_OBJECT (src, "%s %s.",
(request_count < MAX_HTTP_REDIRECTS_NUMBER) (request_count < MAX_HTTP_REDIRECTS_NUMBER)
&& do_redir ? "Redirecting to" : && do_redir ? "Redirecting to" :
"WILL NOT redirect, try it again with a different URI; an alternative is", "WILL NOT redirect, try it again with a different URI; an alternative is",
@ -479,7 +481,7 @@ send_request_and_redirect (GstNeonhttpSrc * src, gboolean do_redir)
} }
#ifndef GST_DISABLE_GST_DEBUG #ifndef GST_DISABLE_GST_DEBUG
if (src->neon_http_msgs_dbg) if (src->neon_http_msgs_dbg)
GST_LOG_OBJECT (src, "--> request_count = %d\n", request_count); GST_LOG_OBJECT (src, "--> request_count = %d", request_count);
#endif #endif
/* do the redirect, go back to send another HTTP request now using the 'Location' */ /* do the redirect, go back to send another HTTP request now using the 'Location' */
@ -503,7 +505,7 @@ gst_neonhttp_src_start (GstBaseSrc * bsrc)
if (res == HTTP_SOCKET_ERROR) { if (res == HTTP_SOCKET_ERROR) {
#ifndef GST_DISABLE_GST_DEBUG #ifndef GST_DISABLE_GST_DEBUG
if (src->neon_http_msgs_dbg) { if (src->neon_http_msgs_dbg) {
GST_ERROR_OBJECT (src, "HTTP Request failed when opening socket!\n"); GST_ERROR_OBJECT (src, "HTTP Request failed when opening socket!");
} }
#endif #endif
goto init_failed; goto init_failed;
@ -511,14 +513,14 @@ gst_neonhttp_src_start (GstBaseSrc * bsrc)
#ifndef GST_DISABLE_GST_DEBUG #ifndef GST_DISABLE_GST_DEBUG
if (src->neon_http_msgs_dbg) { if (src->neon_http_msgs_dbg) {
GST_ERROR_OBJECT (src, GST_ERROR_OBJECT (src,
"Proxy Server URI is invalid to the HTTP Request!\n"); "Proxy Server URI is invalid to the HTTP Request!");
} }
#endif #endif
goto wrong_proxy; goto wrong_proxy;
} else { } else {
#ifndef GST_DISABLE_GST_DEBUG #ifndef GST_DISABLE_GST_DEBUG
if (src->neon_http_msgs_dbg) { if (src->neon_http_msgs_dbg) {
GST_ERROR_OBJECT (src, "HTTP Request failed, error unrecognized!\n"); GST_ERROR_OBJECT (src, "HTTP Request failed, error unrecognized!");
} }
#endif #endif
goto begin_req_failed; goto begin_req_failed;
@ -977,7 +979,7 @@ gst_neonhttp_src_uri_handler_init (gpointer g_iface, gpointer iface_data)
static void static void
oom_callback () oom_callback ()
{ {
GST_ERROR ("memory exeception in neon\n"); GST_ERROR ("memory exeception in neon");
} }
void void