2003-11-24 04:08:48 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2003 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
|
|
|
*
|
2004-01-23 13:22:17 +00:00
|
|
|
* gstoggdemux.c: ogg stream demuxer
|
2003-11-24 04:08:48 +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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <ogg/ogg.h>
|
2004-01-29 02:50:20 +00:00
|
|
|
/* memcpy - if someone knows a way to get rid of it, please speak up
|
ext/ogg/: Added an ogg muxer.
Original commit message from CVS:
* ext/ogg/gstogg.c: (plugin_init):
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
(gst_ogg_print):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
(gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
(gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
(gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
(gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
(gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
(gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
(gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
(gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
Added an ogg muxer.
Small typo fixes in the demuxer.
2004-05-10 13:34:57 +00:00
|
|
|
* note: the ogg docs even say you need this... */
|
2004-03-14 22:34:34 +00:00
|
|
|
#include <string.h>
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_ogg_demux_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_ogg_demux_debug
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
#define GST_TYPE_OGG_DEMUX (gst_ogg_demux_get_type())
|
2003-11-24 04:08:48 +00:00
|
|
|
#define GST_OGG_DEMUX(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OGG_DEMUX, GstOggDemux))
|
|
|
|
#define GST_OGG_DEMUX_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OGG_DEMUX, GstOggDemux))
|
|
|
|
#define GST_IS_OGG_DEMUX(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OGG_DEMUX))
|
|
|
|
#define GST_IS_OGG_DEMUX_CLASS(obj) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OGG_DEMUX))
|
|
|
|
|
|
|
|
typedef struct _GstOggDemux GstOggDemux;
|
|
|
|
typedef struct _GstOggDemuxClass GstOggDemuxClass;
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2004-01-29 02:50:20 +00:00
|
|
|
/* just because you shouldn't make a valid enum value 0 */
|
|
|
|
GST_OGG_STATE_INAVLID,
|
|
|
|
/* just started, we need to decide if we should do setup */
|
|
|
|
GST_OGG_STATE_START,
|
|
|
|
/* setup is analyzing the stream, getting lengths and so on */
|
|
|
|
GST_OGG_STATE_SETUP,
|
|
|
|
/* after a seek, during resyncing */
|
|
|
|
GST_OGG_STATE_SEEK,
|
|
|
|
/* normal playback */
|
|
|
|
GST_OGG_STATE_PLAY
|
2004-03-15 19:32:28 +00:00
|
|
|
}
|
|
|
|
GstOggState;
|
2004-01-29 02:50:20 +00:00
|
|
|
|
|
|
|
/* all information needed for one ogg stream */
|
2004-03-14 22:34:34 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2004-03-15 19:32:28 +00:00
|
|
|
GstPad *pad; /* reference for this pad is held by element we belong to */
|
2004-03-14 22:34:34 +00:00
|
|
|
|
|
|
|
gint serial;
|
|
|
|
ogg_stream_state stream;
|
2004-03-15 19:32:28 +00:00
|
|
|
guint64 offset; /* end offset of last buffer */
|
|
|
|
guint64 known_offset; /* last known offset */
|
|
|
|
gint64 packetno; /* number of next expected packet */
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-03-15 19:32:28 +00:00
|
|
|
guint64 length; /* length of stream or 0 */
|
|
|
|
glong pages; /* number of pages in stream or 0 */
|
2004-03-14 22:34:34 +00:00
|
|
|
|
|
|
|
guint flags;
|
2004-03-15 19:32:28 +00:00
|
|
|
}
|
|
|
|
GstOggPad;
|
2003-11-24 04:08:48 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_OGG_PAD_NEEDS_DISCONT = (1 << 0),
|
|
|
|
GST_OGG_PAD_NEEDS_FLUSH = (1 << 1)
|
2004-01-31 17:19:21 +00:00
|
|
|
}
|
|
|
|
GstOggPadFlags;
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
/* all information needed for one ogg chain (relevant for chained bitstreams) */
|
2004-03-14 22:34:34 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
2004-03-15 19:32:28 +00:00
|
|
|
GSList *pads; /* list of GstOggPad */
|
|
|
|
}
|
|
|
|
GstOggChain;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
#define CURRENT_CHAIN(ogg) (&g_array_index ((ogg)->chains, GstOggChain, (ogg)->current_chain))
|
2004-01-31 17:19:21 +00:00
|
|
|
#define FOR_PAD_IN_CURRENT_CHAIN(ogg, _pad, ...) G_STMT_START{ \
|
|
|
|
GSList *_walk; \
|
2004-04-01 16:34:14 +00:00
|
|
|
if ((ogg)->current_chain != -1) { \
|
|
|
|
for (_walk = CURRENT_CHAIN (ogg)->pads; _walk; _walk = g_slist_next (_walk)) { \
|
|
|
|
GstOggPad *_pad = (GstOggPad *) _walk->data; \
|
|
|
|
__VA_ARGS__ \
|
|
|
|
} \
|
2004-01-31 17:19:21 +00:00
|
|
|
} \
|
|
|
|
}G_STMT_END
|
2004-01-29 02:50:20 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2004-01-29 02:50:20 +00:00
|
|
|
GST_OGG_FLAG_BOS = GST_ELEMENT_FLAG_LAST,
|
|
|
|
GST_OGG_FLAG_EOS,
|
|
|
|
GST_OGG_FLAG_WAIT_FOR_DISCONT
|
2004-03-15 19:32:28 +00:00
|
|
|
}
|
|
|
|
GstOggFlag;
|
2004-01-29 02:50:20 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
struct _GstOggDemux
|
|
|
|
{
|
|
|
|
GstElement element;
|
2003-11-24 04:08:48 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
/* pad */
|
2004-03-14 22:34:34 +00:00
|
|
|
GstPad *sinkpad;
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
/* state */
|
2004-03-14 22:34:34 +00:00
|
|
|
GstOggState state;
|
|
|
|
GArray *chains;
|
|
|
|
gint current_chain;
|
|
|
|
guint flags;
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
/* ogg stuff */
|
2004-03-14 22:34:34 +00:00
|
|
|
ogg_sync_state sync;
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
/* seeking */
|
2004-03-14 22:34:34 +00:00
|
|
|
GstOggPad *seek_pad;
|
|
|
|
guint64 seek_to;
|
2003-11-24 04:08:48 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
struct _GstOggDemuxClass
|
|
|
|
{
|
2003-11-24 04:08:48 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* elementfactory information */
|
2004-03-14 22:34:34 +00:00
|
|
|
static GstElementDetails gst_ogg_demux_details =
|
|
|
|
GST_ELEMENT_DETAILS ("ogg demuxer",
|
|
|
|
"Codec/Demuxer",
|
|
|
|
"demux ogg streams (info about ogg: http://xiph.org)",
|
|
|
|
"Benjamin Otte <in7y118@public.uni-hamburg.de>");
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* signals and args */
|
2004-03-14 22:34:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2003-11-24 04:08:48 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
enum
|
|
|
|
{
|
2003-11-24 04:08:48 +00:00
|
|
|
ARG_0,
|
|
|
|
/* FILL ME */
|
|
|
|
};
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate ogg_demux_src_template_factory =
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_SOMETIMES,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
2003-12-22 01:47:09 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate ogg_demux_sink_template_factory =
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("application/ogg")
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
static void gst_ogg_demux_finalize (GObject * object);
|
|
|
|
|
|
|
|
static gboolean gst_ogg_demux_src_event (GstPad * pad, GstEvent * event);
|
|
|
|
static const GstEventMask *gst_ogg_demux_get_event_masks (GstPad * pad);
|
|
|
|
static const GstQueryType *gst_ogg_demux_get_query_types (GstPad * pad);
|
|
|
|
|
|
|
|
static gboolean gst_ogg_demux_src_query (GstPad * pad,
|
|
|
|
GstQueryType type, GstFormat * format, gint64 * value);
|
|
|
|
|
|
|
|
static void gst_ogg_demux_chain (GstPad * pad, GstData * buffer);
|
|
|
|
|
|
|
|
static GstElementStateReturn gst_ogg_demux_change_state (GstElement * element);
|
|
|
|
|
|
|
|
static GstOggPad *gst_ogg_pad_new (GstOggDemux * ogg, int serial_no);
|
|
|
|
static void gst_ogg_pad_remove (GstOggDemux * ogg, GstOggPad * ogg_pad);
|
|
|
|
static void gst_ogg_pad_reset (GstOggDemux * ogg, GstOggPad * pad);
|
|
|
|
static void gst_ogg_demux_push (GstOggDemux * ogg, ogg_page * page);
|
|
|
|
static void gst_ogg_pad_push (GstOggDemux * ogg, GstOggPad * ogg_pad);
|
|
|
|
|
|
|
|
static GstCaps *gst_ogg_type_find (ogg_packet * packet);
|
|
|
|
|
|
|
|
static void gst_ogg_print (GstOggDemux * demux);
|
2003-11-24 04:08:48 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
#define GST_OGG_SET_STATE(ogg, new_state) G_STMT_START{ \
|
|
|
|
GST_DEBUG_OBJECT (ogg, "setting state to %s", G_STRINGIFY (new_state)); \
|
|
|
|
ogg->state = new_state; \
|
|
|
|
}G_STMT_END
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
GST_BOILERPLATE (GstOggDemux, gst_ogg_demux, GstElement, GST_TYPE_ELEMENT)
|
2003-11-24 04:08:48 +00:00
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
static void gst_ogg_demux_base_init (gpointer g_class)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_element_class_set_details (element_class, &gst_ogg_demux_details);
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_static_pad_template_get (&ogg_demux_sink_template_factory));
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_static_pad_template_get (&ogg_demux_src_template_factory));
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_class_init (GstOggDemuxClass * klass)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
2004-01-29 02:50:20 +00:00
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
gstelement_class->change_state = gst_ogg_demux_change_state;
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
gobject_class->finalize = gst_ogg_demux_finalize;
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_init (GstOggDemux * ogg)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
/* create the sink pad */
|
2004-03-14 22:34:34 +00:00
|
|
|
ogg->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&ogg_demux_sink_template_factory), "sink");
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (ogg), ogg->sinkpad);
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_pad_set_chain_function (ogg->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_ogg_demux_chain));
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
/* initalize variables */
|
2004-01-29 02:50:20 +00:00
|
|
|
GST_OGG_SET_STATE (ogg, GST_OGG_STATE_START);
|
|
|
|
ogg->chains = g_array_new (TRUE, TRUE, sizeof (GstOggChain));
|
2004-01-30 03:51:04 +00:00
|
|
|
ogg->current_chain = -1;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
GST_FLAG_SET (ogg, GST_ELEMENT_EVENT_AWARE);
|
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_finalize (GObject * object)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GstOggDemux *ogg;
|
|
|
|
|
|
|
|
ogg = GST_OGG_DEMUX (object);
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
/* chains are removed when going to READY */
|
|
|
|
g_assert (ogg->current_chain == -1);
|
|
|
|
g_assert (ogg->chains->len == 0);
|
|
|
|
g_array_free (ogg->chains, TRUE);
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
static const GstEventMask *
|
|
|
|
gst_ogg_demux_get_event_masks (GstPad * pad)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
static const GstEventMask gst_ogg_demux_src_event_masks[] = {
|
2004-03-14 22:34:34 +00:00
|
|
|
{GST_EVENT_SEEK, GST_SEEK_METHOD_SET | GST_SEEK_FLAG_FLUSH},
|
|
|
|
{0,}
|
2003-11-24 04:08:48 +00:00
|
|
|
};
|
2004-03-15 19:32:28 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
return gst_ogg_demux_src_event_masks;
|
|
|
|
}
|
2004-03-14 22:34:34 +00:00
|
|
|
static const GstQueryType *
|
|
|
|
gst_ogg_demux_get_query_types (GstPad * pad)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
static const GstQueryType gst_ogg_demux_src_query_types[] = {
|
|
|
|
GST_QUERY_TOTAL,
|
|
|
|
GST_QUERY_POSITION,
|
|
|
|
0
|
|
|
|
};
|
2004-03-15 19:32:28 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
return gst_ogg_demux_src_query_types;
|
|
|
|
}
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
static GstOggPad *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_get_pad_by_pad (GstOggDemux * ogg, GstPad * pad)
|
2004-01-29 02:50:20 +00:00
|
|
|
{
|
|
|
|
GSList *walk;
|
|
|
|
GstOggPad *cur;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-03-06 11:18:28 +00:00
|
|
|
if (ogg->current_chain == -1) {
|
|
|
|
GST_DEBUG_OBJECT (ogg, "no active chain, returning NULL");
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
for (walk = CURRENT_CHAIN (ogg)->pads; walk; walk = g_slist_next (walk)) {
|
|
|
|
cur = (GstOggPad *) walk->data;
|
|
|
|
if (cur->pad == pad)
|
|
|
|
return cur;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_src_query (GstPad * pad, GstQueryType type,
|
|
|
|
GstFormat * format, gint64 * value)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
gboolean res = FALSE;
|
2004-01-29 02:50:20 +00:00
|
|
|
GstOggDemux *ogg = GST_OGG_DEMUX (gst_pad_get_parent (pad));
|
|
|
|
GstOggPad *cur = gst_ogg_get_pad_by_pad (ogg, pad);
|
2003-11-24 04:08:48 +00:00
|
|
|
|
2004-03-06 11:18:28 +00:00
|
|
|
if (!cur)
|
|
|
|
return FALSE;
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
switch (type) {
|
2004-03-14 22:34:34 +00:00
|
|
|
case GST_QUERY_TOTAL:{
|
2004-01-29 02:50:20 +00:00
|
|
|
if (*format == GST_FORMAT_DEFAULT) {
|
2004-03-15 19:32:28 +00:00
|
|
|
*value = cur->length;
|
|
|
|
res = TRUE;
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
2003-11-24 04:08:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_QUERY_POSITION:
|
2004-01-29 02:50:20 +00:00
|
|
|
if (*format == GST_FORMAT_DEFAULT && cur->length != 0) {
|
2004-03-15 19:32:28 +00:00
|
|
|
*value = cur->known_offset;
|
|
|
|
res = TRUE;
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
2003-11-24 04:08:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
/* The current seeking implementation is the most simple I could come up with:
|
|
|
|
* - when seeking forwards, just discard data until desired position is reached
|
|
|
|
* - when seeking backwards, seek to beginning and seek forward from there
|
|
|
|
* Anyone is free to improve this algorithm as it is quite stupid and probably
|
|
|
|
* really slow.
|
|
|
|
*/
|
2003-11-24 04:08:48 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_src_event (GstPad * pad, GstEvent * event)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GstOggDemux *ogg;
|
2004-01-29 02:50:20 +00:00
|
|
|
GstOggPad *cur;
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
ogg = GST_OGG_DEMUX (gst_pad_get_parent (pad));
|
2004-01-29 02:50:20 +00:00
|
|
|
cur = gst_ogg_get_pad_by_pad (ogg, pad);
|
|
|
|
/* FIXME: optimize this so events from inactive chains work?
|
|
|
|
* in theory there shouldn't be an exisiting pad for inactive chains */
|
2004-03-14 22:34:34 +00:00
|
|
|
if (cur == NULL)
|
|
|
|
goto error;
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_SEEK:
|
2004-01-29 02:50:20 +00:00
|
|
|
{
|
|
|
|
gint64 offset;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
if (GST_EVENT_SEEK_FORMAT (event) != GST_FORMAT_DEFAULT)
|
2004-03-15 19:32:28 +00:00
|
|
|
goto error;
|
2004-01-29 02:50:20 +00:00
|
|
|
offset = GST_EVENT_SEEK_OFFSET (event);
|
|
|
|
switch (GST_EVENT_SEEK_METHOD (event)) {
|
2004-03-15 19:32:28 +00:00
|
|
|
case GST_SEEK_METHOD_END:
|
|
|
|
if (cur->length == 0 || offset > 0)
|
|
|
|
goto error;
|
|
|
|
offset = cur->length + offset;
|
|
|
|
break;
|
|
|
|
case GST_SEEK_METHOD_CUR:
|
|
|
|
offset += cur->known_offset;
|
|
|
|
break;
|
|
|
|
case GST_SEEK_METHOD_SET:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_warning ("invalid seek method in seek event");
|
|
|
|
goto error;
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
|
|
|
if (offset < cur->known_offset) {
|
2004-03-15 19:32:28 +00:00
|
|
|
GstEvent *restart =
|
|
|
|
gst_event_new_seek (GST_FORMAT_BYTES | GST_SEEK_METHOD_SET |
|
|
|
|
GST_EVENT_SEEK_FLAGS (event), 0);
|
|
|
|
if (!gst_pad_send_event (GST_PAD_PEER (ogg->sinkpad), restart))
|
|
|
|
goto error;
|
2004-01-31 17:19:21 +00:00
|
|
|
} else {
|
2004-03-15 19:32:28 +00:00
|
|
|
FOR_PAD_IN_CURRENT_CHAIN (ogg, pad, if (GST_PAD_IS_USABLE (pad->pad))
|
|
|
|
gst_pad_push (pad->pad,
|
|
|
|
GST_DATA (gst_event_new (GST_EVENT_FLUSH))););
|
2004-01-30 20:57:41 +00:00
|
|
|
}
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
GST_OGG_SET_STATE (ogg, GST_OGG_STATE_SEEK);
|
2004-01-31 17:19:21 +00:00
|
|
|
FOR_PAD_IN_CURRENT_CHAIN (ogg, pad,
|
ext/ogg/: Added an ogg muxer.
Original commit message from CVS:
* ext/ogg/gstogg.c: (plugin_init):
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
(gst_ogg_print):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
(gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
(gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
(gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
(gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
(gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
(gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
(gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
(gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
Added an ogg muxer.
Small typo fixes in the demuxer.
2004-05-10 13:34:57 +00:00
|
|
|
pad->flags |= GST_OGG_PAD_NEEDS_DISCONT;
|
|
|
|
);
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_DEBUG_OBJECT (ogg, "initiating seeking to offset %" G_GUINT64_FORMAT,
|
2004-03-15 19:32:28 +00:00
|
|
|
offset);
|
2004-03-14 22:34:34 +00:00
|
|
|
ogg->seek_pad = cur;
|
2004-01-29 02:50:20 +00:00
|
|
|
ogg->seek_to = offset;
|
|
|
|
gst_event_unref (event);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2003-11-24 04:08:48 +00:00
|
|
|
default:
|
2004-01-31 17:19:21 +00:00
|
|
|
return gst_pad_event_default (pad, event);
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
|
2004-01-31 17:19:21 +00:00
|
|
|
g_assert_not_reached ();
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-31 17:19:21 +00:00
|
|
|
error:
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_event_unref (event);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_start_playing (GstOggDemux * ogg)
|
2004-01-29 02:50:20 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG_OBJECT (ogg, "got EOS in setup, changing to playback now");
|
|
|
|
if (!gst_pad_send_event (GST_PAD_PEER (ogg->sinkpad),
|
2004-03-15 19:32:28 +00:00
|
|
|
gst_event_new_seek (GST_FORMAT_BYTES | GST_SEEK_METHOD_SET, 0))) {
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_ELEMENT_ERROR (ogg, CORE, SEEK, (NULL),
|
2004-03-15 19:32:28 +00:00
|
|
|
("cannot seek to start after EOS"));
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
|
|
|
ogg->current_chain = 0;
|
|
|
|
GST_FLAG_UNSET (ogg, GST_OGG_FLAG_EOS);
|
|
|
|
GST_FLAG_SET (ogg, GST_OGG_FLAG_WAIT_FOR_DISCONT);
|
|
|
|
GST_OGG_SET_STATE (ogg, GST_OGG_STATE_PLAY);
|
|
|
|
gst_ogg_print (ogg);
|
|
|
|
}
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_handle_event (GstPad * pad, GstEvent * event)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GstOggDemux *ogg = GST_OGG_DEMUX (gst_pad_get_parent (pad));
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
2004-01-29 02:50:20 +00:00
|
|
|
GST_DEBUG_OBJECT (ogg, "got a discont event");
|
|
|
|
ogg_sync_reset (&ogg->sync);
|
|
|
|
gst_event_unref (event);
|
|
|
|
GST_FLAG_UNSET (ogg, GST_OGG_FLAG_WAIT_FOR_DISCONT);
|
2004-01-31 17:19:21 +00:00
|
|
|
FOR_PAD_IN_CURRENT_CHAIN (ogg, pad,
|
ext/ogg/: Added an ogg muxer.
Original commit message from CVS:
* ext/ogg/gstogg.c: (plugin_init):
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
(gst_ogg_print):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
(gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
(gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
(gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
(gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
(gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
(gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
(gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
(gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
Added an ogg muxer.
Small typo fixes in the demuxer.
2004-05-10 13:34:57 +00:00
|
|
|
pad->flags |= GST_OGG_PAD_NEEDS_DISCONT;
|
|
|
|
);
|
2003-11-24 04:08:48 +00:00
|
|
|
break;
|
|
|
|
case GST_EVENT_EOS:
|
2004-01-29 02:50:20 +00:00
|
|
|
if (ogg->state == GST_OGG_STATE_SETUP) {
|
2004-03-15 19:32:28 +00:00
|
|
|
gst_ogg_start_playing (ogg);
|
2004-01-29 02:50:20 +00:00
|
|
|
} else {
|
2004-03-15 19:32:28 +00:00
|
|
|
guint i;
|
|
|
|
GSList *walk;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (ogg, "got EOS");
|
|
|
|
ogg->current_chain = -1;
|
|
|
|
for (i = 0; i < ogg->chains->len; i++) {
|
|
|
|
GstOggChain *chain = &g_array_index (ogg->chains, GstOggChain, i);
|
|
|
|
|
|
|
|
for (walk = chain->pads; walk; walk = g_slist_next (walk)) {
|
|
|
|
GstOggPad *pad = (GstOggPad *) walk->data;
|
|
|
|
|
|
|
|
if (pad->pad && GST_PAD_IS_USABLE (pad->pad)) {
|
|
|
|
gst_data_ref (GST_DATA (event));
|
|
|
|
gst_pad_push (pad->pad, GST_DATA (event));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gst_element_set_eos (GST_ELEMENT (ogg));
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
gst_event_unref (event);
|
2003-11-24 04:08:48 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
|
|
|
|
/* get the pad with the given serial in the current stream or NULL if none */
|
|
|
|
static GstOggPad *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_pad_get_in_current_chain (GstOggDemux * ogg, int serial)
|
2004-01-29 02:50:20 +00:00
|
|
|
{
|
|
|
|
GSList *walk;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
|
|
|
if (ogg->current_chain == -1)
|
|
|
|
return NULL;
|
2004-01-29 02:50:20 +00:00
|
|
|
g_return_val_if_fail (ogg->current_chain < ogg->chains->len, NULL);
|
|
|
|
|
|
|
|
for (walk = CURRENT_CHAIN (ogg)->pads; walk; walk = g_slist_next (walk)) {
|
|
|
|
GstOggPad *pad = (GstOggPad *) walk->data;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
if (pad->serial == serial)
|
|
|
|
return pad;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_add_chain (GstOggDemux * ogg)
|
2004-01-29 02:50:20 +00:00
|
|
|
{
|
|
|
|
GST_LOG_OBJECT (ogg, "adding chain %u", ogg->chains->len);
|
|
|
|
ogg->current_chain = ogg->chains->len;
|
|
|
|
g_array_set_size (ogg->chains, ogg->chains->len + 1);
|
|
|
|
}
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_chain (GstPad * pad, GstData * buffer)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GstOggDemux *ogg;
|
|
|
|
guint8 *data;
|
|
|
|
int pageout_ret = 1;
|
2004-01-29 02:50:20 +00:00
|
|
|
guint64 offset_end;
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
/* handle events */
|
|
|
|
if (GST_IS_EVENT (buffer)) {
|
|
|
|
gst_ogg_demux_handle_event (pad, GST_EVENT (buffer));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ogg = GST_OGG_DEMUX (gst_pad_get_parent (pad));
|
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
if (GST_FLAG_IS_SET (ogg, GST_OGG_FLAG_WAIT_FOR_DISCONT)) {
|
|
|
|
GST_LOG_OBJECT (ogg, "waiting for discont event, discarding buffer");
|
|
|
|
gst_data_unref (buffer);
|
2004-03-14 22:34:34 +00:00
|
|
|
return;
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_LOG_OBJECT (ogg, "queueing buffer %p with offset %llu", buffer,
|
|
|
|
GST_BUFFER_OFFSET (buffer));
|
|
|
|
data = (guint8 *) ogg_sync_buffer (&ogg->sync, GST_BUFFER_SIZE (buffer));
|
2003-11-24 04:08:48 +00:00
|
|
|
memcpy (data, GST_BUFFER_DATA (buffer), GST_BUFFER_SIZE (buffer));
|
|
|
|
if (ogg_sync_wrote (&ogg->sync, GST_BUFFER_SIZE (buffer)) != 0) {
|
|
|
|
gst_data_unref (buffer);
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_ELEMENT_ERROR (ogg, LIBRARY, TOO_LAZY, (NULL),
|
2004-03-15 19:32:28 +00:00
|
|
|
("ogg_sync_wrote failed"));
|
2003-11-24 04:08:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
offset_end = GST_BUFFER_OFFSET_IS_VALID (buffer) ?
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_BUFFER_OFFSET (buffer) + GST_BUFFER_SIZE (buffer) : (guint64) - 1;
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_data_unref (buffer);
|
|
|
|
while (pageout_ret != 0) {
|
|
|
|
ogg_page page;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
pageout_ret = ogg_sync_pageout (&ogg->sync, &page);
|
|
|
|
switch (pageout_ret) {
|
|
|
|
case -1:
|
2004-03-15 19:32:28 +00:00
|
|
|
/* FIXME: need some kind of discont here, we don't know any values to send though,
|
|
|
|
* we only have the END_OFFSET */
|
|
|
|
break;
|
2003-11-24 04:08:48 +00:00
|
|
|
case 0:
|
2004-03-15 19:32:28 +00:00
|
|
|
if (ogg->state == GST_OGG_STATE_SETUP) {
|
|
|
|
guint64 length;
|
|
|
|
GstFormat format = GST_FORMAT_BYTES;
|
|
|
|
|
|
|
|
if (!gst_pad_query (GST_PAD_PEER (ogg->sinkpad), GST_QUERY_TOTAL,
|
|
|
|
&format, &length))
|
|
|
|
length = 0;
|
|
|
|
if (length <= offset_end) {
|
|
|
|
gst_ogg_start_playing (ogg);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2003-11-24 04:08:48 +00:00
|
|
|
case 1:
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_LOG_OBJECT (ogg,
|
|
|
|
"processing ogg page (serial %d, packet %ld, granule pos %llu",
|
|
|
|
ogg_page_serialno (&page), ogg_page_pageno (&page),
|
|
|
|
ogg_page_granulepos (&page));
|
|
|
|
switch (ogg->state) {
|
|
|
|
case GST_OGG_STATE_SETUP:
|
|
|
|
if (ogg_page_eos (&page)) {
|
|
|
|
GstOggPad *cur = gst_ogg_pad_get_in_current_chain (ogg,
|
|
|
|
ogg_page_serialno (&page));
|
|
|
|
|
|
|
|
GST_FLAG_SET (ogg, GST_OGG_FLAG_EOS);
|
|
|
|
if (!cur) {
|
|
|
|
GST_ERROR_OBJECT (ogg, "unknown serial %d",
|
|
|
|
ogg_page_serialno (&page));
|
|
|
|
} else {
|
|
|
|
cur->pages = ogg_page_pageno (&page);
|
|
|
|
cur->length = ogg_page_granulepos (&page);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (GST_FLAG_IS_SET (ogg, GST_OGG_FLAG_EOS)
|
|
|
|
&& ogg_page_bos (&page)) {
|
|
|
|
gst_ogg_add_chain (ogg);
|
|
|
|
}
|
|
|
|
GST_FLAG_UNSET (ogg, GST_OGG_FLAG_EOS);
|
|
|
|
}
|
|
|
|
if (ogg_page_bos (&page)) {
|
|
|
|
if (gst_ogg_pad_get_in_current_chain (ogg,
|
|
|
|
ogg_page_serialno (&page))) {
|
|
|
|
GST_ERROR_OBJECT (ogg,
|
|
|
|
"multiple BOS page for serial %d (page %ld)",
|
|
|
|
ogg_page_serialno (&page), ogg_page_pageno (&page));
|
|
|
|
} else {
|
|
|
|
GstOggPad *pad =
|
|
|
|
gst_ogg_pad_new (ogg, ogg_page_serialno (&page));
|
|
|
|
CURRENT_CHAIN (ogg)->pads =
|
|
|
|
g_slist_prepend (CURRENT_CHAIN (ogg)->pads, pad);
|
|
|
|
}
|
|
|
|
GST_FLAG_SET (ogg, GST_OGG_FLAG_BOS);
|
|
|
|
} else {
|
|
|
|
GST_FLAG_UNSET (ogg, GST_OGG_FLAG_BOS);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_OGG_STATE_START:
|
|
|
|
if (gst_pad_send_event (GST_PAD_PEER (ogg->sinkpad),
|
|
|
|
gst_event_new_seek (GST_FORMAT_BYTES | GST_SEEK_METHOD_END,
|
|
|
|
0))) {
|
|
|
|
GST_OGG_SET_STATE (ogg, GST_OGG_STATE_SETUP);
|
|
|
|
GST_DEBUG_OBJECT (ogg, "stream can seek, try setup now");
|
|
|
|
if (!gst_pad_send_event (GST_PAD_PEER (ogg->sinkpad),
|
|
|
|
gst_event_new_seek (GST_FORMAT_BYTES |
|
|
|
|
GST_SEEK_METHOD_SET, 0))) {
|
|
|
|
GST_ELEMENT_ERROR (ogg, CORE, SEEK, (NULL),
|
|
|
|
("stream can seek to end, but not to start. Can't handle that."));
|
|
|
|
}
|
|
|
|
gst_ogg_add_chain (ogg);
|
|
|
|
GST_FLAG_SET (ogg, GST_OGG_FLAG_WAIT_FOR_DISCONT);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
gst_ogg_add_chain (ogg);
|
|
|
|
GST_OGG_SET_STATE (ogg, GST_OGG_STATE_PLAY);
|
|
|
|
/* fall through */
|
|
|
|
case GST_OGG_STATE_SEEK:
|
|
|
|
case GST_OGG_STATE_PLAY:
|
|
|
|
gst_ogg_demux_push (ogg, &page);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2003-11-24 04:08:48 +00:00
|
|
|
default:
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_WARNING_OBJECT (ogg,
|
|
|
|
"unknown return value %d from ogg_sync_pageout", pageout_ret);
|
|
|
|
pageout_ret = 0;
|
|
|
|
break;
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
out:
|
2003-11-24 04:08:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
static GstOggPad *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_pad_new (GstOggDemux * ogg, int serial)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
2004-01-29 02:50:20 +00:00
|
|
|
GstOggPad *ret = g_new0 (GstOggPad, 1);
|
2004-03-06 17:31:59 +00:00
|
|
|
GstTagList *list = gst_tag_list_new ();
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
ret->serial = serial;
|
|
|
|
if (ogg_stream_init (&ret->stream, serial) != 0) {
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_ERROR_OBJECT (ogg,
|
2004-03-15 19:32:28 +00:00
|
|
|
"Could not initialize ogg_stream struct for serial %d.", serial);
|
2003-11-24 04:08:48 +00:00
|
|
|
g_free (ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-03-06 17:31:59 +00:00
|
|
|
gst_tag_list_add (list, GST_TAG_MERGE_REPLACE, GST_TAG_SERIAL, serial, NULL);
|
|
|
|
gst_element_found_tags (GST_ELEMENT (ogg), list);
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_LOG_OBJECT (ogg, "created new ogg src %p for stream with serial %d", ret,
|
|
|
|
serial);
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_pad_remove (GstOggDemux * ogg, GstOggPad * pad)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
if (pad->pad) {
|
2004-01-29 02:50:20 +00:00
|
|
|
/* FIXME:
|
|
|
|
* we do it in the EOS signal already - EOS handling needs to be better thought out.
|
|
|
|
* Correct way would be pushing EOS on eos page, but scheduler doesn't like that
|
2004-03-14 22:34:34 +00:00
|
|
|
if (GST_PAD_IS_USEABLE (pad->pad))
|
|
|
|
gst_pad_push (pad->pad, GST_DATA (gst_event_new (GST_EVENT_EOS)));
|
|
|
|
*/
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_element_remove_pad (GST_ELEMENT (ogg), pad->pad);
|
|
|
|
}
|
|
|
|
if (ogg_stream_clear (&pad->stream) != 0)
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_ERROR_OBJECT (ogg,
|
2004-03-15 19:32:28 +00:00
|
|
|
"ogg_stream_clear (serial %d) did not return 0, ignoring this error",
|
|
|
|
pad->serial);
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_LOG_OBJECT (ogg, "free ogg src %p for stream with serial %d", pad,
|
|
|
|
pad->serial);
|
2003-11-24 04:08:48 +00:00
|
|
|
g_free (pad);
|
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_push (GstOggDemux * ogg, ogg_page * page)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
2003-12-07 22:45:23 +00:00
|
|
|
GSList *walk;
|
2003-11-24 04:08:48 +00:00
|
|
|
GstOggPad *cur;
|
|
|
|
|
|
|
|
/* find the stream */
|
2004-01-29 02:50:20 +00:00
|
|
|
for (walk = CURRENT_CHAIN (ogg)->pads; walk; walk = g_slist_next (walk)) {
|
2003-11-24 04:08:48 +00:00
|
|
|
cur = (GstOggPad *) walk->data;
|
|
|
|
if (cur->serial == ogg_page_serialno (page)) {
|
|
|
|
goto br;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cur = NULL;
|
|
|
|
br:
|
|
|
|
/* now we either have a stream (cur) or not */
|
|
|
|
if (ogg_page_bos (page)) {
|
|
|
|
if (cur) {
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_DEBUG_OBJECT (ogg,
|
2004-03-15 19:32:28 +00:00
|
|
|
"ogg page declared as BOS while stream %d already existed."
|
|
|
|
"Possibly a seek happened.", cur->serial);
|
2004-01-29 02:50:20 +00:00
|
|
|
} else if (cur) {
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_DEBUG_OBJECT (ogg, "reactivating deactivated stream %d.",
|
2004-03-15 19:32:28 +00:00
|
|
|
cur->serial);
|
2003-11-24 04:08:48 +00:00
|
|
|
} else {
|
|
|
|
/* FIXME: monitor if we are still in creation stage? */
|
|
|
|
cur = gst_ogg_pad_new (ogg, ogg_page_serialno (page));
|
|
|
|
if (!cur) {
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_ELEMENT_ERROR (ogg, LIBRARY, TOO_LAZY, (NULL),
|
|
|
|
("Creating ogg_stream struct failed."));
|
|
|
|
return;
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
|
|
|
if (ogg->current_chain == -1) {
|
2004-03-15 19:32:28 +00:00
|
|
|
/* add new one at the end */
|
|
|
|
gst_ogg_add_chain (ogg);
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
2004-03-14 22:34:34 +00:00
|
|
|
CURRENT_CHAIN (ogg)->pads =
|
2004-03-15 19:32:28 +00:00
|
|
|
g_slist_prepend (CURRENT_CHAIN (ogg)->pads, cur);
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cur == NULL) {
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_ELEMENT_ERROR (ogg, STREAM, DECODE, (NULL),
|
2004-03-15 19:32:28 +00:00
|
|
|
("invalid ogg stream serial no"));
|
2003-11-24 04:08:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ogg_stream_pagein (&cur->stream, page) != 0) {
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_WARNING_OBJECT (ogg,
|
2004-03-15 19:32:28 +00:00
|
|
|
"ogg stream choked on page (serial %d), resetting stream", cur->serial);
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_ogg_pad_reset (ogg, cur);
|
|
|
|
return;
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
switch (ogg->state) {
|
|
|
|
case GST_OGG_STATE_SEEK:
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_LOG_OBJECT (ogg,
|
2004-03-15 19:32:28 +00:00
|
|
|
"in seek - offset now: %" G_GUINT64_FORMAT
|
|
|
|
" (pad %d) - desired offset %" G_GUINT64_FORMAT " (pad %d)",
|
|
|
|
cur->known_offset, cur->serial, ogg->seek_to, ogg->seek_pad->serial);
|
2004-01-29 02:50:20 +00:00
|
|
|
if (cur == ogg->seek_pad) {
|
2004-03-15 19:32:28 +00:00
|
|
|
if (ogg_page_granulepos (page) > ogg->seek_to) {
|
|
|
|
GST_OGG_SET_STATE (ogg, GST_OGG_STATE_PLAY);
|
|
|
|
GST_DEBUG_OBJECT (ogg,
|
|
|
|
"ended seek at offset %" G_GUINT64_FORMAT " (requested %"
|
|
|
|
G_GUINT64_FORMAT, cur->known_offset, ogg->seek_to);
|
|
|
|
ogg->seek_pad = NULL;
|
|
|
|
ogg->seek_to = 0;
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
|
|
|
/* fallthrough */
|
|
|
|
case GST_OGG_STATE_PLAY:
|
|
|
|
cur->known_offset = ogg_page_granulepos (page);
|
|
|
|
gst_ogg_pad_push (ogg, cur);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (ogg_page_eos (page)) {
|
|
|
|
GST_DEBUG_OBJECT (ogg, "got EOS for stream with serial %d, sending EOS now",
|
2004-03-15 19:32:28 +00:00
|
|
|
cur->serial);
|
2003-11-24 04:08:48 +00:00
|
|
|
#if 0
|
2004-03-14 22:34:34 +00:00
|
|
|
/* Removing pads while PLAYING doesn't work with current schedulers */
|
|
|
|
/* remove from list, as this will never be called again */
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_ogg_pad_remove (ogg, cur);
|
2004-03-14 22:34:34 +00:00
|
|
|
/* this is also not possible because sending EOS this way confuses the scheduler */
|
2004-01-29 02:50:20 +00:00
|
|
|
gst_pad_push (cur->pad, GST_DATA (gst_event_new (GST_EVENT_EOS)));
|
|
|
|
#else
|
2003-11-24 04:08:48 +00:00
|
|
|
#endif
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_pad_push (GstOggDemux * ogg, GstOggPad * pad)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
ogg_packet packet;
|
|
|
|
int ret;
|
2003-12-07 22:45:23 +00:00
|
|
|
GstBuffer *buf;
|
2003-11-24 04:08:48 +00:00
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
ret = ogg_stream_packetout (&pad->stream, &packet);
|
|
|
|
switch (ret) {
|
|
|
|
case 0:
|
2004-03-15 19:32:28 +00:00
|
|
|
return;
|
2003-11-24 04:08:48 +00:00
|
|
|
case -1:
|
2004-03-15 19:32:28 +00:00
|
|
|
gst_ogg_pad_reset (ogg, pad);
|
|
|
|
break;
|
2004-03-14 22:34:34 +00:00
|
|
|
case 1:{
|
2004-03-15 19:32:28 +00:00
|
|
|
/* only push data when playing, not during seek or similar */
|
|
|
|
if (ogg->state != GST_OGG_STATE_PLAY)
|
|
|
|
continue;
|
|
|
|
if (!pad->pad) {
|
|
|
|
GstCaps *caps = gst_ogg_type_find (&packet);
|
|
|
|
gchar *name = g_strdup_printf ("serial_%d", pad->serial);
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
GST_WARNING_OBJECT (ogg,
|
|
|
|
"couldn't find caps for stream with serial %d", pad->serial);
|
|
|
|
caps = gst_caps_new_simple ("application/octet-stream", NULL);
|
|
|
|
}
|
|
|
|
pad->pad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&ogg_demux_src_template_factory), name);
|
|
|
|
g_free (name);
|
|
|
|
gst_pad_set_event_function (pad->pad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_ogg_demux_src_event));
|
|
|
|
gst_pad_set_event_mask_function (pad->pad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_ogg_demux_get_event_masks));
|
|
|
|
gst_pad_set_query_function (pad->pad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_ogg_demux_src_query));
|
|
|
|
gst_pad_set_query_type_function (pad->pad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_ogg_demux_get_query_types));
|
|
|
|
gst_pad_use_explicit_caps (pad->pad);
|
|
|
|
gst_pad_set_explicit_caps (pad->pad, caps);
|
|
|
|
gst_pad_set_active (pad->pad, TRUE);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (ogg), pad->pad);
|
|
|
|
}
|
|
|
|
/* check for discont */
|
|
|
|
if (packet.packetno != pad->packetno++) {
|
|
|
|
pad->flags |= GST_OGG_PAD_NEEDS_DISCONT;
|
|
|
|
pad->packetno = packet.packetno + 1;
|
|
|
|
}
|
|
|
|
/* send discont if needed */
|
|
|
|
if ((pad->flags & GST_OGG_PAD_NEEDS_DISCONT)
|
|
|
|
&& GST_PAD_IS_USABLE (pad->pad)) {
|
|
|
|
GstEvent *event = gst_event_new_discontinuous (FALSE,
|
2004-03-20 01:24:46 +00:00
|
|
|
GST_FORMAT_DEFAULT, pad->known_offset, GST_FORMAT_UNDEFINED); /* FIXME: this might be wrong because we can only use the last known offset */
|
2004-03-15 19:32:28 +00:00
|
|
|
|
|
|
|
gst_pad_push (pad->pad, GST_DATA (event));
|
|
|
|
pad->flags &= (~GST_OGG_PAD_NEEDS_DISCONT);
|
|
|
|
};
|
|
|
|
/* optimization: use a bufferpool containing the ogg packet? */
|
|
|
|
buf =
|
|
|
|
gst_pad_alloc_buffer (pad->pad, GST_BUFFER_OFFSET_NONE,
|
|
|
|
packet.bytes);
|
|
|
|
memcpy (buf->data, packet.packet, packet.bytes);
|
|
|
|
if (pad->offset != -1)
|
|
|
|
GST_BUFFER_OFFSET (buf) = pad->offset;
|
|
|
|
if (packet.granulepos != -1)
|
|
|
|
GST_BUFFER_OFFSET_END (buf) = packet.granulepos;
|
|
|
|
pad->offset = packet.granulepos;
|
|
|
|
if (GST_PAD_IS_USABLE (pad->pad))
|
|
|
|
gst_pad_push (pad->pad, GST_DATA (buf));
|
|
|
|
break;
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
default:
|
2004-03-15 19:32:28 +00:00
|
|
|
GST_ERROR_OBJECT (ogg,
|
|
|
|
"invalid return value %d for ogg_stream_packetout, resetting stream",
|
|
|
|
ret);
|
|
|
|
gst_ogg_pad_reset (ogg, pad);
|
|
|
|
break;
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_pad_reset (GstOggDemux * ogg, GstOggPad * pad)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
ogg_stream_reset (&pad->stream);
|
|
|
|
pad->offset = GST_BUFFER_OFFSET_NONE;
|
|
|
|
/* FIXME: need a discont here */
|
|
|
|
}
|
2004-01-29 02:50:20 +00:00
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_chains_clear (GstOggDemux * ogg)
|
2004-01-29 02:50:20 +00:00
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
GSList *walk;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
for (i = ogg->chains->len - 1; i >= 0; i--) {
|
|
|
|
GstOggChain *cur = &g_array_index (ogg->chains, GstOggChain, i);
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
for (walk = cur->pads; walk; walk = g_slist_next (walk)) {
|
|
|
|
gst_ogg_pad_remove (ogg, (GstOggPad *) walk->data);
|
|
|
|
}
|
|
|
|
g_slist_free (cur->pads);
|
|
|
|
g_array_remove_index (ogg->chains, i);
|
|
|
|
}
|
|
|
|
ogg->current_chain = -1;
|
|
|
|
}
|
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
static GstElementStateReturn
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_demux_change_state (GstElement * element)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GstOggDemux *ogg;
|
|
|
|
|
|
|
|
ogg = GST_OGG_DEMUX (element);
|
|
|
|
|
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
|
|
case GST_STATE_NULL_TO_READY:
|
|
|
|
ogg_sync_init (&ogg->sync);
|
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
|
|
|
ogg_sync_reset (&ogg->sync);
|
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_PLAYING:
|
|
|
|
break;
|
|
|
|
case GST_STATE_PLAYING_TO_PAUSED:
|
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
2004-01-29 02:50:20 +00:00
|
|
|
gst_ogg_chains_clear (ogg);
|
|
|
|
GST_OGG_SET_STATE (ogg, GST_OGG_STATE_START);
|
|
|
|
ogg->seek_pad = NULL;
|
|
|
|
ogg->seek_to = 0;
|
2003-11-24 04:08:48 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_NULL:
|
|
|
|
ogg_sync_clear (&ogg->sync);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parent_class->change_state (element);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** typefinding **************************************************************/
|
|
|
|
/* ogg supports its own typefinding because the ogg spec defines that the first
|
|
|
|
* packet of an ogg stream must identify the stream. Therefore ogg can use a
|
|
|
|
* simplified approach at typefinding.
|
|
|
|
*/
|
2004-03-14 22:34:34 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
ogg_packet *packet;
|
|
|
|
guint best_probability;
|
|
|
|
GstCaps *caps;
|
2004-03-15 19:32:28 +00:00
|
|
|
}
|
|
|
|
OggTypeFind;
|
2003-11-24 04:08:48 +00:00
|
|
|
static guint8 *
|
|
|
|
ogg_find_peek (gpointer data, gint64 offset, guint size)
|
|
|
|
{
|
|
|
|
OggTypeFind *find = (OggTypeFind *) data;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
if (offset + size <= find->packet->bytes) {
|
|
|
|
return ((guint8 *) find->packet->packet) + offset;
|
|
|
|
} else {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void
|
2004-03-14 22:34:34 +00:00
|
|
|
ogg_find_suggest (gpointer data, guint probability, const GstCaps * caps)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
OggTypeFind *find = (OggTypeFind *) data;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
if (probability > find->best_probability) {
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_caps_replace (&find->caps, gst_caps_copy (caps));
|
2003-11-24 04:08:48 +00:00
|
|
|
find->best_probability = probability;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static GstCaps *
|
2004-03-14 22:34:34 +00:00
|
|
|
gst_ogg_type_find (ogg_packet * packet)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GstTypeFind gst_find;
|
|
|
|
OggTypeFind find;
|
|
|
|
GList *walk, *type_list = NULL;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
walk = type_list = gst_type_find_factory_get_list ();
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
find.packet = packet;
|
|
|
|
find.best_probability = 0;
|
|
|
|
find.caps = NULL;
|
|
|
|
gst_find.data = &find;
|
|
|
|
gst_find.peek = ogg_find_peek;
|
|
|
|
gst_find.suggest = ogg_find_suggest;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
while (walk) {
|
|
|
|
GstTypeFindFactory *factory = GST_TYPE_FIND_FACTORY (walk->data);
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
gst_type_find_factory_call_function (factory, &gst_find);
|
|
|
|
if (find.best_probability >= GST_TYPE_FIND_MAXIMUM)
|
|
|
|
break;
|
|
|
|
walk = g_list_next (walk);
|
|
|
|
}
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2003-11-24 04:08:48 +00:00
|
|
|
if (find.best_probability > 0)
|
|
|
|
return find.caps;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
ext/ogg/: Added an ogg muxer.
Original commit message from CVS:
* ext/ogg/gstogg.c: (plugin_init):
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
(gst_ogg_print):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
(gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
(gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
(gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
(gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
(gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
(gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
(gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
(gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
Added an ogg muxer.
Small typo fixes in the demuxer.
2004-05-10 13:34:57 +00:00
|
|
|
gboolean
|
|
|
|
gst_ogg_demux_plugin_init (GstPlugin * plugin)
|
2003-11-24 04:08:48 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_ogg_demux_debug, "oggdemux", 0, "ogg demuxer");
|
|
|
|
|
2004-03-14 22:34:34 +00:00
|
|
|
return gst_element_register (plugin, "oggdemux", GST_RANK_PRIMARY,
|
|
|
|
GST_TYPE_OGG_DEMUX);
|
2003-11-24 04:08:48 +00:00
|
|
|
}
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
/* prints all info about the element */
|
ext/ogg/: Added an ogg muxer.
Original commit message from CVS:
* ext/ogg/gstogg.c: (plugin_init):
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
(gst_ogg_print):
* ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
(gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
(gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
(gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
(gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
(gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
(gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
(gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
(gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
(gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
Added an ogg muxer.
Small typo fixes in the demuxer.
2004-05-10 13:34:57 +00:00
|
|
|
static void
|
|
|
|
gst_ogg_print (GstOggDemux * ogg)
|
2004-01-29 02:50:20 +00:00
|
|
|
{
|
|
|
|
guint i;
|
|
|
|
GSList *walk;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-01-29 02:50:20 +00:00
|
|
|
for (i = 0; i < ogg->chains->len; i++) {
|
|
|
|
GstOggChain *chain = &g_array_index (ogg->chains, GstOggChain, i);
|
2004-03-14 22:34:34 +00:00
|
|
|
|
|
|
|
GST_INFO_OBJECT (ogg, "chain %d (%u streams):", i,
|
2004-03-15 19:32:28 +00:00
|
|
|
g_slist_length (chain->pads));
|
2004-01-29 02:50:20 +00:00
|
|
|
for (walk = chain->pads; walk; walk = g_slist_next (walk)) {
|
|
|
|
GstOggPad *pad = (GstOggPad *) walk->data;
|
2004-03-14 22:34:34 +00:00
|
|
|
|
2004-02-10 08:37:50 +00:00
|
|
|
GST_INFO_OBJECT (ogg, " stream %d:", pad->serial);
|
2004-03-14 22:34:34 +00:00
|
|
|
GST_INFO_OBJECT (ogg, " length %" G_GUINT64_FORMAT, pad->length);
|
2004-02-10 08:37:50 +00:00
|
|
|
GST_INFO_OBJECT (ogg, " pages %ld", pad->pages);
|
2004-01-29 02:50:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|