2005-09-15 15:28:36 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2004 Wim Taymans <wim@fluendo.com>
|
2012-03-07 11:22:14 +00:00
|
|
|
* Copyright (c) 2012 Collabora Ltd.
|
|
|
|
* Author : Edward Hervey <edward@collabora.com>
|
|
|
|
* Author : Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
|
2005-09-15 15:28:36 +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
|
2012-11-03 23:05:09 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2005-09-15 15:28:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GST_THEORAENC_H__
|
|
|
|
#define __GST_THEORAENC_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
2010-07-04 18:29:53 +00:00
|
|
|
#include <gst/base/gstadapter.h>
|
2012-03-07 11:22:14 +00:00
|
|
|
#include <gst/video/gstvideoencoder.h>
|
2009-09-09 21:44:36 +00:00
|
|
|
#include <theora/theoraenc.h>
|
2005-09-15 15:28:36 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_THEORA_ENC \
|
|
|
|
(gst_theora_enc_get_type())
|
|
|
|
#define GST_THEORA_ENC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_THEORA_ENC,GstTheoraEnc))
|
|
|
|
#define GST_THEORA_ENC_CLASS(klass) \
|
2006-06-01 19:19:51 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_THEORA_ENC,GstTheoraEncClass))
|
2005-09-15 15:28:36 +00:00
|
|
|
#define GST_IS_THEORA_ENC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_THEORA_ENC))
|
2006-06-01 19:19:51 +00:00
|
|
|
#define GST_IS_THEORA_ENC_CLASS(klass) \
|
2005-09-15 15:28:36 +00:00
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_THEORA_ENC))
|
|
|
|
|
|
|
|
typedef struct _GstTheoraEnc GstTheoraEnc;
|
|
|
|
typedef struct _GstTheoraEncClass GstTheoraEncClass;
|
|
|
|
|
2010-07-04 18:29:53 +00:00
|
|
|
/**
|
|
|
|
* GstTheoraEncMultipassMode:
|
|
|
|
* @MULTIPASS_MODE_SINGLE_PASS: Single pass encoding
|
|
|
|
* @MULTIPASS_MODE_FIRST_PASS: First pass of two pass encoding
|
|
|
|
* @MULTIPASS_MODE_SECOND_PASS: Second pass of two pass encoding
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
MULTIPASS_MODE_SINGLE_PASS,
|
|
|
|
MULTIPASS_MODE_FIRST_PASS,
|
|
|
|
MULTIPASS_MODE_SECOND_PASS
|
|
|
|
} GstTheoraEncMultipassMode;
|
|
|
|
|
2006-03-01 16:24:37 +00:00
|
|
|
/**
|
|
|
|
* GstTheoraEnc:
|
|
|
|
*
|
|
|
|
* Opaque data structure.
|
|
|
|
*/
|
2005-09-15 15:28:36 +00:00
|
|
|
struct _GstTheoraEnc
|
|
|
|
{
|
2012-03-07 11:22:14 +00:00
|
|
|
GstVideoEncoder element;
|
2008-11-25 15:14:30 +00:00
|
|
|
|
2005-09-15 15:28:36 +00:00
|
|
|
ogg_stream_state to;
|
|
|
|
|
2009-09-09 21:44:36 +00:00
|
|
|
th_enc_ctx *encoder;
|
|
|
|
th_info info;
|
|
|
|
th_comment comment;
|
2007-04-19 16:58:53 +00:00
|
|
|
gboolean initialised;
|
2005-09-15 15:28:36 +00:00
|
|
|
|
|
|
|
gint video_bitrate; /* bitrate target for Theora video */
|
2010-09-21 22:57:42 +00:00
|
|
|
gboolean bitrate_changed;
|
2005-09-15 15:28:36 +00:00
|
|
|
gint video_quality; /* Theora quality selector 0 = low, 63 = high */
|
2010-09-21 22:57:42 +00:00
|
|
|
gboolean quality_changed;
|
2005-09-15 15:28:36 +00:00
|
|
|
gboolean keyframe_auto;
|
|
|
|
gint keyframe_freq;
|
|
|
|
gint keyframe_force;
|
|
|
|
|
2012-03-07 11:22:14 +00:00
|
|
|
GstVideoCodecState *input_state;
|
|
|
|
|
2005-09-15 15:28:36 +00:00
|
|
|
gint width, height;
|
2006-01-30 17:01:54 +00:00
|
|
|
gint fps_n, fps_d;
|
2009-04-14 16:16:37 +00:00
|
|
|
|
2005-09-15 15:28:36 +00:00
|
|
|
guint packetno;
|
|
|
|
guint64 bytes_out;
|
2006-01-30 17:01:54 +00:00
|
|
|
guint64 granulepos_offset;
|
|
|
|
guint64 timestamp_offset;
|
2012-03-07 11:22:14 +00:00
|
|
|
guint64 pfn_offset;
|
2009-02-19 20:18:29 +00:00
|
|
|
|
|
|
|
gint speed_level;
|
2009-12-21 01:34:46 +00:00
|
|
|
gboolean vp3_compatible;
|
|
|
|
gboolean drop_frames;
|
|
|
|
gboolean cap_overflow;
|
|
|
|
gboolean cap_underflow;
|
|
|
|
int rate_buffer;
|
2010-07-04 18:29:53 +00:00
|
|
|
|
|
|
|
GstTheoraEncMultipassMode multipass_mode;
|
|
|
|
GIOChannel *multipass_cache_fd;
|
|
|
|
GstAdapter *multipass_cache_adapter;
|
|
|
|
gchar *multipass_cache_file;
|
2005-09-15 15:28:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstTheoraEncClass
|
|
|
|
{
|
2012-03-07 11:22:14 +00:00
|
|
|
GstVideoEncoderClass parent_class;
|
2005-09-15 15:28:36 +00:00
|
|
|
};
|
|
|
|
|
2010-03-11 12:32:14 +00:00
|
|
|
GType gst_theora_enc_get_type (void);
|
|
|
|
|
2005-09-15 15:28:36 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GST_THEORAENC_H__ */
|
|
|
|
|