gstreamer/subprojects/gst-plugins-good/ext/soup/gstsouphttpclientsink.h

77 lines
1.9 KiB
C
Raw Normal View History

2011-05-24 21:52:01 +00:00
/* GStreamer
* Copyright (C) 2011 David Schleef <ds@entropywave.com>
* Copyright (C) 2021 Igalia S.L.
2011-05-24 21:52:01 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
2011-05-24 21:52:01 +00:00
*/
#ifndef _GST_SOUP_HTTP_CLIENT_SINK_H_
#define _GST_SOUP_HTTP_CLIENT_SINK_H_
2011-05-24 21:52:01 +00:00
#include "gstsouploader.h"
#include "gstsouputils.h"
2011-05-24 21:52:01 +00:00
#include <gst/base/gstbasesink.h>
G_BEGIN_DECLS
2020-03-15 18:16:22 +00:00
#define GST_TYPE_SOUP_HTTP_CLIENT_SINK (gst_soup_http_client_sink_get_type())
G_DECLARE_FINAL_TYPE (GstSoupHttpClientSink, gst_soup_http_client_sink,
GST, SOUP_HTTP_CLIENT_SINK, GstBaseSink)
2011-05-24 21:52:01 +00:00
struct _GstSoupHttpClientSink
2011-05-24 21:52:01 +00:00
{
GstBaseSink base_souphttpsink;
2012-01-19 10:33:53 +00:00
GMutex mutex;
GCond cond;
2011-05-24 21:52:01 +00:00
GMainContext *context;
GMainLoop *loop;
GThread *thread;
GSource *timer;
2011-05-24 21:52:01 +00:00
SoupMessage *message;
SoupSession *session;
GList *queued_buffers;
GList *sent_buffers;
GList *streamheader_buffers;
GBytes *request_body;
2011-05-24 21:52:01 +00:00
int status_code;
char *reason_phrase;
guint64 offset;
int timeout;
gint failures;
2011-05-24 21:52:01 +00:00
/* properties */
SoupSession *prop_session;
char *location;
char *user_id;
char *user_pw;
GstSoupUri *proxy;
2011-05-24 21:52:01 +00:00
char *proxy_id;
char *proxy_pw;
char *user_agent;
gboolean automatic_redirect;
2011-06-04 20:43:00 +00:00
gchar **cookies;
SoupLoggerLogLevel log_level;
gint retry_delay;
gint retries;
2011-05-24 21:52:01 +00:00
};
G_END_DECLS
#endif