2006-03-01 16:24:37 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
|
|
|
*
|
|
|
|
* 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_THEORADEC_H__
|
|
|
|
#define __GST_THEORADEC_H__
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2009-07-31 21:59:03 +00:00
|
|
|
#include <theora/theoradec.h>
|
2006-03-01 16:24:37 +00:00
|
|
|
#include <string.h>
|
2011-04-29 14:52:23 +00:00
|
|
|
#include <gst/video/video.h>
|
2006-03-01 16:24:37 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_THEORA_DEC \
|
|
|
|
(gst_theora_dec_get_type())
|
|
|
|
#define GST_THEORA_DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_THEORA_DEC,GstTheoraDec))
|
|
|
|
#define GST_THEORA_DEC_CLASS(klass) \
|
2006-06-01 19:19:51 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_THEORA_DEC,GstTheoraDecClass))
|
2006-03-01 16:24:37 +00:00
|
|
|
#define GST_IS_THEORA_DEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_THEORA_DEC))
|
2006-06-01 19:19:51 +00:00
|
|
|
#define GST_IS_THEORA_DEC_CLASS(klass) \
|
2006-03-01 16:24:37 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_THEORA_DEC))
|
|
|
|
|
|
|
|
typedef struct _GstTheoraDec GstTheoraDec;
|
|
|
|
typedef struct _GstTheoraDecClass GstTheoraDecClass;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstTheoraDec:
|
|
|
|
*
|
|
|
|
* Opaque object data structure.
|
|
|
|
*/
|
|
|
|
struct _GstTheoraDec
|
|
|
|
{
|
|
|
|
GstElement element;
|
|
|
|
|
ext/libvisual/visual.c: Small cleanups.
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_get_type),
(gst_visual_src_setcaps), (gst_vis_src_negotiate),
(gst_visual_chain):
Small cleanups.
* ext/theora/gsttheoradec.h:
* ext/theora/theoradec.c: (gst_theora_dec_init),
(gst_theora_dec_reset), (_theora_granule_time),
(theora_dec_src_convert), (theora_dec_sink_convert),
(theora_dec_src_query), (theora_dec_src_event),
(theora_dec_sink_event), (theora_handle_comment_packet),
(theora_handle_header_packet), (theora_dec_push),
(theora_handle_data_packet), (theora_dec_chain),
(theora_dec_change_state):
Add simple QoS.
2006-03-09 17:58:00 +00:00
|
|
|
/* Pads */
|
2006-03-01 16:24:37 +00:00
|
|
|
GstPad *sinkpad;
|
|
|
|
GstPad *srcpad;
|
|
|
|
|
ext/libvisual/visual.c: Small cleanups.
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_get_type),
(gst_visual_src_setcaps), (gst_vis_src_negotiate),
(gst_visual_chain):
Small cleanups.
* ext/theora/gsttheoradec.h:
* ext/theora/theoradec.c: (gst_theora_dec_init),
(gst_theora_dec_reset), (_theora_granule_time),
(theora_dec_src_convert), (theora_dec_sink_convert),
(theora_dec_src_query), (theora_dec_src_event),
(theora_dec_sink_event), (theora_handle_comment_packet),
(theora_handle_header_packet), (theora_dec_push),
(theora_handle_data_packet), (theora_dec_chain),
(theora_dec_change_state):
Add simple QoS.
2006-03-09 17:58:00 +00:00
|
|
|
/* theora decoder state */
|
2009-07-31 21:59:03 +00:00
|
|
|
th_dec_ctx *decoder;
|
|
|
|
th_setup_info *setup;
|
|
|
|
th_info info;
|
|
|
|
th_comment comment;
|
2006-03-01 16:24:37 +00:00
|
|
|
|
|
|
|
gboolean have_header;
|
|
|
|
|
|
|
|
GstClockTime last_timestamp;
|
2010-03-19 14:37:04 +00:00
|
|
|
guint64 frame_nr;
|
2006-03-01 16:24:37 +00:00
|
|
|
gboolean need_keyframe;
|
2011-06-17 13:31:59 +00:00
|
|
|
GstVideoInfo vinfo;
|
|
|
|
|
2009-04-28 04:01:51 +00:00
|
|
|
gint output_bpp;
|
2011-04-29 14:52:23 +00:00
|
|
|
GstBufferPool *pool;
|
2011-12-23 15:09:13 +00:00
|
|
|
gboolean has_cropping;
|
|
|
|
gboolean need_cropping;
|
2006-03-01 16:24:37 +00:00
|
|
|
|
2011-09-13 19:10:43 +00:00
|
|
|
/* telemetry debugging options */
|
2010-10-09 22:49:35 +00:00
|
|
|
gint telemetry_mv;
|
|
|
|
gint telemetry_mbmode;
|
|
|
|
gint telemetry_qi;
|
|
|
|
gint telemetry_bits;
|
|
|
|
|
2006-03-01 16:24:37 +00:00
|
|
|
gboolean crop;
|
|
|
|
|
2006-11-02 15:06:36 +00:00
|
|
|
/* list of buffers that need timestamps */
|
2006-03-01 16:24:37 +00:00
|
|
|
GList *queued;
|
2006-11-02 15:06:36 +00:00
|
|
|
/* list of raw output buffers */
|
|
|
|
GList *output;
|
|
|
|
/* gather/decode queues for reverse playback */
|
|
|
|
GList *gather;
|
|
|
|
GList *decode;
|
2008-11-04 18:17:24 +00:00
|
|
|
GList *pendingevents;
|
2006-03-01 16:24:37 +00:00
|
|
|
|
2007-05-07 11:43:31 +00:00
|
|
|
GstTagList *tags;
|
|
|
|
|
ext/libvisual/visual.c: Small cleanups.
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_get_type),
(gst_visual_src_setcaps), (gst_vis_src_negotiate),
(gst_visual_chain):
Small cleanups.
* ext/theora/gsttheoradec.h:
* ext/theora/theoradec.c: (gst_theora_dec_init),
(gst_theora_dec_reset), (_theora_granule_time),
(theora_dec_src_convert), (theora_dec_sink_convert),
(theora_dec_src_query), (theora_dec_src_event),
(theora_dec_sink_event), (theora_handle_comment_packet),
(theora_handle_header_packet), (theora_dec_push),
(theora_handle_data_packet), (theora_dec_chain),
(theora_dec_change_state):
Add simple QoS.
2006-03-09 17:58:00 +00:00
|
|
|
/* segment info */ /* with STREAM_LOCK */
|
|
|
|
GstSegment segment;
|
ext/ogg/gstoggdemux.c: Mark buffers with DISCONT after seek and after activating new chains.
Original commit message from CVS:
* ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
(gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
(gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
Mark buffers with DISCONT after seek and after activating new
chains.
* ext/theora/gsttheoradec.h:
* ext/theora/theoradec.c: (gst_theora_dec_reset),
(theora_get_query_types), (theora_dec_sink_event),
(theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
(theora_dec_change_state):
Fix frame counter.
Detect and mark DISCONT buffers.
* ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
(vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
(vorbis_dec_change_state):
* ext/vorbis/vorbisdec.h:
Use GstSegment.
Detect and mark DISCONT buffers.
Don't crash on 0 sized buffers.
2006-05-03 15:34:48 +00:00
|
|
|
gboolean discont;
|
2008-11-04 18:17:24 +00:00
|
|
|
guint32 seqnum;
|
ext/libvisual/visual.c: Small cleanups.
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_get_type),
(gst_visual_src_setcaps), (gst_vis_src_negotiate),
(gst_visual_chain):
Small cleanups.
* ext/theora/gsttheoradec.h:
* ext/theora/theoradec.c: (gst_theora_dec_init),
(gst_theora_dec_reset), (_theora_granule_time),
(theora_dec_src_convert), (theora_dec_sink_convert),
(theora_dec_src_query), (theora_dec_src_event),
(theora_dec_sink_event), (theora_handle_comment_packet),
(theora_handle_header_packet), (theora_dec_push),
(theora_handle_data_packet), (theora_dec_chain),
(theora_dec_change_state):
Add simple QoS.
2006-03-09 17:58:00 +00:00
|
|
|
|
|
|
|
/* QoS stuff */ /* with LOCK*/
|
2006-04-03 16:43:10 +00:00
|
|
|
gdouble proportion;
|
ext/libvisual/visual.c: Small cleanups.
Original commit message from CVS:
* ext/libvisual/visual.c: (gst_visual_get_type),
(gst_visual_src_setcaps), (gst_vis_src_negotiate),
(gst_visual_chain):
Small cleanups.
* ext/theora/gsttheoradec.h:
* ext/theora/theoradec.c: (gst_theora_dec_init),
(gst_theora_dec_reset), (_theora_granule_time),
(theora_dec_src_convert), (theora_dec_sink_convert),
(theora_dec_src_query), (theora_dec_src_event),
(theora_dec_sink_event), (theora_handle_comment_packet),
(theora_handle_header_packet), (theora_dec_push),
(theora_handle_data_packet), (theora_dec_chain),
(theora_dec_change_state):
Add simple QoS.
2006-03-09 17:58:00 +00:00
|
|
|
GstClockTime earliest_time;
|
2010-03-19 14:37:04 +00:00
|
|
|
guint64 processed;
|
|
|
|
guint64 dropped;
|
2008-10-13 11:36:13 +00:00
|
|
|
|
|
|
|
gboolean have_par;
|
|
|
|
gint par_num;
|
|
|
|
gint par_den;
|
2006-03-01 16:24:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstTheoraDecClass
|
|
|
|
{
|
|
|
|
GstElementClass parent_class;
|
|
|
|
};
|
|
|
|
|
2010-03-11 12:32:14 +00:00
|
|
|
GType gst_theora_dec_get_type (void);
|
|
|
|
|
2006-03-01 16:24:37 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_THEORADEC_H__ */
|