2001-12-23 16:42:33 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
* 2001 Bastien Nocera <hadess@hadess.net>
|
2002-09-10 18:38:22 +00:00
|
|
|
* 2002 Kristian Rietveld <kris@gtk.org>
|
2003-01-25 23:20:36 +00:00
|
|
|
* 2002,2003 Colin Walters <walters@gnu.org>
|
2001-12-23 16:42:33 +00:00
|
|
|
*
|
|
|
|
* gnomevfssrc.c:
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define BROKEN_SIG 1
|
|
|
|
/*#undef BROKEN_SIG */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2002-09-10 18:38:22 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
2001-12-23 16:42:33 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/mman.h>
|
2001-12-26 23:56:00 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <libgnomevfs/gnome-vfs.h>
|
2002-09-10 18:38:22 +00:00
|
|
|
/* gnome-vfs.h doesn't include the following header, which we need: */
|
|
|
|
#include <libgnomevfs/gnome-vfs-standard-callbacks.h>
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
GstElementDetails gst_gnomevfssrc_details;
|
|
|
|
|
|
|
|
#define GST_TYPE_GNOMEVFSSRC \
|
|
|
|
(gst_gnomevfssrc_get_type())
|
|
|
|
#define GST_GNOMEVFSSRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GNOMEVFSSRC,GstGnomeVFSSrc))
|
|
|
|
#define GST_GNOMEVFSSRC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_GNOMEVFSSRC,GstGnomeVFSSrcClass))
|
|
|
|
#define GST_IS_GNOMEVFSSRC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GNOMEVFSSRC))
|
|
|
|
#define GST_IS_GNOMEVFSSRC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_GNOMEVFSSRC))
|
|
|
|
|
2002-06-02 18:50:20 +00:00
|
|
|
static GStaticMutex count_lock = G_STATIC_MUTEX_INIT;
|
|
|
|
static gint ref_count = 0;
|
2002-09-15 11:28:41 +00:00
|
|
|
static gboolean vfs_owner = FALSE;
|
2002-06-02 18:50:20 +00:00
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
typedef enum {
|
|
|
|
GST_GNOMEVFSSRC_OPEN = GST_ELEMENT_FLAG_LAST,
|
|
|
|
|
|
|
|
GST_GNOMEVFSSRC_FLAG_LAST = GST_ELEMENT_FLAG_LAST + 2,
|
|
|
|
} GstGnomeVFSSrcFlags;
|
|
|
|
|
|
|
|
typedef struct _GstGnomeVFSSrc GstGnomeVFSSrc;
|
|
|
|
typedef struct _GstGnomeVFSSrcClass GstGnomeVFSSrcClass;
|
|
|
|
|
|
|
|
struct _GstGnomeVFSSrc {
|
|
|
|
GstElement element;
|
|
|
|
/* pads */
|
|
|
|
GstPad *srcpad;
|
|
|
|
|
|
|
|
/* filename */
|
|
|
|
gchar *filename;
|
|
|
|
/* uri */
|
|
|
|
GnomeVFSURI *uri;
|
|
|
|
|
|
|
|
/* handle */
|
|
|
|
GnomeVFSHandle *handle;
|
2002-03-21 19:30:11 +00:00
|
|
|
/* Seek stuff */
|
|
|
|
gboolean need_flush;
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
/* details for fallback synchronous read */
|
|
|
|
GnomeVFSFileSize size;
|
|
|
|
GnomeVFSFileOffset curoffset; /* current offset in file */
|
|
|
|
gulong bytes_per_read; /* bytes per read */
|
|
|
|
gboolean new_seek;
|
2003-02-07 01:47:58 +00:00
|
|
|
gboolean in_first_get;
|
2002-09-10 18:38:22 +00:00
|
|
|
|
|
|
|
/* icecast/audiocast metadata extraction handling */
|
|
|
|
gboolean iradio_mode;
|
2003-02-07 01:47:58 +00:00
|
|
|
gboolean http_callbacks_pushed;
|
2002-09-10 18:38:22 +00:00
|
|
|
|
|
|
|
gint icy_metaint;
|
|
|
|
GnomeVFSFileSize icy_count;
|
|
|
|
|
|
|
|
gchar *iradio_name;
|
|
|
|
gchar *iradio_genre;
|
|
|
|
gchar *iradio_url;
|
|
|
|
gchar *iradio_title;
|
|
|
|
|
|
|
|
GThread *audiocast_thread;
|
|
|
|
GList *audiocast_notify_queue;
|
|
|
|
GMutex *audiocast_queue_mutex;
|
2002-09-19 18:44:49 +00:00
|
|
|
GMutex *audiocast_udpdata_mutex;
|
2002-09-10 18:38:22 +00:00
|
|
|
gint audiocast_thread_die_infd;
|
|
|
|
gint audiocast_thread_die_outfd;
|
|
|
|
gint audiocast_port;
|
|
|
|
gint audiocast_fd;
|
2001-12-23 16:42:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstGnomeVFSSrcClass {
|
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2002-09-18 19:02:52 +00:00
|
|
|
/* elementfactory information */
|
2001-12-23 16:42:33 +00:00
|
|
|
GstElementDetails gst_gnomevfssrc_details = {
|
|
|
|
"GnomeVFS Source",
|
|
|
|
"Source/File",
|
2002-09-18 19:02:52 +00:00
|
|
|
"LGPL",
|
2001-12-23 16:42:33 +00:00
|
|
|
"Read from any GnomeVFS file",
|
|
|
|
VERSION,
|
|
|
|
"Bastien Nocera <hadess@hadess.net>",
|
|
|
|
"(C) 2001",
|
|
|
|
};
|
|
|
|
|
2002-12-30 17:53:18 +00:00
|
|
|
GST_PAD_FORMATS_FUNCTION (gst_gnomevfssrc_get_formats,
|
2002-07-29 19:23:20 +00:00
|
|
|
GST_FORMAT_BYTES
|
|
|
|
)
|
|
|
|
|
|
|
|
GST_PAD_QUERY_TYPE_FUNCTION (gst_gnomevfssrc_get_query_types,
|
2002-12-30 17:53:18 +00:00
|
|
|
GST_QUERY_TOTAL,
|
|
|
|
GST_QUERY_POSITION
|
2002-07-29 19:23:20 +00:00
|
|
|
)
|
|
|
|
|
2002-12-30 17:53:18 +00:00
|
|
|
GST_PAD_EVENT_MASK_FUNCTION (gst_gnomevfssrc_get_event_mask,
|
2002-07-29 19:23:20 +00:00
|
|
|
{ GST_EVENT_SEEK, GST_SEEK_METHOD_CUR |
|
|
|
|
GST_SEEK_METHOD_SET |
|
|
|
|
GST_SEEK_METHOD_END |
|
|
|
|
GST_SEEK_FLAG_FLUSH },
|
|
|
|
{ GST_EVENT_FLUSH, 0 },
|
|
|
|
{ GST_EVENT_SIZE, 0 }
|
|
|
|
)
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
/* GnomeVFSSrc signals and args */
|
|
|
|
enum {
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
|
|
|
ARG_LOCATION,
|
|
|
|
ARG_BYTESPERREAD,
|
2002-09-10 18:38:22 +00:00
|
|
|
ARG_IRADIO_MODE,
|
|
|
|
ARG_IRADIO_NAME,
|
|
|
|
ARG_IRADIO_GENRE,
|
|
|
|
ARG_IRADIO_URL,
|
|
|
|
ARG_IRADIO_TITLE,
|
2001-12-23 16:42:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GType gst_gnomevfssrc_get_type(void);
|
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
static void gst_gnomevfssrc_class_init (GstGnomeVFSSrcClass *klass);
|
|
|
|
static void gst_gnomevfssrc_init (GstGnomeVFSSrc *gnomevfssrc);
|
2002-06-02 18:50:20 +00:00
|
|
|
static void gst_gnomevfssrc_dispose (GObject *object);
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
static void gst_gnomevfssrc_set_property (GObject *object, guint prop_id,
|
|
|
|
const GValue *value, GParamSpec *pspec);
|
|
|
|
static void gst_gnomevfssrc_get_property (GObject *object, guint prop_id,
|
|
|
|
GValue *value, GParamSpec *pspec);
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
static GstBuffer* gst_gnomevfssrc_get (GstPad *pad);
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
static GstElementStateReturn
|
|
|
|
gst_gnomevfssrc_change_state (GstElement *element);
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
static void gst_gnomevfssrc_close_file (GstGnomeVFSSrc *src);
|
|
|
|
static gboolean gst_gnomevfssrc_open_file (GstGnomeVFSSrc *src);
|
|
|
|
static gboolean gst_gnomevfssrc_srcpad_event (GstPad *pad, GstEvent *event);
|
2002-12-30 17:53:18 +00:00
|
|
|
static gboolean gst_gnomevfssrc_srcpad_query (GstPad *pad, GstQueryType type,
|
2002-06-02 15:43:17 +00:00
|
|
|
GstFormat *format, gint64 *value);
|
2002-09-10 18:38:22 +00:00
|
|
|
|
|
|
|
static int audiocast_init(GstGnomeVFSSrc *src);
|
|
|
|
static int audiocast_register_listener(gint *port, gint *fd);
|
|
|
|
static void audiocast_do_notifications(GstGnomeVFSSrc *src);
|
|
|
|
static gpointer audiocast_thread_run(GstGnomeVFSSrc *src);
|
|
|
|
static void audiocast_thread_kill(GstGnomeVFSSrc *src);
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
|
|
|
GType gst_gnomevfssrc_get_type(void)
|
|
|
|
{
|
|
|
|
static GType gnomevfssrc_type = 0;
|
|
|
|
|
|
|
|
if (!gnomevfssrc_type) {
|
|
|
|
static const GTypeInfo gnomevfssrc_info = {
|
2002-03-21 19:30:11 +00:00
|
|
|
sizeof(GstGnomeVFSSrcClass), NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_gnomevfssrc_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstGnomeVFSSrc),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_gnomevfssrc_init,
|
2001-12-23 16:42:33 +00:00
|
|
|
};
|
|
|
|
gnomevfssrc_type =
|
2002-03-21 19:30:11 +00:00
|
|
|
g_type_register_static(GST_TYPE_ELEMENT,
|
|
|
|
"GstGnomeVFSSrc",
|
|
|
|
&gnomevfssrc_info,
|
|
|
|
0);
|
2001-12-23 16:42:33 +00:00
|
|
|
}
|
|
|
|
return gnomevfssrc_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_gnomevfssrc_class_init(GstGnomeVFSSrcClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
|
|
|
|
|
|
|
parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
|
|
|
|
|
2002-03-18 04:41:34 +00:00
|
|
|
gst_element_class_install_std_props (
|
2001-12-23 16:42:33 +00:00
|
|
|
GST_ELEMENT_CLASS (klass),
|
|
|
|
"bytesperread", ARG_BYTESPERREAD, G_PARAM_READWRITE,
|
|
|
|
"location", ARG_LOCATION, G_PARAM_READWRITE,
|
|
|
|
NULL);
|
|
|
|
|
2002-06-02 18:50:20 +00:00
|
|
|
gobject_class->dispose = gst_gnomevfssrc_dispose;
|
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
/* icecast stuff */
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
ARG_IRADIO_MODE,
|
|
|
|
g_param_spec_boolean ("iradio-mode",
|
|
|
|
"iradio-mode",
|
|
|
|
"Enable internet radio mode (extraction of icecast/audiocast metadata)",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
ARG_IRADIO_NAME,
|
|
|
|
g_param_spec_string ("iradio-name",
|
|
|
|
"iradio-name",
|
|
|
|
"Name of the stream",
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
ARG_IRADIO_GENRE,
|
|
|
|
g_param_spec_string ("iradio-genre",
|
|
|
|
"iradio-genre",
|
|
|
|
"Genre of the stream",
|
|
|
|
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
ARG_IRADIO_URL,
|
|
|
|
g_param_spec_string ("iradio-url",
|
|
|
|
"iradio-url",
|
|
|
|
"Homepage URL for radio stream",
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
ARG_IRADIO_TITLE,
|
|
|
|
g_param_spec_string ("iradio-title",
|
|
|
|
"iradio-title",
|
|
|
|
"Name of currently playing song",
|
|
|
|
NULL,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
gstelement_class->set_property = gst_gnomevfssrc_set_property;
|
|
|
|
gstelement_class->get_property = gst_gnomevfssrc_get_property;
|
|
|
|
|
|
|
|
gstelement_class->change_state = gst_gnomevfssrc_change_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_gnomevfssrc_init(GstGnomeVFSSrc *gnomevfssrc)
|
|
|
|
{
|
|
|
|
gnomevfssrc->srcpad = gst_pad_new("src", GST_PAD_SRC);
|
|
|
|
gst_pad_set_get_function(gnomevfssrc->srcpad, gst_gnomevfssrc_get);
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_pad_set_event_mask_function (gnomevfssrc->srcpad,
|
|
|
|
gst_gnomevfssrc_get_event_mask);
|
2002-03-21 19:30:11 +00:00
|
|
|
gst_pad_set_event_function (gnomevfssrc->srcpad,
|
|
|
|
gst_gnomevfssrc_srcpad_event);
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_pad_set_query_type_function (gnomevfssrc->srcpad,
|
|
|
|
gst_gnomevfssrc_get_query_types);
|
2002-06-02 15:43:17 +00:00
|
|
|
gst_pad_set_query_function (gnomevfssrc->srcpad,
|
|
|
|
gst_gnomevfssrc_srcpad_query);
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_pad_set_formats_function (gnomevfssrc->srcpad,
|
|
|
|
gst_gnomevfssrc_get_formats);
|
2001-12-23 16:42:33 +00:00
|
|
|
gst_element_add_pad(GST_ELEMENT(gnomevfssrc), gnomevfssrc->srcpad);
|
|
|
|
|
|
|
|
gnomevfssrc->uri = NULL;
|
|
|
|
gnomevfssrc->handle = NULL;
|
|
|
|
gnomevfssrc->curoffset = 0;
|
|
|
|
gnomevfssrc->bytes_per_read = 4096;
|
|
|
|
gnomevfssrc->new_seek = FALSE;
|
2003-02-07 01:47:58 +00:00
|
|
|
gnomevfssrc->in_first_get = TRUE;
|
2002-06-02 18:50:20 +00:00
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
gnomevfssrc->icy_metaint = 0;
|
|
|
|
|
|
|
|
gnomevfssrc->iradio_mode = FALSE;
|
2003-02-07 01:47:58 +00:00
|
|
|
gnomevfssrc->http_callbacks_pushed = FALSE;
|
2002-09-10 18:38:22 +00:00
|
|
|
gnomevfssrc->icy_count = 0;
|
|
|
|
gnomevfssrc->iradio_name = NULL;
|
|
|
|
gnomevfssrc->iradio_genre = NULL;
|
|
|
|
gnomevfssrc->iradio_url = NULL;
|
|
|
|
gnomevfssrc->iradio_title = NULL;
|
|
|
|
|
2002-09-19 18:44:49 +00:00
|
|
|
gnomevfssrc->audiocast_udpdata_mutex = g_mutex_new();
|
2002-09-10 18:38:22 +00:00
|
|
|
gnomevfssrc->audiocast_queue_mutex = g_mutex_new();
|
|
|
|
gnomevfssrc->audiocast_notify_queue = NULL;
|
|
|
|
gnomevfssrc->audiocast_thread = NULL;
|
|
|
|
|
2002-06-02 18:50:20 +00:00
|
|
|
g_static_mutex_lock (&count_lock);
|
|
|
|
if (ref_count == 0) {
|
|
|
|
/* gnome vfs engine init */
|
|
|
|
if (gnome_vfs_initialized() == FALSE) {
|
|
|
|
gnome_vfs_init();
|
2002-09-15 11:28:41 +00:00
|
|
|
vfs_owner = TRUE;
|
2002-06-02 18:50:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ref_count++;
|
|
|
|
g_static_mutex_unlock (&count_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gnomevfssrc_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
g_static_mutex_lock (&count_lock);
|
|
|
|
ref_count--;
|
2002-09-15 11:28:41 +00:00
|
|
|
if (ref_count == 0 && vfs_owner) {
|
2002-06-02 18:50:20 +00:00
|
|
|
if (gnome_vfs_initialized() == TRUE) {
|
|
|
|
gnome_vfs_shutdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_static_mutex_unlock (&count_lock);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
2001-12-23 16:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void gst_gnomevfssrc_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstGnomeVFSSrc *src;
|
2002-02-21 04:30:03 +00:00
|
|
|
const gchar *location;
|
|
|
|
gchar cwd[PATH_MAX];
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail(GST_IS_GNOMEVFSSRC(object));
|
|
|
|
|
|
|
|
src = GST_GNOMEVFSSRC(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_LOCATION:
|
|
|
|
/* the element must be stopped or paused in order to do this */
|
|
|
|
g_return_if_fail((GST_STATE(src) < GST_STATE_PLAYING)
|
|
|
|
|| (GST_STATE(src) == GST_STATE_PAUSED));
|
|
|
|
|
2002-03-21 19:30:11 +00:00
|
|
|
g_free(src->filename);
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2003-02-15 04:55:04 +00:00
|
|
|
/* clear the filename if we get a NULL */
|
2001-12-23 16:42:33 +00:00
|
|
|
if (g_value_get_string (value) == NULL) {
|
2001-12-28 20:24:41 +00:00
|
|
|
gst_element_set_state(GST_ELEMENT(object), GST_STATE_NULL);
|
2001-12-23 16:42:33 +00:00
|
|
|
src->filename = NULL;
|
|
|
|
} else {
|
|
|
|
/* otherwise set the new filename */
|
2002-02-21 04:30:03 +00:00
|
|
|
location = g_value_get_string (value);
|
2002-03-19 04:10:06 +00:00
|
|
|
/* if it's not a proper uri, default to file: -- this
|
2002-02-21 04:30:03 +00:00
|
|
|
* is a crude test */
|
|
|
|
if (!strchr (location, ':'))
|
2002-07-01 21:37:21 +00:00
|
|
|
{
|
|
|
|
gchar *newloc = gnome_vfs_escape_path_string(location);
|
|
|
|
if (*newloc == '/')
|
|
|
|
src->filename = g_strdup_printf ("file://%s", newloc);
|
2002-02-21 04:30:03 +00:00
|
|
|
else
|
2002-07-01 21:37:21 +00:00
|
|
|
src->filename = g_strdup_printf ("file://%s/%s", getcwd(cwd, PATH_MAX), newloc);
|
|
|
|
g_free(newloc);
|
|
|
|
}
|
2002-02-21 04:30:03 +00:00
|
|
|
else
|
|
|
|
src->filename = g_strdup (g_value_get_string (value));
|
2001-12-23 16:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((GST_STATE(src) == GST_STATE_PAUSED)
|
|
|
|
&& (src->filename != NULL)) {
|
|
|
|
gst_gnomevfssrc_close_file(src);
|
|
|
|
gst_gnomevfssrc_open_file(src);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ARG_BYTESPERREAD:
|
|
|
|
src->bytes_per_read = g_value_get_int (value);
|
|
|
|
break;
|
2002-09-10 18:38:22 +00:00
|
|
|
case ARG_IRADIO_MODE:
|
|
|
|
src->iradio_mode = g_value_get_boolean (value);
|
|
|
|
break;
|
2001-12-23 16:42:33 +00:00
|
|
|
default:
|
2002-09-10 18:38:22 +00:00
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
2001-12-23 16:42:33 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_gnomevfssrc_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstGnomeVFSSrc *src;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail(GST_IS_GNOMEVFSSRC(object));
|
|
|
|
|
|
|
|
src = GST_GNOMEVFSSRC(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_LOCATION:
|
|
|
|
g_value_set_string (value, src->filename);
|
|
|
|
break;
|
|
|
|
case ARG_BYTESPERREAD:
|
|
|
|
g_value_set_int (value, src->bytes_per_read);
|
|
|
|
break;
|
2002-09-10 18:38:22 +00:00
|
|
|
case ARG_IRADIO_MODE:
|
|
|
|
g_value_set_boolean (value, src->iradio_mode);
|
|
|
|
break;
|
|
|
|
case ARG_IRADIO_NAME:
|
|
|
|
g_value_set_string (value, src->iradio_name);
|
|
|
|
break;
|
|
|
|
case ARG_IRADIO_GENRE:
|
|
|
|
g_value_set_string (value, src->iradio_genre);
|
|
|
|
break;
|
|
|
|
case ARG_IRADIO_URL:
|
|
|
|
g_value_set_string (value, src->iradio_url);
|
|
|
|
break;
|
|
|
|
case ARG_IRADIO_TITLE:
|
2002-09-19 18:44:49 +00:00
|
|
|
g_mutex_lock(src->audiocast_udpdata_mutex);
|
2002-09-10 18:38:22 +00:00
|
|
|
g_value_set_string (value, src->iradio_title);
|
2002-09-19 18:44:49 +00:00
|
|
|
g_mutex_unlock(src->audiocast_udpdata_mutex);
|
2002-09-10 18:38:22 +00:00
|
|
|
break;
|
2001-12-23 16:42:33 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-15 04:55:04 +00:00
|
|
|
static char *
|
|
|
|
unicodify (const char *str, int len, ...)
|
|
|
|
{
|
|
|
|
char *ret = NULL, *cset;
|
|
|
|
va_list args;
|
2003-05-21 19:56:30 +00:00
|
|
|
gsize bytes_read, bytes_written;
|
2003-02-15 04:55:04 +00:00
|
|
|
|
|
|
|
if (g_utf8_validate (str, len, NULL))
|
|
|
|
return g_strndup (str, len >= 0 ? len : strlen (str));
|
|
|
|
|
|
|
|
va_start (args, len);
|
|
|
|
while ((cset = va_arg (args, char *)) != NULL)
|
|
|
|
{
|
|
|
|
if (!strcmp (cset, "locale"))
|
|
|
|
ret = g_locale_to_utf8 (str, len, &bytes_read,
|
|
|
|
&bytes_written, NULL);
|
|
|
|
else
|
|
|
|
ret = g_convert (str, len, "UTF-8", cset,
|
|
|
|
&bytes_read, &bytes_written, NULL);
|
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
gst_gnomevfssrc_unicodify (const char *str)
|
|
|
|
{
|
|
|
|
return unicodify (str, -1, "locale", "ISO-8859-1", NULL);
|
|
|
|
}
|
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
/*
|
|
|
|
* icecast/audiocast metadata extraction support code
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int audiocast_init(GstGnomeVFSSrc *src)
|
|
|
|
{
|
|
|
|
int pipefds[2];
|
|
|
|
GError *error = NULL;
|
|
|
|
if (!src->iradio_mode)
|
|
|
|
return TRUE;
|
|
|
|
GST_DEBUG (0,"audiocast: registering listener");
|
|
|
|
if (audiocast_register_listener(&src->audiocast_port, &src->audiocast_fd) < 0)
|
|
|
|
{
|
|
|
|
gst_element_error(GST_ELEMENT(src),
|
|
|
|
"opening vfs file \"%s\" (%s)",
|
|
|
|
src->filename,
|
|
|
|
"unable to register UDP port");
|
|
|
|
close(src->audiocast_fd);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
GST_DEBUG (0,"audiocast: creating pipe");
|
|
|
|
src->audiocast_notify_queue = NULL;
|
|
|
|
if (pipe(pipefds) < 0)
|
|
|
|
{
|
|
|
|
close(src->audiocast_fd);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
src->audiocast_thread_die_infd = pipefds[0];
|
|
|
|
src->audiocast_thread_die_outfd = pipefds[1];
|
|
|
|
GST_DEBUG (0,"audiocast: creating audiocast thread");
|
|
|
|
src->audiocast_thread = g_thread_create((GThreadFunc) audiocast_thread_run, src, TRUE, &error);
|
|
|
|
if (error != NULL) {
|
|
|
|
gst_element_error(GST_ELEMENT(src),
|
|
|
|
"opening vfs file \"%s\" (unable to create thread: %s)",
|
|
|
|
src->filename,
|
|
|
|
error->message);
|
|
|
|
close(src->audiocast_fd);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int audiocast_register_listener(gint *port, gint *fd)
|
|
|
|
{
|
|
|
|
struct sockaddr_in sin;
|
|
|
|
int sock;
|
|
|
|
socklen_t sinlen = sizeof (struct sockaddr_in);
|
|
|
|
|
|
|
|
GST_DEBUG (0,"audiocast: estabilishing UDP listener");
|
|
|
|
|
|
|
|
if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
|
|
|
|
goto lose;
|
|
|
|
|
|
|
|
memset(&sin, 0, sinlen);
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_addr.s_addr = g_htonl(INADDR_ANY);
|
|
|
|
|
|
|
|
if (bind(sock, (struct sockaddr *)&sin, sinlen) < 0)
|
|
|
|
goto lose_and_close;
|
|
|
|
|
|
|
|
memset(&sin, 0, sinlen);
|
|
|
|
if (getsockname(sock, (struct sockaddr *)&sin, &sinlen) < 0)
|
|
|
|
goto lose_and_close;
|
|
|
|
|
|
|
|
GST_DEBUG (0,"audiocast: listening on local %s:%d", inet_ntoa(sin.sin_addr), g_ntohs(sin.sin_port));
|
|
|
|
|
|
|
|
*port = g_ntohs(sin.sin_port);
|
|
|
|
*fd = sock;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
lose_and_close:
|
|
|
|
close(sock);
|
|
|
|
lose:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void audiocast_do_notifications(GstGnomeVFSSrc *src)
|
|
|
|
{
|
|
|
|
/* Send any pending notifications we got from the UDP thread. */
|
|
|
|
if (src->iradio_mode)
|
|
|
|
{
|
|
|
|
GList *entry;
|
|
|
|
g_mutex_lock(src->audiocast_queue_mutex);
|
|
|
|
for (entry = src->audiocast_notify_queue; entry; entry = entry->next)
|
|
|
|
g_object_notify(G_OBJECT (src), (const gchar *) entry->data);
|
|
|
|
g_list_free(src->audiocast_notify_queue);
|
|
|
|
src->audiocast_notify_queue = NULL;
|
|
|
|
g_mutex_unlock(src->audiocast_queue_mutex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gpointer audiocast_thread_run(GstGnomeVFSSrc *src)
|
|
|
|
{
|
|
|
|
char buf[1025], **lines;
|
|
|
|
gsize len;
|
|
|
|
fd_set fdset, readset;
|
|
|
|
struct sockaddr_in from;
|
|
|
|
socklen_t fromlen = sizeof(struct sockaddr_in);
|
|
|
|
|
|
|
|
FD_ZERO(&fdset);
|
|
|
|
|
|
|
|
FD_SET(src->audiocast_fd, &fdset);
|
|
|
|
FD_SET(src->audiocast_thread_die_infd, &fdset);
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
GST_DEBUG (0,"audiocast thread: dropping into select");
|
|
|
|
readset = fdset;
|
|
|
|
if (select(FD_SETSIZE, &readset, NULL, NULL, NULL) < 0) {
|
|
|
|
perror("select");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (FD_ISSET(src->audiocast_thread_die_infd, &readset)) {
|
|
|
|
char buf[1];
|
|
|
|
GST_DEBUG (0,"audiocast thread: got die character");
|
|
|
|
read(src->audiocast_thread_die_infd, buf, 1);
|
|
|
|
close(src->audiocast_thread_die_infd);
|
|
|
|
close(src->audiocast_fd);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
GST_DEBUG (0,"audiocast thread: reading data");
|
|
|
|
len = recvfrom(src->audiocast_fd, buf, sizeof(buf) - 1, 0, (struct sockaddr *) &from, &fromlen);
|
|
|
|
if (len < 0 && errno == EAGAIN)
|
|
|
|
continue;
|
|
|
|
else if (len >= 0)
|
|
|
|
{
|
|
|
|
int i;
|
2003-02-15 04:55:04 +00:00
|
|
|
char *valptr, *value;
|
2002-09-10 18:38:22 +00:00
|
|
|
buf[len] = '\0';
|
|
|
|
lines = g_strsplit(buf, "\n", 0);
|
|
|
|
if (!lines)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
for (i = 0; lines[i]; i++) {
|
|
|
|
while ((lines[i][strlen(lines[i]) - 1] == '\n') ||
|
|
|
|
(lines[i][strlen(lines[i]) - 1] == '\r'))
|
|
|
|
lines[i][strlen(lines[i]) - 1] = '\0';
|
|
|
|
|
|
|
|
valptr = strchr(lines[i], ':');
|
|
|
|
|
|
|
|
if (!valptr)
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
valptr++;
|
|
|
|
|
|
|
|
g_strstrip(valptr);
|
|
|
|
if (!strlen(valptr))
|
|
|
|
continue;
|
2003-02-15 04:55:04 +00:00
|
|
|
|
|
|
|
value = gst_gnomevfssrc_unicodify (valptr);
|
|
|
|
if (!value)
|
|
|
|
{
|
|
|
|
g_print ("Unable to convert \"%s\" to UTF-8!\n", valptr);
|
|
|
|
continue;
|
|
|
|
}
|
2002-09-10 18:38:22 +00:00
|
|
|
|
|
|
|
if (!strncmp(lines[i], "x-audiocast-streamtitle", 23)) {
|
2002-09-19 18:44:49 +00:00
|
|
|
g_mutex_lock(src->audiocast_udpdata_mutex);
|
2003-02-15 04:55:04 +00:00
|
|
|
g_free(src->iradio_title);
|
|
|
|
src->iradio_title = value;
|
2002-09-19 18:44:49 +00:00
|
|
|
g_mutex_unlock(src->audiocast_udpdata_mutex);
|
2003-02-15 04:55:04 +00:00
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
g_mutex_lock(src->audiocast_queue_mutex);
|
|
|
|
src->audiocast_notify_queue = g_list_append(src->audiocast_notify_queue, "iradio-title");
|
|
|
|
GST_DEBUG(0,"audiocast title: %s\n", src->iradio_title);
|
|
|
|
g_mutex_unlock(src->audiocast_queue_mutex);
|
2002-09-19 18:44:49 +00:00
|
|
|
} else if (!strncmp(lines[i], "x-audiocast-streamurl", 21)) {
|
|
|
|
g_mutex_lock(src->audiocast_udpdata_mutex);
|
2003-02-15 04:55:04 +00:00
|
|
|
g_free(src->iradio_url);
|
|
|
|
src->iradio_url = value;
|
2002-09-19 18:44:49 +00:00
|
|
|
g_mutex_unlock(src->audiocast_udpdata_mutex);
|
2003-02-15 04:55:04 +00:00
|
|
|
|
2002-09-19 18:44:49 +00:00
|
|
|
g_mutex_lock(src->audiocast_queue_mutex);
|
|
|
|
src->audiocast_notify_queue = g_list_append(src->audiocast_notify_queue, "iradio-url");
|
|
|
|
GST_DEBUG(0,"audiocast url: %s\n", src->iradio_title);
|
|
|
|
g_mutex_unlock(src->audiocast_queue_mutex);
|
2002-09-10 18:38:22 +00:00
|
|
|
} else if (!strncmp(lines[i], "x-audiocast-udpseqnr", 20)) {
|
|
|
|
gchar outbuf[120];
|
2003-02-15 04:55:04 +00:00
|
|
|
|
|
|
|
sprintf(outbuf, "x-audiocast-ack: %ld \r\n", atol(value));
|
|
|
|
g_free (value);
|
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
if (sendto(src->audiocast_fd, outbuf, strlen(outbuf), 0, (struct sockaddr *) &from, fromlen) <= 0) {
|
2003-02-15 04:55:04 +00:00
|
|
|
g_print("Error sending response to server: %s\n", strerror(errno));
|
2002-09-10 18:38:22 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
GST_DEBUG(0,"sent audiocast ack: %s\n", outbuf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev(lines);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void audiocast_thread_kill(GstGnomeVFSSrc *src)
|
|
|
|
{
|
|
|
|
if (!src->audiocast_thread)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
We rely on this hack to kill the
|
|
|
|
audiocast thread. If we get icecast
|
|
|
|
metadata, then we don't need the
|
|
|
|
audiocast metadata too.
|
|
|
|
*/
|
|
|
|
GST_DEBUG (0,"audiocast: writing die character");
|
|
|
|
write(src->audiocast_thread_die_outfd, "q", 1);
|
|
|
|
close(src->audiocast_thread_die_outfd);
|
|
|
|
GST_DEBUG (0,"audiocast: joining thread");
|
|
|
|
g_thread_join(src->audiocast_thread);
|
|
|
|
src->audiocast_thread = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gnomevfssrc_send_additional_headers_callback (gconstpointer in,
|
|
|
|
gsize in_size,
|
|
|
|
gpointer out,
|
|
|
|
gsize out_size,
|
|
|
|
gpointer callback_data)
|
|
|
|
{
|
|
|
|
GstGnomeVFSSrc *src = GST_GNOMEVFSSRC (callback_data);
|
|
|
|
GnomeVFSModuleCallbackAdditionalHeadersOut *out_args =
|
|
|
|
(GnomeVFSModuleCallbackAdditionalHeadersOut *)out;
|
|
|
|
|
|
|
|
if (!src->iradio_mode)
|
|
|
|
return;
|
|
|
|
GST_DEBUG(0,"sending headers\n");
|
|
|
|
|
|
|
|
out_args->headers = g_list_append (out_args->headers,
|
|
|
|
g_strdup ("icy-metadata:1\r\n"));
|
|
|
|
out_args->headers = g_list_append (out_args->headers,
|
|
|
|
g_strdup_printf ("x-audiocast-udpport: %d\r\n", src->audiocast_port));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gnomevfssrc_received_headers_callback (gconstpointer in,
|
|
|
|
gsize in_size,
|
|
|
|
gpointer out,
|
|
|
|
gsize out_size,
|
|
|
|
gpointer callback_data)
|
|
|
|
{
|
|
|
|
GList *i;
|
|
|
|
gint icy_metaint;
|
|
|
|
GstGnomeVFSSrc *src = GST_GNOMEVFSSRC (callback_data);
|
|
|
|
GnomeVFSModuleCallbackReceivedHeadersIn *in_args =
|
|
|
|
(GnomeVFSModuleCallbackReceivedHeadersIn *)in;
|
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
/* This is only used for internet radio stuff right now */
|
2002-09-10 18:38:22 +00:00
|
|
|
if (!src->iradio_mode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = in_args->headers; i; i = i->next) {
|
|
|
|
char *data = (char *) i->data;
|
2003-02-07 01:47:58 +00:00
|
|
|
char *key = data;
|
2002-09-10 18:38:22 +00:00
|
|
|
char *value = strchr(data, ':');
|
|
|
|
if (!value)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
value++;
|
|
|
|
g_strstrip(value);
|
|
|
|
if (!strlen(value))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Icecast stuff */
|
|
|
|
if (!strncmp (data, "icy-metaint:", 12)) /* ugh */
|
|
|
|
{
|
|
|
|
sscanf (data + 12, "%d", &icy_metaint);
|
|
|
|
src->icy_metaint = icy_metaint;
|
2003-02-07 01:47:58 +00:00
|
|
|
GST_DEBUG (0,"got icy-metaint %d, killing audiocast thread",
|
|
|
|
src->icy_metaint);
|
2002-09-10 18:38:22 +00:00
|
|
|
audiocast_thread_kill(src);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strncmp(data, "icy-", 4))
|
|
|
|
key = data + 4;
|
|
|
|
else if (!strncmp(data, "x-audiocast-", 12))
|
|
|
|
key = data + 12;
|
|
|
|
else
|
|
|
|
continue;
|
|
|
|
|
2002-09-19 18:44:49 +00:00
|
|
|
GST_DEBUG (0,"key: %s", key);
|
2002-09-10 18:38:22 +00:00
|
|
|
if (!strncmp (key, "name", 4)) {
|
2003-02-15 04:55:04 +00:00
|
|
|
g_free (src->iradio_name);
|
|
|
|
src->iradio_name = gst_gnomevfssrc_unicodify (value);
|
2002-09-10 18:38:22 +00:00
|
|
|
if (src->iradio_name)
|
2003-02-15 04:55:04 +00:00
|
|
|
g_object_notify (G_OBJECT (src), "iradio-name");
|
2002-09-10 18:38:22 +00:00
|
|
|
} else if (!strncmp (key, "genre", 5)) {
|
2003-02-15 04:55:04 +00:00
|
|
|
g_free (src->iradio_genre);
|
|
|
|
src->iradio_genre = gst_gnomevfssrc_unicodify (value);
|
2002-09-10 18:38:22 +00:00
|
|
|
if (src->iradio_genre)
|
2003-02-15 04:55:04 +00:00
|
|
|
g_object_notify (G_OBJECT (src), "iradio-genre");
|
2002-11-25 16:36:11 +00:00
|
|
|
} else if (!strncmp (key, "url", 3)) {
|
2003-02-15 04:55:04 +00:00
|
|
|
g_free (src->iradio_url);
|
|
|
|
src->iradio_url = gst_gnomevfssrc_unicodify (value);
|
2002-09-10 18:38:22 +00:00
|
|
|
if (src->iradio_url)
|
2003-02-15 04:55:04 +00:00
|
|
|
g_object_notify (G_OBJECT (src), "iradio-url");
|
2002-09-10 18:38:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gnomevfssrc_push_callbacks (GstGnomeVFSSrc *gnomevfssrc)
|
|
|
|
{
|
2003-02-07 01:47:58 +00:00
|
|
|
if (gnomevfssrc->http_callbacks_pushed)
|
2002-09-10 18:38:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
GST_DEBUG (0,"pushing callbacks");
|
|
|
|
gnome_vfs_module_callback_push (GNOME_VFS_MODULE_CALLBACK_HTTP_SEND_ADDITIONAL_HEADERS,
|
|
|
|
gst_gnomevfssrc_send_additional_headers_callback,
|
|
|
|
gnomevfssrc,
|
|
|
|
NULL);
|
|
|
|
gnome_vfs_module_callback_push (GNOME_VFS_MODULE_CALLBACK_HTTP_RECEIVED_HEADERS,
|
|
|
|
gst_gnomevfssrc_received_headers_callback,
|
|
|
|
gnomevfssrc,
|
|
|
|
NULL);
|
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
gnomevfssrc->http_callbacks_pushed = TRUE;
|
2002-09-10 18:38:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gnomevfssrc_pop_callbacks (GstGnomeVFSSrc *gnomevfssrc)
|
|
|
|
{
|
2003-02-07 01:47:58 +00:00
|
|
|
if (!gnomevfssrc->http_callbacks_pushed)
|
2002-09-10 18:38:22 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
GST_DEBUG (0,"popping callbacks");
|
|
|
|
gnome_vfs_module_callback_pop (GNOME_VFS_MODULE_CALLBACK_HTTP_SEND_ADDITIONAL_HEADERS);
|
|
|
|
gnome_vfs_module_callback_pop (GNOME_VFS_MODULE_CALLBACK_HTTP_RECEIVED_HEADERS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_gnomevfssrc_get_icy_metadata (GstGnomeVFSSrc *src)
|
|
|
|
{
|
|
|
|
GnomeVFSFileSize length = 0;
|
|
|
|
GnomeVFSResult res;
|
|
|
|
gint metadata_length;
|
|
|
|
guchar foobyte;
|
|
|
|
guchar *data;
|
|
|
|
guchar *pos;
|
|
|
|
gchar **tags;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
GST_DEBUG (0,"reading icecast metadata");
|
|
|
|
|
|
|
|
while (length == 0) {
|
|
|
|
res = gnome_vfs_read (src->handle, &foobyte, 1, &length);
|
|
|
|
if (res != GNOME_VFS_OK)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
metadata_length = foobyte * 16;
|
|
|
|
|
|
|
|
if (metadata_length == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
data = g_new (gchar, metadata_length + 1);
|
|
|
|
pos = data;
|
|
|
|
|
|
|
|
while (pos - data < metadata_length) {
|
|
|
|
res = gnome_vfs_read (src->handle, pos,
|
|
|
|
metadata_length - (pos - data),
|
|
|
|
&length);
|
|
|
|
/* FIXME: better error handling here? */
|
|
|
|
if (res != GNOME_VFS_OK) {
|
|
|
|
g_free (data);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos += length;
|
|
|
|
}
|
|
|
|
|
|
|
|
data[metadata_length] = 0;
|
|
|
|
tags = g_strsplit(data, "';", 0);
|
|
|
|
|
|
|
|
for (i = 0; tags[i]; i++)
|
|
|
|
{
|
2003-02-07 01:47:58 +00:00
|
|
|
if (!g_ascii_strncasecmp(tags[i], "StreamTitle=", 12))
|
2002-09-10 18:38:22 +00:00
|
|
|
{
|
2003-02-15 04:55:04 +00:00
|
|
|
g_free (src->iradio_title);
|
|
|
|
src->iradio_title = gst_gnomevfssrc_unicodify (tags[i]+13);
|
2002-09-10 18:38:22 +00:00
|
|
|
if (src->iradio_title)
|
2003-02-15 04:55:04 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG(0, "sending notification on icecast title");
|
|
|
|
g_object_notify (G_OBJECT (src), "iradio-title");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_print ("Unable to convert icecast title \"%s\" to UTF-8!\n",
|
|
|
|
tags[i]+13);
|
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
}
|
2003-02-07 01:47:58 +00:00
|
|
|
if (!g_ascii_strncasecmp(tags[i], "StreamUrl=", 10))
|
2002-09-19 18:44:49 +00:00
|
|
|
{
|
2003-02-15 04:55:04 +00:00
|
|
|
g_free (src->iradio_url);
|
|
|
|
src->iradio_url = gst_gnomevfssrc_unicodify (tags[i]+11);
|
2002-09-19 18:44:49 +00:00
|
|
|
if (src->iradio_url)
|
2003-02-15 04:55:04 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG(0, "sending notification on icecast url");
|
|
|
|
g_object_notify (G_OBJECT (src), "iradio-url");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
g_print ("Unable to convert icecast url \"%s\" to UTF-8!\n",
|
|
|
|
tags[i]+11);
|
2002-09-19 18:44:49 +00:00
|
|
|
}
|
2002-09-10 18:38:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_strfreev(tags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* end of icecast/audiocast metadata extraction support code */
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
/**
|
|
|
|
* gst_gnomevfssrc_get:
|
|
|
|
* @pad: #GstPad to push a buffer from
|
|
|
|
*
|
|
|
|
* Push a new buffer from the gnomevfssrc at the current offset.
|
|
|
|
*/
|
|
|
|
static GstBuffer *gst_gnomevfssrc_get(GstPad *pad)
|
|
|
|
{
|
|
|
|
GstGnomeVFSSrc *src;
|
|
|
|
GnomeVFSResult result = 0;
|
|
|
|
GstBuffer *buf;
|
|
|
|
GnomeVFSFileSize readbytes;
|
2003-04-11 00:59:50 +00:00
|
|
|
guint8 *data;
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail(pad != NULL, NULL);
|
|
|
|
src = GST_GNOMEVFSSRC(gst_pad_get_parent(pad));
|
|
|
|
g_return_val_if_fail(GST_FLAG_IS_SET(src, GST_GNOMEVFSSRC_OPEN),
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
/* deal with EOF state */
|
|
|
|
if ((src->curoffset >= src->size) && (src->size != 0))
|
|
|
|
{
|
2001-12-28 20:24:41 +00:00
|
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
2001-12-26 23:56:00 +00:00
|
|
|
return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
|
2001-12-23 16:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create the buffer */
|
|
|
|
/* FIXME: should eventually use a bufferpool for this */
|
|
|
|
buf = gst_buffer_new();
|
|
|
|
g_return_val_if_fail(buf, NULL);
|
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
audiocast_do_notifications(src);
|
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
if (src->iradio_mode && src->icy_metaint > 0) {
|
2002-09-10 18:38:22 +00:00
|
|
|
GST_BUFFER_DATA (buf) = g_malloc0 (src->icy_metaint);
|
2003-04-11 00:59:50 +00:00
|
|
|
data = GST_BUFFER_DATA (buf);
|
2002-09-10 18:38:22 +00:00
|
|
|
g_return_val_if_fail (GST_BUFFER_DATA (buf) != NULL, NULL);
|
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
GST_BUFFER_SIZE (buf) = 0;
|
|
|
|
/* FIXME GROSS HACK: We try to read in at least 8000
|
|
|
|
* bytes of data so that mp3 typefinding will work. */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
GST_DEBUG (0,"doing read: icy_count: %" G_GINT64_FORMAT, src->icy_count);
|
2003-04-11 00:59:50 +00:00
|
|
|
result = gnome_vfs_read (src->handle, data,
|
2003-02-07 01:47:58 +00:00
|
|
|
src->icy_metaint - src->icy_count,
|
|
|
|
&readbytes);
|
|
|
|
|
|
|
|
/* EOS? */
|
|
|
|
if (readbytes == 0) {
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
|
|
|
src->in_first_get = FALSE;
|
|
|
|
return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
|
|
|
|
}
|
|
|
|
|
|
|
|
src->icy_count += readbytes;
|
|
|
|
GST_BUFFER_OFFSET (buf) = src->curoffset;
|
|
|
|
GST_BUFFER_SIZE (buf) += readbytes;
|
2003-04-11 00:59:50 +00:00
|
|
|
data += readbytes;
|
2003-02-07 01:47:58 +00:00
|
|
|
src->curoffset += readbytes;
|
|
|
|
|
|
|
|
if (src->icy_count == src->icy_metaint) {
|
|
|
|
gst_gnomevfssrc_get_icy_metadata (src);
|
|
|
|
src->icy_count = 0;
|
|
|
|
}
|
|
|
|
} while (src->in_first_get
|
|
|
|
&& GST_BUFFER_OFFSET (buf) < 8000 &&
|
|
|
|
src->icy_metaint - src->icy_count >= 8000);
|
2003-04-20 18:44:34 +00:00
|
|
|
src->in_first_get = FALSE;
|
2001-12-23 16:42:33 +00:00
|
|
|
} else {
|
|
|
|
/* allocate the space for the buffer data */
|
|
|
|
GST_BUFFER_DATA(buf) = g_malloc(src->bytes_per_read);
|
|
|
|
g_return_val_if_fail(GST_BUFFER_DATA(buf) != NULL, NULL);
|
|
|
|
|
|
|
|
if (src->new_seek)
|
|
|
|
{
|
2002-06-02 15:43:17 +00:00
|
|
|
GstEvent *event;
|
|
|
|
|
2002-06-02 18:50:20 +00:00
|
|
|
gst_buffer_unref (buf);
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0,"new seek %" G_GINT64_FORMAT, src->curoffset);
|
2001-12-23 16:42:33 +00:00
|
|
|
src->new_seek = FALSE;
|
2002-06-02 15:43:17 +00:00
|
|
|
|
|
|
|
GST_DEBUG (GST_CAT_EVENT, "gnomevfssrc sending discont");
|
|
|
|
event = gst_event_new_discontinuous (FALSE, GST_FORMAT_BYTES, src->curoffset, NULL);
|
|
|
|
src->need_flush = FALSE;
|
2002-06-02 18:50:20 +00:00
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
return GST_BUFFER (event);
|
2001-12-23 16:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
result = gnome_vfs_read(src->handle, GST_BUFFER_DATA(buf),
|
|
|
|
src->bytes_per_read, &readbytes);
|
|
|
|
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG(0, "read: %s, readbytes: %" G_GINT64_FORMAT,
|
2001-12-23 16:42:33 +00:00
|
|
|
gnome_vfs_result_to_string(result), readbytes);
|
|
|
|
/* deal with EOS */
|
|
|
|
if (readbytes == 0)
|
|
|
|
{
|
|
|
|
gst_buffer_unref(buf);
|
2001-12-26 23:56:00 +00:00
|
|
|
|
2001-12-28 20:24:41 +00:00
|
|
|
gst_element_set_eos (GST_ELEMENT (src));
|
2001-12-26 23:56:00 +00:00
|
|
|
|
|
|
|
return GST_BUFFER (gst_event_new (GST_EVENT_EOS));
|
2001-12-23 16:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_BUFFER_OFFSET(buf) = src->curoffset;
|
|
|
|
GST_BUFFER_SIZE(buf) = readbytes;
|
|
|
|
src->curoffset += readbytes;
|
|
|
|
}
|
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (buf) = -1;
|
2003-05-30 21:42:03 +00:00
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
/* we're done, return the buffer */
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
/* open the file, do stuff necessary to go to READY state */
|
2001-12-23 16:42:33 +00:00
|
|
|
static gboolean gst_gnomevfssrc_open_file(GstGnomeVFSSrc *src)
|
|
|
|
{
|
|
|
|
GnomeVFSResult result;
|
2003-02-07 01:47:58 +00:00
|
|
|
GnomeVFSFileInfo *info;
|
2001-12-23 16:42:33 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail(!GST_FLAG_IS_SET(src, GST_GNOMEVFSSRC_OPEN),
|
|
|
|
FALSE);
|
|
|
|
|
|
|
|
/* create the uri */
|
|
|
|
src->uri = gnome_vfs_uri_new(src->filename);
|
|
|
|
if (!src->uri) {
|
2003-02-07 01:47:58 +00:00
|
|
|
gst_element_error(GST_ELEMENT(src), "creating uri \"%s\" (%s)",
|
|
|
|
src->filename, strerror (errno));
|
2001-12-23 16:42:33 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
if (!audiocast_init(src))
|
|
|
|
return FALSE;
|
2002-09-10 18:38:22 +00:00
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
gst_gnomevfssrc_push_callbacks (src);
|
|
|
|
|
|
|
|
result = gnome_vfs_open_uri(&(src->handle), src->uri,
|
|
|
|
GNOME_VFS_OPEN_READ);
|
|
|
|
if (result != GNOME_VFS_OK)
|
|
|
|
{
|
|
|
|
gst_gnomevfssrc_pop_callbacks (src);
|
|
|
|
audiocast_thread_kill(src);
|
|
|
|
gst_element_error(GST_ELEMENT(src),
|
2001-12-26 23:56:00 +00:00
|
|
|
"opening vfs file \"%s\" (%s)",
|
2003-02-07 01:47:58 +00:00
|
|
|
src->filename,
|
|
|
|
gnome_vfs_result_to_string(result));
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
info = gnome_vfs_file_info_new ();
|
|
|
|
if (gnome_vfs_get_file_info_from_handle (src->handle, info,
|
2003-05-30 21:42:03 +00:00
|
|
|
GNOME_VFS_FILE_INFO_DEFAULT)
|
2003-02-07 01:47:58 +00:00
|
|
|
== GNOME_VFS_OK)
|
|
|
|
{
|
|
|
|
if (info->valid_fields & GNOME_VFS_FILE_INFO_FIELDS_SIZE)
|
|
|
|
src->size = info->size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
GST_DEBUG (0, "getting info failed: %s", gnome_vfs_result_to_string (result));
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
gnome_vfs_file_info_unref(info);
|
2002-09-10 18:38:22 +00:00
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
GST_DEBUG(0, "size %" G_GINT64_FORMAT, src->size);
|
|
|
|
|
|
|
|
audiocast_do_notifications(src);
|
|
|
|
|
|
|
|
GST_DEBUG(0, "open result: %s", gnome_vfs_result_to_string (result));
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2003-04-20 18:44:34 +00:00
|
|
|
src->in_first_get = TRUE;
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
GST_FLAG_SET(src, GST_GNOMEVFSSRC_OPEN);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gst_gnomevfssrc_close_file(GstGnomeVFSSrc *src)
|
|
|
|
{
|
|
|
|
g_return_if_fail(GST_FLAG_IS_SET(src, GST_GNOMEVFSSRC_OPEN));
|
|
|
|
|
2002-09-10 18:38:22 +00:00
|
|
|
gst_gnomevfssrc_pop_callbacks (src);
|
|
|
|
audiocast_thread_kill(src);
|
|
|
|
|
2003-02-07 01:47:58 +00:00
|
|
|
gnome_vfs_close(src->handle);
|
2001-12-23 16:42:33 +00:00
|
|
|
|
2002-06-02 18:50:20 +00:00
|
|
|
gnome_vfs_uri_unref(src->uri);
|
2001-12-23 16:42:33 +00:00
|
|
|
src->size = 0;
|
|
|
|
src->curoffset = 0;
|
|
|
|
src->new_seek = FALSE;
|
|
|
|
|
|
|
|
GST_FLAG_UNSET(src, GST_GNOMEVFSSRC_OPEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElementStateReturn gst_gnomevfssrc_change_state(GstElement *element)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail(GST_IS_GNOMEVFSSRC(element),
|
|
|
|
GST_STATE_FAILURE);
|
|
|
|
|
2002-03-21 19:30:11 +00:00
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
2002-06-02 15:43:17 +00:00
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
2001-12-23 16:42:33 +00:00
|
|
|
if (!GST_FLAG_IS_SET(element, GST_GNOMEVFSSRC_OPEN)) {
|
|
|
|
if (!gst_gnomevfssrc_open_file
|
2002-03-21 19:30:11 +00:00
|
|
|
(GST_GNOMEVFSSRC(element)))
|
2001-12-23 16:42:33 +00:00
|
|
|
return GST_STATE_FAILURE;
|
|
|
|
}
|
2002-03-21 19:30:11 +00:00
|
|
|
break;
|
2002-06-02 15:43:17 +00:00
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
2001-12-23 16:42:33 +00:00
|
|
|
if (GST_FLAG_IS_SET(element, GST_GNOMEVFSSRC_OPEN))
|
|
|
|
gst_gnomevfssrc_close_file(GST_GNOMEVFSSRC
|
2002-03-21 19:30:11 +00:00
|
|
|
(element));
|
|
|
|
break;
|
2002-06-02 15:43:17 +00:00
|
|
|
case GST_STATE_NULL_TO_READY:
|
|
|
|
case GST_STATE_READY_TO_NULL:
|
2002-03-21 19:30:11 +00:00
|
|
|
default:
|
|
|
|
break;
|
2001-12-23 16:42:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (GST_ELEMENT_CLASS(parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS(parent_class)->
|
|
|
|
change_state(element);
|
|
|
|
|
|
|
|
return GST_STATE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean plugin_init(GModule *module, GstPlugin *plugin)
|
|
|
|
{
|
|
|
|
GstElementFactory *factory;
|
|
|
|
|
|
|
|
/* create an elementfactory for the aasink element */
|
|
|
|
factory =
|
2002-04-11 20:42:27 +00:00
|
|
|
gst_element_factory_new("gnomevfssrc", GST_TYPE_GNOMEVFSSRC,
|
2001-12-23 16:42:33 +00:00
|
|
|
&gst_gnomevfssrc_details);
|
|
|
|
g_return_val_if_fail(factory != NULL, FALSE);
|
|
|
|
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-07-29 19:23:20 +00:00
|
|
|
|
2002-06-02 15:43:17 +00:00
|
|
|
static gboolean
|
2002-12-30 17:53:18 +00:00
|
|
|
gst_gnomevfssrc_srcpad_query (GstPad *pad, GstQueryType type,
|
2002-06-02 15:43:17 +00:00
|
|
|
GstFormat *format, gint64 *value)
|
|
|
|
{
|
|
|
|
GstGnomeVFSSrc *src = GST_GNOMEVFSSRC (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (type) {
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_TOTAL:
|
2002-06-02 15:43:17 +00:00
|
|
|
if (*format != GST_FORMAT_BYTES) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
*value = src->size;
|
|
|
|
break;
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_POSITION:
|
2002-06-02 15:43:17 +00:00
|
|
|
if (*format != GST_FORMAT_BYTES) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
*value = src->curoffset;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-03-21 19:30:11 +00:00
|
|
|
static gboolean
|
|
|
|
gst_gnomevfssrc_srcpad_event (GstPad *pad, GstEvent *event)
|
|
|
|
{
|
|
|
|
GstGnomeVFSSrc *src = GST_GNOMEVFSSRC(GST_PAD_PARENT(pad));
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_SEEK:
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
2002-06-02 15:43:17 +00:00
|
|
|
gint64 desired_offset;
|
2003-02-07 21:55:43 +00:00
|
|
|
GnomeVFSResult result;
|
2002-06-02 15:43:17 +00:00
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
if (GST_EVENT_SEEK_FORMAT (event) != GST_FORMAT_BYTES) {
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_event_unref (event);
|
2002-05-26 21:59:22 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
switch (GST_EVENT_SEEK_METHOD (event)) {
|
|
|
|
case GST_SEEK_METHOD_SET:
|
2002-06-02 15:43:17 +00:00
|
|
|
desired_offset = (guint64) GST_EVENT_SEEK_OFFSET (event);
|
2002-03-21 19:30:11 +00:00
|
|
|
break;
|
2002-05-26 21:59:22 +00:00
|
|
|
case GST_SEEK_METHOD_CUR:
|
2002-06-02 15:43:17 +00:00
|
|
|
desired_offset = src->curoffset + GST_EVENT_SEEK_OFFSET (event);
|
2002-03-21 19:30:11 +00:00
|
|
|
break;
|
2002-05-26 21:59:22 +00:00
|
|
|
case GST_SEEK_METHOD_END:
|
2002-06-02 15:43:17 +00:00
|
|
|
desired_offset = src->size - ABS (GST_EVENT_SEEK_OFFSET (event));
|
2002-03-21 19:30:11 +00:00
|
|
|
break;
|
|
|
|
default:
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_event_unref (event);
|
2002-03-21 19:30:11 +00:00
|
|
|
return FALSE;
|
|
|
|
break;
|
|
|
|
}
|
2003-02-07 01:47:58 +00:00
|
|
|
|
|
|
|
result = gnome_vfs_seek(src->handle,
|
2002-06-02 15:43:17 +00:00
|
|
|
GNOME_VFS_SEEK_START, desired_offset);
|
2003-02-07 01:47:58 +00:00
|
|
|
GST_DEBUG(0, "new_seek: %s",
|
|
|
|
gnome_vfs_result_to_string(result));
|
|
|
|
|
|
|
|
if (result != GNOME_VFS_OK) {
|
|
|
|
gst_event_unref (event);
|
|
|
|
return FALSE;
|
2002-06-02 15:43:17 +00:00
|
|
|
}
|
|
|
|
src->curoffset = desired_offset;
|
|
|
|
src->new_seek = TRUE;
|
2002-05-26 21:59:22 +00:00
|
|
|
src->need_flush = GST_EVENT_SEEK_FLAGS (event) & GST_SEEK_FLAG_FLUSH;
|
2002-03-21 19:30:11 +00:00
|
|
|
break;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
2002-06-16 21:57:23 +00:00
|
|
|
case GST_EVENT_SIZE:
|
|
|
|
if (GST_EVENT_SIZE_FORMAT (event) != GST_FORMAT_BYTES) {
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_event_unref (event);
|
2002-06-16 21:57:23 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
src->bytes_per_read = GST_EVENT_SIZE_VALUE (event);
|
|
|
|
g_object_notify (G_OBJECT (src), "bytesperread");
|
|
|
|
break;
|
|
|
|
|
2002-03-21 19:30:11 +00:00
|
|
|
case GST_EVENT_FLUSH:
|
|
|
|
src->need_flush = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_event_unref (event);
|
2002-03-21 19:30:11 +00:00
|
|
|
return FALSE;
|
|
|
|
break;
|
|
|
|
}
|
2002-07-29 19:23:20 +00:00
|
|
|
gst_event_unref (event);
|
2002-03-21 19:30:11 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-12-23 16:42:33 +00:00
|
|
|
GstPluginDesc plugin_desc = {
|
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"gnomevfssrc",
|
|
|
|
plugin_init
|
|
|
|
};
|
2002-09-10 18:38:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
End:
|
|
|
|
*/
|