2007-01-09 12:30:46 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
|
|
|
*
|
|
|
|
* gstoggdemux.c: ogg stream demuxer
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_OGG_DEMUX_H__
|
|
|
|
#define __GST_OGG_DEMUX_H__
|
|
|
|
|
|
|
|
#include <ogg/ogg.h>
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2009-08-29 17:51:48 +00:00
|
|
|
#include "gstoggstream.h"
|
|
|
|
|
2007-01-09 12:30:46 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_OGG_PAD (gst_ogg_pad_get_type())
|
|
|
|
#define GST_OGG_PAD(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_OGG_PAD, GstOggPad))
|
|
|
|
#define GST_OGG_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_OGG_PAD, GstOggPad))
|
|
|
|
#define GST_IS_OGG_PAD(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_OGG_PAD))
|
|
|
|
#define GST_IS_OGG_PAD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OGG_PAD))
|
|
|
|
|
|
|
|
typedef struct _GstOggPad GstOggPad;
|
|
|
|
typedef struct _GstOggPadClass GstOggPadClass;
|
|
|
|
|
|
|
|
#define GST_TYPE_OGG_DEMUX (gst_ogg_demux_get_type())
|
|
|
|
#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(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_OGG_DEMUX))
|
|
|
|
|
2009-08-29 17:51:48 +00:00
|
|
|
GType gst_ogg_demux_get_type (void);
|
2007-01-09 12:30:46 +00:00
|
|
|
|
|
|
|
typedef struct _GstOggDemux GstOggDemux;
|
|
|
|
typedef struct _GstOggDemuxClass GstOggDemuxClass;
|
|
|
|
typedef struct _GstOggChain GstOggChain;
|
|
|
|
|
|
|
|
/* all information needed for one ogg chain (relevant for chained bitstreams) */
|
|
|
|
struct _GstOggChain
|
|
|
|
{
|
|
|
|
GstOggDemux *ogg;
|
|
|
|
|
|
|
|
gint64 offset; /* starting offset of chain */
|
|
|
|
gint64 end_offset; /* end offset of chain */
|
|
|
|
gint64 bytes; /* number of bytes */
|
|
|
|
|
|
|
|
gboolean have_bos;
|
|
|
|
|
|
|
|
GArray *streams;
|
|
|
|
|
|
|
|
GstClockTime total_time; /* the total time of this chain, this is the MAX of
|
|
|
|
the totals of all streams */
|
|
|
|
GstClockTime begin_time; /* when this chain starts in the stream */
|
|
|
|
|
|
|
|
GstClockTime segment_start; /* the timestamp of the first sample, this is the MIN of
|
|
|
|
the start times of all streams. */
|
|
|
|
GstClockTime segment_stop; /* the timestamp of the last page, this is the MAX of the
|
|
|
|
streams. */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* different modes for the pad */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_OGG_PAD_MODE_INIT, /* we are feeding our internal decoder to get info */
|
|
|
|
GST_OGG_PAD_MODE_STREAMING, /* we are streaming buffers to the outside */
|
|
|
|
} GstOggPadMode;
|
|
|
|
|
|
|
|
/* all information needed for one ogg stream */
|
|
|
|
struct _GstOggPad
|
|
|
|
{
|
|
|
|
GstPad pad; /* subclass GstPad */
|
|
|
|
|
|
|
|
gboolean have_type;
|
|
|
|
GstOggPadMode mode;
|
|
|
|
|
|
|
|
GstOggChain *chain; /* the chain we are part of */
|
|
|
|
GstOggDemux *ogg; /* the ogg demuxer we are part of */
|
|
|
|
|
2009-08-29 17:51:48 +00:00
|
|
|
GstOggStream map;
|
2009-12-04 12:14:57 +00:00
|
|
|
|
2007-01-09 12:30:46 +00:00
|
|
|
gint64 packetno;
|
|
|
|
gint64 current_granule;
|
2009-11-25 06:08:09 +00:00
|
|
|
gint64 keyframe_granule;
|
2007-01-09 12:30:46 +00:00
|
|
|
|
|
|
|
GstClockTime start_time; /* the timestamp of the first sample */
|
|
|
|
|
|
|
|
gint64 first_granule; /* the granulepos of first page == first sample in next page */
|
|
|
|
GstClockTime first_time; /* the timestamp of the second page or granuletime of first page */
|
|
|
|
|
2011-05-16 11:48:11 +00:00
|
|
|
GstClockTime position; /* position when last push occured; used to detect when we
|
2009-09-10 08:00:16 +00:00
|
|
|
* need to send a newsegment update event for sparse streams */
|
|
|
|
|
2007-01-09 12:30:46 +00:00
|
|
|
GList *continued;
|
|
|
|
|
|
|
|
gboolean discont;
|
|
|
|
GstFlowReturn last_ret; /* last return of _pad_push() */
|
2010-04-02 14:37:21 +00:00
|
|
|
gboolean is_eos;
|
2007-01-09 12:30:46 +00:00
|
|
|
|
2010-01-21 16:32:33 +00:00
|
|
|
gboolean added;
|
2011-08-13 13:18:56 +00:00
|
|
|
|
|
|
|
/* push mode seeking */
|
|
|
|
GstClockTime push_kf_time;
|
|
|
|
GstClockTime push_sync_time;
|
2007-01-09 12:30:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstOggPadClass
|
|
|
|
{
|
|
|
|
GstPadClass parent_class;
|
|
|
|
};
|
|
|
|
|
2007-02-15 15:17:23 +00:00
|
|
|
/**
|
|
|
|
* GstOggDemux:
|
|
|
|
*
|
|
|
|
* The ogg demuxer object structure.
|
|
|
|
*/
|
2007-01-09 12:30:46 +00:00
|
|
|
struct _GstOggDemux
|
|
|
|
{
|
|
|
|
GstElement element;
|
|
|
|
|
|
|
|
GstPad *sinkpad;
|
|
|
|
|
|
|
|
gint64 length;
|
2009-04-28 09:24:19 +00:00
|
|
|
gint64 read_offset;
|
2007-01-09 12:30:46 +00:00
|
|
|
gint64 offset;
|
|
|
|
|
2010-01-25 11:31:24 +00:00
|
|
|
gboolean pullmode;
|
2007-01-09 12:30:46 +00:00
|
|
|
gboolean running;
|
|
|
|
|
|
|
|
gboolean need_chains;
|
2010-05-04 09:19:39 +00:00
|
|
|
gboolean resync;
|
2007-01-09 12:30:46 +00:00
|
|
|
|
2011-10-22 19:20:38 +00:00
|
|
|
/* keep track of how large pages and packets are,
|
|
|
|
useful for skewing when seeking */
|
|
|
|
guint64 max_packet_size, max_page_size;
|
|
|
|
|
2007-01-09 12:30:46 +00:00
|
|
|
/* state */
|
|
|
|
GMutex *chain_lock; /* we need the lock to protect the chains */
|
|
|
|
GArray *chains; /* list of chains we know */
|
|
|
|
GstClockTime total_time;
|
2010-04-30 15:41:05 +00:00
|
|
|
gint bitrate; /* bitrate of the current chain */
|
2007-01-09 12:30:46 +00:00
|
|
|
|
|
|
|
GstOggChain *current_chain;
|
|
|
|
GstOggChain *building_chain;
|
|
|
|
|
|
|
|
/* playback start/stop positions */
|
|
|
|
GstSegment segment;
|
2008-11-04 17:24:35 +00:00
|
|
|
guint32 seqnum;
|
2007-01-09 12:30:46 +00:00
|
|
|
|
|
|
|
GstEvent *event;
|
|
|
|
GstEvent *newsegment; /* pending newsegment to be sent from _loop */
|
|
|
|
|
|
|
|
/* annodex stuff */
|
|
|
|
gint64 basetime;
|
2008-05-13 07:28:21 +00:00
|
|
|
gint64 prestime;
|
2007-01-09 12:30:46 +00:00
|
|
|
|
2011-08-13 13:18:56 +00:00
|
|
|
/* push mode seeking support */
|
|
|
|
GMutex *push_lock; /* we need the lock to protect the push mode variables */
|
|
|
|
gint64 push_byte_offset; /* where were are at in the stream, in bytes */
|
|
|
|
gint64 push_byte_length; /* length in bytes of the stream, -1 if unknown */
|
|
|
|
GstClockTime push_time_length; /* length in time of the stream */
|
|
|
|
GstClockTime push_start_time; /* start time of the stream */
|
|
|
|
GstClockTime push_time_offset; /* where were are at in the stream, in time */
|
|
|
|
enum { PUSH_PLAYING, PUSH_DURATION, PUSH_BISECT1, PUSH_LINEAR1, PUSH_BISECT2, PUSH_LINEAR2 } push_state;
|
|
|
|
|
|
|
|
GstClockTime push_seek_time_original_target;
|
|
|
|
GstClockTime push_seek_time_target;
|
|
|
|
gint64 push_last_seek_offset;
|
|
|
|
GstClockTime push_last_seek_time;
|
|
|
|
gint64 push_offset0, push_offset1; /* bisection search offset bounds */
|
|
|
|
GstClockTime push_time0, push_time1; /* bisection search time bounds */
|
|
|
|
|
|
|
|
double push_seek_rate;
|
|
|
|
GstSeekFlags push_seek_flags;
|
|
|
|
GstEvent *push_mode_seek_delayed_event;
|
|
|
|
gboolean push_disable_seeking;
|
2011-10-22 19:20:38 +00:00
|
|
|
gboolean seek_secant;
|
|
|
|
gboolean seek_undershot;
|
|
|
|
GstClockTime push_prev_seek_time;
|
2011-08-13 13:18:56 +00:00
|
|
|
|
|
|
|
gint push_bisection_steps[2];
|
2011-10-21 18:38:19 +00:00
|
|
|
gint stats_bisection_steps[2];
|
|
|
|
gint stats_bisection_max_steps[2];
|
|
|
|
gint stats_nbisections;
|
2011-08-13 13:18:56 +00:00
|
|
|
|
2007-01-09 12:30:46 +00:00
|
|
|
/* ogg stuff */
|
|
|
|
ogg_sync_state sync;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstOggDemuxClass
|
|
|
|
{
|
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2010-03-11 12:32:14 +00:00
|
|
|
gboolean gst_ogg_demux_plugin_init (GstPlugin * plugin);
|
2009-08-29 17:51:48 +00:00
|
|
|
|
2007-01-09 12:30:46 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_OGG_DEMUX_H__ */
|