1 /* GStreamer
2  *
3  * Copyright (C) 2014 Samsung Electronics. All rights reserved.
4  *     @Author: Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more
15  */
16 
17 #ifndef __GST_SOUP_UTILS_H__
18 #define __GST_SOUP_UTILS_H__
19 
20 #include <glib.h>
21 #include <gst/gst.h>
22 #include <libsoup/soup.h>
23 
24 G_BEGIN_DECLS
25 
26 void gst_soup_util_log_setup (SoupSession * session, SoupLoggerLogLevel level,
27     GstElement * element);
28 
29 G_END_DECLS
30 
31 #endif
32