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