2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-23 06:03:21 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2001-12-23 06:03:21 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#include "gstmpeg2dec.h"
|
|
|
|
|
2003-09-11 17:13:24 +00:00
|
|
|
/* mpeg2dec changed a struct name after 0.3.1, here's a workaround */
|
|
|
|
/* mpeg2dec also only defined MPEG2_RELEASE after 0.3.1
|
|
|
|
#if MPEG2_RELEASE < MPEG2_VERSION(0,3,2)
|
|
|
|
*/
|
|
|
|
#ifndef MPEG2_RELEASE
|
2004-01-03 23:45:32 +00:00
|
|
|
#define MPEG2_VERSION(a,b,c) ((((a)&0xff)<<16)|(((b)&0xff)<<8)|((c)&0xff))
|
|
|
|
#define MPEG2_RELEASE MPEG2_VERSION(0,3,1)
|
2003-09-11 17:13:24 +00:00
|
|
|
typedef picture_t mpeg2_picture_t;
|
2003-10-06 12:16:21 +00:00
|
|
|
typedef gint mpeg2_state_t;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2003-10-07 10:08:30 +00:00
|
|
|
#define STATE_BUFFER 0
|
2003-09-11 17:13:24 +00:00
|
|
|
#endif
|
|
|
|
|
2003-07-25 02:04:01 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (GST_CAT_SEEK);
|
2004-04-01 11:48:27 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (mpeg2dec_debug);
|
|
|
|
#define GST_CAT_DEFAULT (mpeg2dec_debug)
|
2003-07-25 02:04:01 +00:00
|
|
|
|
2004-05-05 09:13:42 +00:00
|
|
|
/* table with framerates expressed as fractions */
|
|
|
|
static gdouble fpss[] = { 24.0 / 1.001, 24.0, 25.0,
|
|
|
|
30.0 / 1.001, 30.0, 50.0,
|
|
|
|
60.0 / 1.001, 60.0, 0
|
|
|
|
};
|
|
|
|
|
|
|
|
/* frame periods */
|
|
|
|
static guint frame_periods[] = {
|
|
|
|
1126125, 1125000, 1080000, 900900, 900000, 540000, 450450, 450000, 0
|
|
|
|
};
|
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
/* elementfactory information */
|
|
|
|
static GstElementDetails gst_mpeg2dec_details = {
|
|
|
|
"mpeg1 and mpeg2 video decoder",
|
2003-11-16 22:02:04 +00:00
|
|
|
"Codec/Decoder/Video",
|
2001-12-23 06:03:21 +00:00
|
|
|
"Uses libmpeg2 to decode MPEG video streams",
|
2002-12-19 07:45:11 +00:00
|
|
|
"Wim Taymans <wim.taymans@chello.be>",
|
2001-12-23 06:03:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Mpeg2dec signals and args */
|
2004-03-14 22:34:30 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-23 06:03:21 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-23 06:03:21 +00:00
|
|
|
ARG_0,
|
|
|
|
/* FILL ME */
|
|
|
|
};
|
|
|
|
|
2004-05-05 09:13:42 +00:00
|
|
|
/*
|
|
|
|
* We can't use fractions in static pad templates, so
|
|
|
|
* we do something manual...
|
|
|
|
*/
|
|
|
|
static GstPadTemplate *
|
|
|
|
src_templ (void)
|
|
|
|
{
|
|
|
|
static GstPadTemplate *templ = NULL;
|
|
|
|
|
|
|
|
if (!templ) {
|
|
|
|
GstCaps *caps;
|
|
|
|
GstStructure *structure;
|
|
|
|
GValue list = { 0 }
|
|
|
|
, fps =
|
|
|
|
{
|
|
|
|
0}
|
|
|
|
, fmt = {
|
|
|
|
0};
|
|
|
|
char *fmts[] = { "YV12", "I420", "Y42B", NULL };
|
|
|
|
guint n;
|
|
|
|
|
|
|
|
caps = gst_caps_new_simple ("video/x-raw-yuv",
|
|
|
|
"format", GST_TYPE_FOURCC,
|
|
|
|
GST_MAKE_FOURCC ('I', '4', '2', '0'),
|
|
|
|
"width", GST_TYPE_INT_RANGE, 16, 4096,
|
|
|
|
"height", GST_TYPE_INT_RANGE, 16, 4096, NULL);
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
g_value_init (&list, GST_TYPE_LIST);
|
|
|
|
g_value_init (&fps, G_TYPE_DOUBLE);
|
|
|
|
for (n = 0; fpss[n] != 0; n++) {
|
|
|
|
g_value_set_double (&fps, fpss[n]);
|
|
|
|
gst_value_list_append_value (&list, &fps);
|
|
|
|
}
|
|
|
|
gst_structure_set_value (structure, "framerate", &list);
|
|
|
|
g_value_unset (&list);
|
|
|
|
g_value_unset (&fps);
|
|
|
|
|
|
|
|
g_value_init (&list, GST_TYPE_LIST);
|
|
|
|
g_value_init (&fmt, GST_TYPE_FOURCC);
|
|
|
|
for (n = 0; fmts[n] != NULL; n++) {
|
|
|
|
gst_value_set_fourcc (&fmt, GST_STR_FOURCC (fmts[n]));
|
|
|
|
gst_value_list_append_value (&list, &fmt);
|
|
|
|
}
|
|
|
|
gst_structure_set_value (structure, "format", &list);
|
|
|
|
g_value_unset (&list);
|
|
|
|
g_value_unset (&fmt);
|
|
|
|
|
|
|
|
templ = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS, caps);
|
|
|
|
}
|
|
|
|
return templ;
|
|
|
|
}
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-13 00:19:26 +00:00
|
|
|
#ifdef enable_user_data
|
2003-12-22 01:47:08 +00:00
|
|
|
static GstStaticPadTemplate user_data_template_factory =
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("user_data",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS_ANY);
|
2004-03-13 00:19:26 +00:00
|
|
|
#endif
|
2002-12-19 07:45:11 +00:00
|
|
|
|
2003-12-22 01:47:08 +00:00
|
|
|
static GstStaticPadTemplate sink_template_factory =
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("video/mpeg, "
|
2004-03-15 19:32:25 +00:00
|
|
|
"mpegversion = (int) [ 1, 2 ], " "systemstream = (boolean) false")
|
2004-03-14 22:34:30 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static void gst_mpeg2dec_base_init (gpointer g_class);
|
|
|
|
static void gst_mpeg2dec_class_init (GstMpeg2decClass * klass);
|
|
|
|
static void gst_mpeg2dec_init (GstMpeg2dec * mpeg2dec);
|
|
|
|
|
|
|
|
static void gst_mpeg2dec_dispose (GObject * object);
|
|
|
|
|
|
|
|
static void gst_mpeg2dec_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_mpeg2dec_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_mpeg2dec_set_index (GstElement * element, GstIndex * index);
|
|
|
|
static GstIndex *gst_mpeg2dec_get_index (GstElement * element);
|
|
|
|
|
|
|
|
static const GstFormat *gst_mpeg2dec_get_src_formats (GstPad * pad);
|
|
|
|
static const GstEventMask *gst_mpeg2dec_get_src_event_masks (GstPad * pad);
|
|
|
|
static gboolean gst_mpeg2dec_src_event (GstPad * pad, GstEvent * event);
|
|
|
|
static const GstQueryType *gst_mpeg2dec_get_src_query_types (GstPad * pad);
|
|
|
|
static gboolean gst_mpeg2dec_src_query (GstPad * pad, GstQueryType type,
|
|
|
|
GstFormat * format, gint64 * value);
|
|
|
|
|
|
|
|
static const GstFormat *gst_mpeg2dec_get_sink_formats (GstPad * pad);
|
|
|
|
static gboolean gst_mpeg2dec_convert_sink (GstPad * pad, GstFormat src_format,
|
|
|
|
gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
|
|
|
|
static gboolean gst_mpeg2dec_convert_src (GstPad * pad, GstFormat src_format,
|
|
|
|
gint64 src_value, GstFormat * dest_format, gint64 * dest_value);
|
|
|
|
|
|
|
|
static GstElementStateReturn gst_mpeg2dec_change_state (GstElement * element);
|
|
|
|
|
|
|
|
static void gst_mpeg2dec_chain (GstPad * pad, GstData * _data);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
/*static guint gst_mpeg2dec_signals[LAST_SIGNAL] = { 0 };*/
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_mpeg2dec_get_type (void)
|
|
|
|
{
|
|
|
|
static GType mpeg2dec_type = 0;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
if (!mpeg2dec_type) {
|
|
|
|
static const GTypeInfo mpeg2dec_info = {
|
2004-03-14 22:34:30 +00:00
|
|
|
sizeof (GstMpeg2decClass),
|
2003-11-02 00:33:31 +00:00
|
|
|
gst_mpeg2dec_base_init,
|
2001-12-23 06:03:21 +00:00
|
|
|
NULL,
|
2004-03-14 22:34:30 +00:00
|
|
|
(GClassInitFunc) gst_mpeg2dec_class_init,
|
2001-12-23 06:03:21 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:30 +00:00
|
|
|
sizeof (GstMpeg2dec),
|
2001-12-23 06:03:21 +00:00
|
|
|
0,
|
2004-03-14 22:34:30 +00:00
|
|
|
(GInstanceInitFunc) gst_mpeg2dec_init,
|
2001-12-23 06:03:21 +00:00
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
mpeg2dec_type =
|
2004-03-15 19:32:25 +00:00
|
|
|
g_type_register_static (GST_TYPE_ELEMENT, "GstMpeg2dec", &mpeg2dec_info,
|
|
|
|
0);
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
2004-04-01 11:48:27 +00:00
|
|
|
|
|
|
|
GST_DEBUG_CATEGORY_INIT (mpeg2dec_debug, "mpeg2dec", 0,
|
|
|
|
"MPEG2 decoder element");
|
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
return mpeg2dec_type;
|
|
|
|
}
|
|
|
|
|
2003-11-02 00:33:31 +00:00
|
|
|
static void
|
|
|
|
gst_mpeg2dec_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
2004-05-05 09:13:42 +00:00
|
|
|
gst_element_class_add_pad_template (element_class, src_templ ());
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&sink_template_factory));
|
2004-03-13 00:19:26 +00:00
|
|
|
#ifdef enable_user_data
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&user_data_template_factory));
|
2004-03-13 00:19:26 +00:00
|
|
|
#endif
|
2003-11-02 00:33:31 +00:00
|
|
|
gst_element_class_set_details (element_class, &gst_mpeg2dec_details);
|
|
|
|
}
|
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_class_init (GstMpeg2decClass * klass)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
gobject_class->set_property = gst_mpeg2dec_set_property;
|
|
|
|
gobject_class->get_property = gst_mpeg2dec_get_property;
|
|
|
|
gobject_class->dispose = gst_mpeg2dec_dispose;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
gstelement_class->change_state = gst_mpeg2dec_change_state;
|
2004-03-14 22:34:30 +00:00
|
|
|
gstelement_class->set_index = gst_mpeg2dec_set_index;
|
|
|
|
gstelement_class->get_index = gst_mpeg2dec_get_index;
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_init (GstMpeg2dec * mpeg2dec)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2002-12-05 00:29:11 +00:00
|
|
|
/* create the sink and src pads */
|
2004-03-14 22:34:30 +00:00
|
|
|
mpeg2dec->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&sink_template_factory), "sink");
|
2002-12-05 00:29:11 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (mpeg2dec), mpeg2dec->sinkpad);
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_pad_set_chain_function (mpeg2dec->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_chain));
|
|
|
|
gst_pad_set_formats_function (mpeg2dec->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_get_sink_formats));
|
|
|
|
gst_pad_set_convert_function (mpeg2dec->sinkpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_convert_sink));
|
|
|
|
|
2004-05-05 09:13:42 +00:00
|
|
|
mpeg2dec->srcpad = gst_pad_new_from_template (src_templ (), "src");
|
2002-12-05 00:29:11 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (mpeg2dec), mpeg2dec->srcpad);
|
2004-01-02 07:09:23 +00:00
|
|
|
gst_pad_use_explicit_caps (mpeg2dec->srcpad);
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_pad_set_formats_function (mpeg2dec->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_get_src_formats));
|
|
|
|
gst_pad_set_event_mask_function (mpeg2dec->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_get_src_event_masks));
|
|
|
|
gst_pad_set_event_function (mpeg2dec->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_src_event));
|
|
|
|
gst_pad_set_query_type_function (mpeg2dec->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_get_src_query_types));
|
|
|
|
gst_pad_set_query_function (mpeg2dec->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_src_query));
|
|
|
|
gst_pad_set_convert_function (mpeg2dec->srcpad,
|
|
|
|
GST_DEBUG_FUNCPTR (gst_mpeg2dec_convert_src));
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-13 00:19:26 +00:00
|
|
|
#ifdef enable_user_data
|
2004-03-14 22:34:30 +00:00
|
|
|
mpeg2dec->userdatapad =
|
|
|
|
gst_pad_new_from_template (gst_static_pad_template_get
|
|
|
|
(&user_data_template_factory), "user_data");
|
2002-12-19 07:45:11 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (mpeg2dec), mpeg2dec->userdatapad);
|
2004-03-13 00:19:26 +00:00
|
|
|
#endif
|
2002-12-19 07:45:11 +00:00
|
|
|
|
2002-12-23 00:32:36 +00:00
|
|
|
/* initialize the mpeg2dec acceleration */
|
2002-12-19 20:05:10 +00:00
|
|
|
mpeg2_accel (MPEG2_ACCEL_DETECT);
|
2002-12-26 22:46:26 +00:00
|
|
|
mpeg2dec->closed = TRUE;
|
2002-12-27 04:04:04 +00:00
|
|
|
mpeg2dec->have_fbuf = FALSE;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
GST_FLAG_SET (GST_ELEMENT (mpeg2dec), GST_ELEMENT_EVENT_AWARE);
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_close_decoder (GstMpeg2dec * mpeg2dec)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2002-12-23 00:32:36 +00:00
|
|
|
if (!mpeg2dec->closed) {
|
2002-12-05 00:29:11 +00:00
|
|
|
mpeg2_close (mpeg2dec->decoder);
|
2002-12-23 00:32:36 +00:00
|
|
|
mpeg2dec->closed = TRUE;
|
2002-12-26 22:46:26 +00:00
|
|
|
mpeg2dec->decoder = NULL;
|
2002-12-23 00:32:36 +00:00
|
|
|
}
|
2002-12-26 22:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_open_decoder (GstMpeg2dec * mpeg2dec)
|
2002-12-26 22:46:26 +00:00
|
|
|
{
|
|
|
|
gst_mpeg2dec_close_decoder (mpeg2dec);
|
|
|
|
mpeg2dec->decoder = mpeg2_init ();
|
|
|
|
mpeg2dec->closed = FALSE;
|
2002-12-27 04:04:04 +00:00
|
|
|
mpeg2dec->have_fbuf = FALSE;
|
2002-12-26 22:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_dispose (GObject * object)
|
2002-12-26 22:46:26 +00:00
|
|
|
{
|
|
|
|
GstMpeg2dec *mpeg2dec = GST_MPEG2DEC (object);
|
|
|
|
|
|
|
|
gst_mpeg2dec_close_decoder (mpeg2dec);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_set_index (GstElement * element, GstIndex * index)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2002-12-05 00:29:11 +00:00
|
|
|
GstMpeg2dec *mpeg2dec = GST_MPEG2DEC (element);
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2002-12-12 22:15:39 +00:00
|
|
|
mpeg2dec->index = index;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-12 22:15:39 +00:00
|
|
|
gst_index_get_writer_id (index, GST_OBJECT (element), &mpeg2dec->index_id);
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static GstIndex *
|
|
|
|
gst_mpeg2dec_get_index (GstElement * element)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2002-12-05 00:29:11 +00:00
|
|
|
GstMpeg2dec *mpeg2dec = GST_MPEG2DEC (element);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-12 22:15:39 +00:00
|
|
|
return mpeg2dec->index;
|
2002-12-05 00:29:11 +00:00
|
|
|
}
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static GstBuffer *
|
|
|
|
gst_mpeg2dec_alloc_buffer (GstMpeg2dec * mpeg2dec, const mpeg2_info_t * info,
|
|
|
|
gint64 offset)
|
2002-12-05 00:29:11 +00:00
|
|
|
{
|
|
|
|
GstBuffer *outbuf = NULL;
|
|
|
|
gint size = mpeg2dec->width * mpeg2dec->height;
|
|
|
|
guint8 *buf[3], *out;
|
2003-09-11 17:13:24 +00:00
|
|
|
const mpeg2_picture_t *picture;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-31 06:31:47 +00:00
|
|
|
if (mpeg2dec->format == MPEG2DEC_FORMAT_I422) {
|
|
|
|
outbuf = gst_buffer_new_and_alloc (size * 2);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-31 06:31:47 +00:00
|
|
|
out = GST_BUFFER_DATA (outbuf);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-31 06:31:47 +00:00
|
|
|
buf[0] = out;
|
2002-12-05 00:29:11 +00:00
|
|
|
buf[1] = buf[0] + size;
|
2004-03-31 06:31:47 +00:00
|
|
|
buf[2] = buf[1] + size / 2;
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
} else {
|
2004-03-31 06:31:47 +00:00
|
|
|
outbuf = gst_buffer_new_and_alloc ((size * 3) / 2);
|
|
|
|
|
|
|
|
out = GST_BUFFER_DATA (outbuf);
|
|
|
|
|
|
|
|
buf[0] = out;
|
|
|
|
if (mpeg2dec->format == MPEG2DEC_FORMAT_I420) {
|
|
|
|
buf[0] = out;
|
|
|
|
buf[1] = buf[0] + size;
|
|
|
|
buf[2] = buf[1] + size / 4;
|
|
|
|
} else {
|
|
|
|
buf[0] = out;
|
|
|
|
buf[2] = buf[0] + size;
|
|
|
|
buf[1] = buf[2] + size / 4;
|
|
|
|
}
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
gst_buffer_ref (outbuf);
|
2004-04-01 11:48:27 +00:00
|
|
|
|
|
|
|
mpeg2_custom_fbuf (mpeg2dec->decoder, 1);
|
2002-12-05 00:29:11 +00:00
|
|
|
mpeg2_set_buf (mpeg2dec->decoder, buf, outbuf);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
picture = info->current_picture;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
if (picture
|
|
|
|
&& (picture->flags & PIC_MASK_CODING_TYPE) == PIC_FLAG_CODING_TYPE_I) {
|
2002-12-05 00:29:11 +00:00
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_KEY_UNIT);
|
2004-03-14 22:34:30 +00:00
|
|
|
} else {
|
2002-12-05 00:29:11 +00:00
|
|
|
GST_BUFFER_FLAG_UNSET (outbuf, GST_BUFFER_KEY_UNIT);
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
2002-12-23 00:32:36 +00:00
|
|
|
/* we store the original byteoffset of this picture in the stream here
|
|
|
|
* because we need it for indexing */
|
|
|
|
GST_BUFFER_OFFSET (outbuf) = offset;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
return outbuf;
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_negotiate_format (GstMpeg2dec * mpeg2dec)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2003-12-22 01:47:08 +00:00
|
|
|
GstCaps *caps;
|
2004-03-31 06:31:47 +00:00
|
|
|
guint32 fourcc, myFourcc;
|
2004-01-02 10:06:22 +00:00
|
|
|
gboolean ret;
|
2004-03-31 06:31:47 +00:00
|
|
|
const mpeg2_info_t *info;
|
|
|
|
const mpeg2_sequence_t *sequence;
|
2002-12-05 00:29:11 +00:00
|
|
|
|
2003-07-24 03:02:06 +00:00
|
|
|
if (!GST_PAD_IS_LINKED (mpeg2dec->srcpad)) {
|
|
|
|
mpeg2dec->format = MPEG2DEC_FORMAT_I420;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-03-31 06:31:47 +00:00
|
|
|
info = mpeg2_info (mpeg2dec->decoder);
|
|
|
|
sequence = info->sequence;
|
|
|
|
|
|
|
|
if (sequence->width != sequence->chroma_width &&
|
|
|
|
sequence->height != sequence->chroma_height)
|
|
|
|
myFourcc = GST_STR_FOURCC ("I420");
|
|
|
|
else if (sequence->width == sequence->chroma_width ||
|
|
|
|
sequence->height == sequence->chroma_height)
|
|
|
|
myFourcc = GST_STR_FOURCC ("Y42B");
|
|
|
|
else {
|
|
|
|
g_warning ("mpeg2dec: 4:4:4 format not yet supported");
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
2004-01-02 10:06:22 +00:00
|
|
|
caps = gst_caps_new_simple ("video/x-raw-yuv",
|
2004-03-31 06:31:47 +00:00
|
|
|
"format", GST_TYPE_FOURCC, myFourcc,
|
2004-03-14 22:34:30 +00:00
|
|
|
"width", G_TYPE_INT, mpeg2dec->width,
|
|
|
|
"height", G_TYPE_INT, mpeg2dec->height,
|
|
|
|
"pixel_width", G_TYPE_INT, mpeg2dec->pixel_width,
|
2003-12-22 01:47:08 +00:00
|
|
|
"pixel_height", G_TYPE_INT, mpeg2dec->pixel_height,
|
2004-05-05 09:13:42 +00:00
|
|
|
"framerate", G_TYPE_DOUBLE, mpeg2dec->frame_rate, NULL);
|
2003-12-22 01:47:08 +00:00
|
|
|
|
2004-01-02 07:09:23 +00:00
|
|
|
ret = gst_pad_set_explicit_caps (mpeg2dec->srcpad, caps);
|
2004-03-14 22:34:30 +00:00
|
|
|
if (!ret)
|
|
|
|
return FALSE;
|
2003-12-22 01:47:08 +00:00
|
|
|
|
|
|
|
/* it worked, try to find what it was again */
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_structure_get_fourcc (gst_caps_get_structure (caps, 0),
|
2003-12-22 01:47:08 +00:00
|
|
|
"format", &fourcc);
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2004-03-31 06:31:47 +00:00
|
|
|
if (fourcc == GST_STR_FOURCC ("Y42B")) {
|
|
|
|
mpeg2dec->format = MPEG2DEC_FORMAT_I422;
|
|
|
|
} else if (fourcc == GST_STR_FOURCC ("I420")) {
|
2003-12-22 01:47:08 +00:00
|
|
|
mpeg2dec->format = MPEG2DEC_FORMAT_I420;
|
|
|
|
} else {
|
|
|
|
mpeg2dec->format = MPEG2DEC_FORMAT_YV12;
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
2003-02-02 20:03:10 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
return TRUE;
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:47:08 +00:00
|
|
|
#if 0
|
2002-12-19 20:05:10 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
update_streaminfo (GstMpeg2dec * mpeg2dec)
|
2002-12-19 20:05:10 +00:00
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstProps *props;
|
|
|
|
GstPropsEntry *entry;
|
|
|
|
const mpeg2_info_t *info;
|
|
|
|
|
|
|
|
info = mpeg2_info (mpeg2dec->decoder);
|
|
|
|
|
|
|
|
props = gst_props_empty_new ();
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
entry =
|
|
|
|
gst_props_entry_new ("framerate",
|
|
|
|
G_TYPE_DOUBLE (GST_SECOND / (float) mpeg2dec->frame_period));
|
2002-12-19 20:05:10 +00:00
|
|
|
gst_props_add_entry (props, entry);
|
2004-03-14 22:34:30 +00:00
|
|
|
entry =
|
|
|
|
gst_props_entry_new ("bitrate",
|
|
|
|
G_TYPE_INT (info->sequence->byte_rate * 8));
|
2002-12-19 20:05:10 +00:00
|
|
|
gst_props_add_entry (props, entry);
|
|
|
|
|
|
|
|
caps = gst_caps_new ("mpeg2dec_streaminfo",
|
2004-03-14 22:34:30 +00:00
|
|
|
"application/x-gst-streaminfo", props);
|
2002-12-19 20:05:10 +00:00
|
|
|
|
2003-02-02 20:03:10 +00:00
|
|
|
gst_caps_replace_sink (&mpeg2dec->streaminfo, caps);
|
2002-12-19 20:05:10 +00:00
|
|
|
g_object_notify (G_OBJECT (mpeg2dec), "streaminfo");
|
|
|
|
}
|
2003-12-22 01:47:08 +00:00
|
|
|
#endif
|
2002-12-19 20:05:10 +00:00
|
|
|
|
2002-12-27 04:04:04 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_flush_decoder (GstMpeg2dec * mpeg2dec)
|
2002-12-27 04:04:04 +00:00
|
|
|
{
|
|
|
|
if (mpeg2dec->decoder) {
|
2004-05-07 16:17:25 +00:00
|
|
|
#if MPEG2_RELEASE < MPEG2_VERSION(0,4,0)
|
2002-12-27 04:04:04 +00:00
|
|
|
const mpeg2_info_t *info = mpeg2_info (mpeg2dec->decoder);
|
2004-05-07 16:17:25 +00:00
|
|
|
mpeg2_state_t state;
|
2002-12-27 04:04:04 +00:00
|
|
|
|
|
|
|
do {
|
|
|
|
state = mpeg2_parse (mpeg2dec->decoder);
|
|
|
|
if (state == STATE_END) {
|
2004-03-15 19:32:25 +00:00
|
|
|
if (info->discard_fbuf && info->discard_fbuf->id) {
|
|
|
|
gst_buffer_unref ((GstBuffer *) info->discard_fbuf->id);
|
|
|
|
}
|
2002-12-27 04:04:04 +00:00
|
|
|
}
|
2004-03-14 22:34:30 +00:00
|
|
|
}
|
2003-10-07 10:08:30 +00:00
|
|
|
while (state != STATE_BUFFER && state != -1);
|
2004-05-07 16:17:25 +00:00
|
|
|
#else
|
|
|
|
mpeg2_reset (mpeg2dec->decoder, 1);
|
|
|
|
#endif
|
2002-12-27 04:04:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_chain (GstPad * pad, GstData * _data)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2003-10-08 16:08:10 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2001-12-23 06:03:21 +00:00
|
|
|
GstMpeg2dec *mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
|
|
|
|
guint32 size;
|
2002-12-05 00:29:11 +00:00
|
|
|
guint8 *data, *end;
|
2001-12-23 06:03:21 +00:00
|
|
|
gint64 pts;
|
2002-12-05 00:29:11 +00:00
|
|
|
const mpeg2_info_t *info;
|
2003-10-06 12:16:21 +00:00
|
|
|
mpeg2_state_t state;
|
2002-12-05 00:29:11 +00:00
|
|
|
gboolean done = FALSE;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
if (GST_IS_EVENT (buf)) {
|
2002-05-26 21:59:22 +00:00
|
|
|
GstEvent *event = GST_EVENT (buf);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2002-06-02 11:57:12 +00:00
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2001-12-23 06:03:21 +00:00
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_DEBUG ("discont");
|
|
|
|
mpeg2dec->next_time = 0;
|
|
|
|
mpeg2dec->discont_state = MPEG2DEC_DISC_NEW_PICTURE;
|
|
|
|
gst_mpeg2dec_flush_decoder (mpeg2dec);
|
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
return;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
2001-12-23 06:03:21 +00:00
|
|
|
case GST_EVENT_EOS:
|
2004-03-15 19:32:25 +00:00
|
|
|
if (mpeg2dec->index && mpeg2dec->closed) {
|
|
|
|
gst_index_commit (mpeg2dec->index, mpeg2dec->index_id);
|
|
|
|
}
|
2001-12-23 06:03:21 +00:00
|
|
|
default:
|
2004-04-01 11:48:27 +00:00
|
|
|
GST_DEBUG ("Got event of type %d on sink pad", GST_EVENT_TYPE (event));
|
2004-03-15 19:32:25 +00:00
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
return;
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
size = GST_BUFFER_SIZE (buf);
|
|
|
|
data = GST_BUFFER_DATA (buf);
|
|
|
|
pts = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
info = mpeg2_info (mpeg2dec->decoder);
|
|
|
|
end = data + size;
|
|
|
|
|
|
|
|
if (pts != -1) {
|
|
|
|
gint64 mpeg_pts = GSTTIME_TO_MPEGTIME (pts);
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_DEBUG ("have pts: %" G_GINT64_FORMAT " (%" G_GINT64_FORMAT ")",
|
2004-03-15 19:32:25 +00:00
|
|
|
mpeg_pts, MPEGTIME_TO_GSTTIME (mpeg_pts));
|
2002-12-05 00:29:11 +00:00
|
|
|
|
2004-01-03 22:17:16 +00:00
|
|
|
#if MPEG2_RELEASE >= MPEG2_VERSION(0,4,0)
|
2004-03-14 22:34:30 +00:00
|
|
|
mpeg2_tag_picture (mpeg2dec->decoder, mpeg_pts & 0xffffffff,
|
2004-03-15 19:32:25 +00:00
|
|
|
mpeg_pts >> 32);
|
2004-01-03 22:17:16 +00:00
|
|
|
#else
|
2002-12-05 00:29:11 +00:00
|
|
|
mpeg2_pts (mpeg2dec->decoder, mpeg_pts);
|
2004-01-03 22:17:16 +00:00
|
|
|
#endif
|
2004-03-14 22:34:30 +00:00
|
|
|
} else {
|
2004-04-01 11:48:27 +00:00
|
|
|
GST_LOG ("no pts");
|
2002-06-02 11:57:12 +00:00
|
|
|
}
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-04-01 11:48:27 +00:00
|
|
|
GST_LOG ("calling mpeg2_buffer");
|
2002-12-05 00:29:11 +00:00
|
|
|
mpeg2_buffer (mpeg2dec->decoder, data, end);
|
2004-04-01 11:48:27 +00:00
|
|
|
GST_LOG ("calling mpeg2_buffer done");
|
2002-12-05 00:29:11 +00:00
|
|
|
|
|
|
|
while (!done) {
|
2002-12-26 22:46:26 +00:00
|
|
|
gboolean slice = FALSE;
|
|
|
|
|
2004-04-01 11:48:27 +00:00
|
|
|
GST_LOG ("calling parse");
|
2002-12-05 00:29:11 +00:00
|
|
|
state = mpeg2_parse (mpeg2dec->decoder);
|
2003-06-29 19:46:09 +00:00
|
|
|
GST_DEBUG ("parse state %d", state);
|
2002-12-05 00:29:11 +00:00
|
|
|
switch (state) {
|
|
|
|
case STATE_SEQUENCE:
|
|
|
|
{
|
2004-05-05 09:13:42 +00:00
|
|
|
gint i;
|
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
mpeg2dec->width = info->sequence->width;
|
|
|
|
mpeg2dec->height = info->sequence->height;
|
|
|
|
mpeg2dec->pixel_width = info->sequence->pixel_width;
|
|
|
|
mpeg2dec->pixel_height = info->sequence->pixel_height;
|
|
|
|
mpeg2dec->total_frames = 0;
|
2004-05-05 09:13:42 +00:00
|
|
|
|
|
|
|
/* find framerate */
|
|
|
|
for (i = 0; i < 9; i++) {
|
|
|
|
if (info->sequence->frame_period == frame_periods[i]) {
|
|
|
|
mpeg2dec->frame_rate = fpss[i];
|
|
|
|
}
|
|
|
|
}
|
2004-03-15 19:32:25 +00:00
|
|
|
mpeg2dec->frame_period =
|
|
|
|
info->sequence->frame_period * GST_USECOND / 27;
|
|
|
|
|
2004-05-05 09:13:42 +00:00
|
|
|
GST_DEBUG ("sequence flags: %d, frame period: %d, frame rate: %d",
|
|
|
|
info->sequence->flags, info->sequence->frame_period,
|
|
|
|
mpeg2dec->frame_rate);
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_DEBUG ("profile: %02x, colour_primaries: %d",
|
|
|
|
info->sequence->profile_level_id, info->sequence->colour_primaries);
|
|
|
|
GST_DEBUG ("transfer chars: %d, matrix coef: %d",
|
|
|
|
info->sequence->transfer_characteristics,
|
|
|
|
info->sequence->matrix_coefficients);
|
|
|
|
|
|
|
|
if (!gst_mpeg2dec_negotiate_format (mpeg2dec)) {
|
|
|
|
GST_ELEMENT_ERROR (mpeg2dec, CORE, NEGOTIATION, (NULL), (NULL));
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mpeg2dec->have_fbuf) {
|
|
|
|
/* alloc 3 buffers */
|
|
|
|
gst_mpeg2dec_alloc_buffer (mpeg2dec, info, GST_BUFFER_OFFSET (buf));
|
|
|
|
gst_mpeg2dec_alloc_buffer (mpeg2dec, info, GST_BUFFER_OFFSET (buf));
|
|
|
|
gst_mpeg2dec_alloc_buffer (mpeg2dec, info, GST_BUFFER_OFFSET (buf));
|
|
|
|
mpeg2dec->have_fbuf = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mpeg2dec->need_sequence = FALSE;
|
|
|
|
if (mpeg2dec->pending_event) {
|
|
|
|
done =
|
|
|
|
GST_EVENT_SEEK_FLAGS (mpeg2dec->
|
|
|
|
pending_event) & GST_SEEK_FLAG_FLUSH;
|
|
|
|
|
|
|
|
gst_mpeg2dec_src_event (mpeg2dec->srcpad, mpeg2dec->pending_event);
|
|
|
|
mpeg2dec->pending_event = NULL;
|
|
|
|
}
|
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
}
|
|
|
|
case STATE_SEQUENCE_REPEATED:
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_DEBUG ("sequence repeated");
|
2002-12-05 00:29:11 +00:00
|
|
|
case STATE_GOP:
|
2004-03-15 19:32:25 +00:00
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
case STATE_PICTURE:
|
|
|
|
{
|
2004-03-15 19:32:25 +00:00
|
|
|
gboolean key_frame = FALSE;
|
|
|
|
GstBuffer *outbuf;
|
2002-12-05 00:29:11 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
if (info->current_picture) {
|
|
|
|
key_frame =
|
|
|
|
(info->current_picture->flags & PIC_MASK_CODING_TYPE) ==
|
|
|
|
PIC_FLAG_CODING_TYPE_I;
|
|
|
|
}
|
|
|
|
outbuf =
|
|
|
|
gst_mpeg2dec_alloc_buffer (mpeg2dec, info, GST_BUFFER_OFFSET (buf));
|
2002-12-26 22:46:26 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_DEBUG ("picture %d, %p, %" G_GINT64_FORMAT ", %" G_GINT64_FORMAT,
|
|
|
|
key_frame, outbuf, GST_BUFFER_OFFSET (outbuf), pts);
|
2002-12-26 22:46:26 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
if (mpeg2dec->discont_state == MPEG2DEC_DISC_NEW_PICTURE && key_frame)
|
|
|
|
mpeg2dec->discont_state = MPEG2DEC_DISC_NEW_KEYFRAME;
|
2002-12-05 00:29:11 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
if (!GST_PAD_IS_USABLE (mpeg2dec->srcpad))
|
|
|
|
mpeg2_skip (mpeg2dec->decoder, 1);
|
|
|
|
else
|
|
|
|
mpeg2_skip (mpeg2dec->decoder, 0);
|
2002-12-05 00:29:11 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
}
|
|
|
|
case STATE_SLICE_1ST:
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_DEBUG ("slice 1st");
|
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
case STATE_PICTURE_2ND:
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_DEBUG ("picture second");
|
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
case STATE_SLICE:
|
2004-03-15 19:32:25 +00:00
|
|
|
slice = TRUE;
|
2004-01-14 06:41:52 +00:00
|
|
|
#if MPEG2_RELEASE >= MPEG2_VERSION (0, 4, 0)
|
|
|
|
case STATE_INVALID_END:
|
|
|
|
#endif
|
2002-12-05 00:29:11 +00:00
|
|
|
case STATE_END:
|
|
|
|
{
|
2004-03-15 19:32:25 +00:00
|
|
|
GstBuffer *outbuf = NULL;
|
|
|
|
gboolean skip = FALSE;
|
|
|
|
|
|
|
|
if (!slice) {
|
|
|
|
mpeg2dec->need_sequence = TRUE;
|
|
|
|
}
|
|
|
|
GST_DEBUG ("picture end %p %p %p %p", info->display_fbuf,
|
|
|
|
info->display_picture, info->current_picture,
|
|
|
|
(info->display_fbuf ? info->display_fbuf->id : NULL));
|
|
|
|
|
|
|
|
if (info->display_fbuf && info->display_fbuf->id) {
|
|
|
|
const mpeg2_picture_t *picture;
|
|
|
|
gboolean key_frame = FALSE;
|
|
|
|
|
|
|
|
outbuf = (GstBuffer *) info->display_fbuf->id;
|
|
|
|
picture = info->display_picture;
|
|
|
|
|
|
|
|
key_frame =
|
|
|
|
(picture->flags & PIC_MASK_CODING_TYPE) == PIC_FLAG_CODING_TYPE_I;
|
|
|
|
GST_DEBUG ("picture keyfame %d", key_frame);
|
|
|
|
|
|
|
|
if (key_frame) {
|
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_KEY_UNIT);
|
|
|
|
}
|
|
|
|
if (mpeg2dec->discont_state == MPEG2DEC_DISC_NEW_KEYFRAME
|
|
|
|
&& key_frame)
|
|
|
|
mpeg2dec->discont_state = MPEG2DEC_DISC_NONE;
|
2002-12-23 00:32:36 +00:00
|
|
|
|
2004-01-03 22:17:16 +00:00
|
|
|
#if MPEG2_RELEASE < MPEG2_VERSION(0,4,0)
|
2004-03-15 19:32:25 +00:00
|
|
|
if (picture->flags & PIC_FLAG_PTS) {
|
|
|
|
GstClockTime time = MPEGTIME_TO_GSTTIME (picture->pts);
|
2004-01-03 22:17:16 +00:00
|
|
|
#else
|
2004-03-15 19:32:25 +00:00
|
|
|
if (picture->flags & PIC_FLAG_TAGS) {
|
|
|
|
GstClockTime time =
|
|
|
|
MPEGTIME_TO_GSTTIME ((guint64) picture->tag2 << 32 | picture->
|
|
|
|
tag);
|
2004-01-03 22:17:16 +00:00
|
|
|
#endif
|
2001-12-23 06:03:21 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_DEBUG ("picture had pts %" G_GINT64_FORMAT, time);
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = mpeg2dec->next_time = time;
|
|
|
|
} else {
|
|
|
|
GST_DEBUG ("picture didn't have pts using %" G_GINT64_FORMAT,
|
|
|
|
mpeg2dec->next_time);
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = mpeg2dec->next_time;
|
|
|
|
}
|
|
|
|
|
|
|
|
mpeg2dec->next_time +=
|
|
|
|
(mpeg2dec->frame_period * picture->nb_fields) >> 1;
|
|
|
|
|
|
|
|
GST_DEBUG ("picture: %s %s fields:%d off:%" G_GINT64_FORMAT " ts:%"
|
|
|
|
G_GINT64_FORMAT,
|
|
|
|
(picture->flags & PIC_FLAG_TOP_FIELD_FIRST ? "tff " : " "),
|
|
|
|
(picture->flags & PIC_FLAG_PROGRESSIVE_FRAME ? "prog" : " "),
|
|
|
|
picture->nb_fields, GST_BUFFER_OFFSET (outbuf),
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf));
|
|
|
|
|
|
|
|
if (mpeg2dec->index) {
|
|
|
|
gst_index_add_association (mpeg2dec->index, mpeg2dec->index_id,
|
|
|
|
(key_frame ? GST_ASSOCIATION_FLAG_KEY_UNIT : 0),
|
|
|
|
GST_FORMAT_BYTES, GST_BUFFER_OFFSET (outbuf),
|
|
|
|
GST_FORMAT_TIME, GST_BUFFER_TIMESTAMP (outbuf), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (picture->flags & PIC_FLAG_SKIP ||
|
|
|
|
!GST_PAD_IS_USABLE (mpeg2dec->srcpad) ||
|
|
|
|
mpeg2dec->discont_state != MPEG2DEC_DISC_NONE ||
|
|
|
|
mpeg2dec->next_time < mpeg2dec->segment_start || skip) {
|
|
|
|
gst_buffer_unref (outbuf);
|
|
|
|
} else {
|
|
|
|
/* TODO set correct offset here based on frame number */
|
|
|
|
GST_BUFFER_DURATION (outbuf) = mpeg2dec->frame_period;
|
|
|
|
gst_pad_push (mpeg2dec->srcpad, GST_DATA (outbuf));
|
|
|
|
}
|
2004-04-01 11:48:27 +00:00
|
|
|
} else if (info->display_fbuf && !info->display_fbuf->id) {
|
|
|
|
GST_WARNING ("Got a frame from libmpeg2, but it has no buffer");
|
2004-03-15 19:32:25 +00:00
|
|
|
}
|
2004-04-01 11:48:27 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
if (info->discard_fbuf && info->discard_fbuf->id) {
|
|
|
|
gst_buffer_unref ((GstBuffer *) info->discard_fbuf->id);
|
|
|
|
}
|
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
}
|
2004-03-15 19:32:25 +00:00
|
|
|
/* need more data */
|
2003-10-06 12:16:21 +00:00
|
|
|
case STATE_BUFFER:
|
2003-10-07 10:08:30 +00:00
|
|
|
case -1:
|
2004-03-15 19:32:25 +00:00
|
|
|
done = TRUE;
|
|
|
|
break;
|
|
|
|
/* error */
|
2002-12-05 00:29:11 +00:00
|
|
|
case STATE_INVALID:
|
2004-03-15 19:32:25 +00:00
|
|
|
g_warning ("mpeg2dec: decoding error");
|
|
|
|
/* it looks like setting a new frame in libmpeg2 avoids a crash */
|
|
|
|
/* FIXME figure out how this screws up sync and buffer leakage */
|
|
|
|
gst_mpeg2dec_alloc_buffer (mpeg2dec, info, GST_BUFFER_OFFSET (buf));
|
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
default:
|
2004-03-15 19:32:25 +00:00
|
|
|
g_warning ("%s: unhandled state %d, FIXME",
|
|
|
|
gst_element_get_name (GST_ELEMENT (mpeg2dec)), state);
|
|
|
|
break;
|
2002-12-05 00:29:11 +00:00
|
|
|
}
|
2002-12-19 07:45:11 +00:00
|
|
|
|
2002-12-19 21:05:57 +00:00
|
|
|
/*
|
2002-12-19 07:45:11 +00:00
|
|
|
* FIXME: should pass more information such as state the user data is from
|
|
|
|
*/
|
2004-03-13 00:19:26 +00:00
|
|
|
#ifdef enable_user_data
|
2002-12-19 21:05:57 +00:00
|
|
|
if (info->user_data_len > 0) {
|
|
|
|
if (GST_PAD_IS_USABLE (mpeg2dec->userdatapad)) {
|
2004-03-15 19:32:25 +00:00
|
|
|
GstBuffer *udbuf = gst_buffer_new_and_alloc (info->user_data_len);
|
2002-12-19 21:05:57 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
memcpy (GST_BUFFER_DATA (udbuf), info->user_data, info->user_data_len);
|
2002-12-19 21:05:57 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
gst_pad_push (mpeg2dec->userdatapad, GST_DATA (udbuf));
|
2002-12-19 21:05:57 +00:00
|
|
|
}
|
|
|
|
}
|
2004-03-13 00:19:26 +00:00
|
|
|
#endif
|
2002-12-05 00:29:11 +00:00
|
|
|
}
|
2002-12-27 04:04:04 +00:00
|
|
|
exit:
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_buffer_unref (buf);
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static const GstFormat *
|
|
|
|
gst_mpeg2dec_get_sink_formats (GstPad * pad)
|
2002-12-05 00:29:11 +00:00
|
|
|
{
|
|
|
|
static const GstFormat formats[] = {
|
|
|
|
GST_FORMAT_BYTES,
|
|
|
|
GST_FORMAT_TIME,
|
|
|
|
0
|
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
return formats;
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_convert_sink (GstPad * pad, GstFormat src_format, gint64 src_value,
|
|
|
|
GstFormat * dest_format, gint64 * dest_value)
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstMpeg2dec *mpeg2dec;
|
2002-12-05 00:29:11 +00:00
|
|
|
const mpeg2_info_t *info;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
|
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
if (mpeg2dec->decoder == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
info = mpeg2_info (mpeg2dec->decoder);
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
switch (src_format) {
|
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
switch (*dest_format) {
|
2004-03-15 19:32:25 +00:00
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
if (info->sequence && info->sequence->byte_rate) {
|
|
|
|
*dest_value = GST_SECOND * src_value / info->sequence->byte_rate;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
switch (*dest_format) {
|
2004-03-15 19:32:25 +00:00
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
if (info->sequence && info->sequence->byte_rate) {
|
|
|
|
*dest_value = src_value * info->sequence->byte_rate / GST_SECOND;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static const GstFormat *
|
|
|
|
gst_mpeg2dec_get_src_formats (GstPad * pad)
|
2002-12-05 00:29:11 +00:00
|
|
|
{
|
|
|
|
static const GstFormat formats[] = {
|
|
|
|
GST_FORMAT_BYTES,
|
|
|
|
GST_FORMAT_TIME,
|
2003-05-24 10:15:28 +00:00
|
|
|
GST_FORMAT_DEFAULT,
|
2002-12-05 00:29:11 +00:00
|
|
|
0
|
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
return formats;
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_convert_src (GstPad * pad, GstFormat src_format, gint64 src_value,
|
|
|
|
GstFormat * dest_format, gint64 * dest_value)
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstMpeg2dec *mpeg2dec;
|
2002-12-05 00:29:11 +00:00
|
|
|
const mpeg2_info_t *info;
|
|
|
|
guint64 scale = 1;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
|
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
if (mpeg2dec->decoder == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
info = mpeg2_info (mpeg2dec->decoder);
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
switch (src_format) {
|
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
switch (*dest_format) {
|
2004-03-15 19:32:25 +00:00
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
switch (*dest_format) {
|
2004-03-15 19:32:25 +00:00
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
scale = 6 * (mpeg2dec->width * mpeg2dec->height >> 2);
|
|
|
|
case GST_FORMAT_DEFAULT:
|
|
|
|
if (info->sequence && mpeg2dec->frame_period) {
|
|
|
|
*dest_value = src_value * scale / mpeg2dec->frame_period;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
2003-05-24 10:15:28 +00:00
|
|
|
case GST_FORMAT_DEFAULT:
|
2002-05-26 21:59:22 +00:00
|
|
|
switch (*dest_format) {
|
2004-03-15 19:32:25 +00:00
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
*dest_value = src_value * mpeg2dec->frame_period;
|
|
|
|
break;
|
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
*dest_value =
|
|
|
|
src_value * 6 * ((mpeg2dec->width * mpeg2dec->height) >> 2);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static const GstQueryType *
|
|
|
|
gst_mpeg2dec_get_src_query_types (GstPad * pad)
|
2002-12-05 00:29:11 +00:00
|
|
|
{
|
2002-12-30 17:53:18 +00:00
|
|
|
static const GstQueryType types[] = {
|
|
|
|
GST_QUERY_TOTAL,
|
|
|
|
GST_QUERY_POSITION,
|
2002-12-05 00:29:11 +00:00
|
|
|
0
|
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
return types;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static gboolean
|
|
|
|
gst_mpeg2dec_src_query (GstPad * pad, GstQueryType type,
|
|
|
|
GstFormat * format, gint64 * value)
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstMpeg2dec *mpeg2dec;
|
2002-12-05 00:29:11 +00:00
|
|
|
static const GstFormat *formats;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
|
|
|
mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (type) {
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_TOTAL:
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
switch (*format) {
|
2004-03-15 19:32:25 +00:00
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
case GST_FORMAT_DEFAULT:
|
|
|
|
{
|
|
|
|
res = FALSE;
|
|
|
|
|
|
|
|
/* get our peer formats */
|
|
|
|
formats = gst_pad_get_formats (GST_PAD_PEER (mpeg2dec->sinkpad));
|
|
|
|
|
|
|
|
/* while we did not exhaust our seek formats without result */
|
|
|
|
while (formats && *formats) {
|
|
|
|
GstFormat peer_format;
|
|
|
|
gint64 peer_value;
|
|
|
|
|
|
|
|
peer_format = *formats;
|
|
|
|
|
|
|
|
/* do the probe */
|
|
|
|
if (gst_pad_query (GST_PAD_PEER (mpeg2dec->sinkpad),
|
|
|
|
GST_QUERY_TOTAL, &peer_format, &peer_value)) {
|
|
|
|
GstFormat conv_format;
|
|
|
|
|
|
|
|
/* convert to TIME */
|
|
|
|
conv_format = GST_FORMAT_TIME;
|
|
|
|
res = gst_pad_convert (mpeg2dec->sinkpad,
|
|
|
|
peer_format, peer_value, &conv_format, value);
|
|
|
|
/* and to final format */
|
|
|
|
res &= gst_pad_convert (pad,
|
|
|
|
GST_FORMAT_TIME, *value, format, value);
|
|
|
|
}
|
|
|
|
formats++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_POSITION:
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
switch (*format) {
|
2004-03-15 19:32:25 +00:00
|
|
|
default:
|
|
|
|
res = gst_pad_convert (pad,
|
|
|
|
GST_FORMAT_TIME, mpeg2dec->next_time, format, value);
|
|
|
|
break;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static const GstEventMask *
|
|
|
|
gst_mpeg2dec_get_src_event_masks (GstPad * pad)
|
2002-12-05 00:29:11 +00:00
|
|
|
{
|
|
|
|
static const GstEventMask masks[] = {
|
2004-03-14 22:34:30 +00:00
|
|
|
{GST_EVENT_SEEK, GST_SEEK_METHOD_SET | GST_SEEK_FLAG_FLUSH},
|
|
|
|
{GST_EVENT_NAVIGATION, GST_EVENT_FLAG_NONE},
|
|
|
|
{0,}
|
2002-12-05 00:29:11 +00:00
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2002-12-05 00:29:11 +00:00
|
|
|
return masks;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static gboolean
|
|
|
|
index_seek (GstPad * pad, GstEvent * event)
|
2002-12-23 00:32:36 +00:00
|
|
|
{
|
|
|
|
GstIndexEntry *entry;
|
2002-12-26 22:46:26 +00:00
|
|
|
GstMpeg2dec *mpeg2dec;
|
|
|
|
|
|
|
|
mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2002-12-23 00:32:36 +00:00
|
|
|
entry = gst_index_get_assoc_entry (mpeg2dec->index, mpeg2dec->index_id,
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_INDEX_LOOKUP_BEFORE, GST_ASSOCIATION_FLAG_KEY_UNIT,
|
|
|
|
GST_EVENT_SEEK_FORMAT (event), GST_EVENT_SEEK_OFFSET (event));
|
2002-12-23 00:32:36 +00:00
|
|
|
|
|
|
|
if (entry) {
|
2002-12-27 22:26:15 +00:00
|
|
|
const GstFormat *peer_formats, *try_formats;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2004-05-07 16:17:25 +00:00
|
|
|
/* since we know the exact byteoffset of the frame, make sure to seek on bytes first */
|
2004-03-14 22:34:30 +00:00
|
|
|
const GstFormat try_all_formats[] = {
|
|
|
|
GST_FORMAT_BYTES,
|
|
|
|
GST_FORMAT_TIME,
|
|
|
|
0
|
2002-12-27 22:26:15 +00:00
|
|
|
};
|
2002-12-23 00:32:36 +00:00
|
|
|
|
2002-12-27 22:26:15 +00:00
|
|
|
try_formats = try_all_formats;
|
2002-12-23 00:32:36 +00:00
|
|
|
peer_formats = gst_pad_get_formats (GST_PAD_PEER (mpeg2dec->sinkpad));
|
|
|
|
|
2002-12-27 22:26:15 +00:00
|
|
|
while (gst_formats_contains (peer_formats, *try_formats)) {
|
2002-12-23 00:32:36 +00:00
|
|
|
gint64 value;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2002-12-27 22:26:15 +00:00
|
|
|
if (gst_index_entry_assoc_map (entry, *try_formats, &value)) {
|
2004-03-15 19:32:25 +00:00
|
|
|
GstEvent *seek_event;
|
|
|
|
|
|
|
|
GST_CAT_DEBUG (GST_CAT_SEEK, "index %s %" G_GINT64_FORMAT
|
|
|
|
" -> %s %" G_GINT64_FORMAT,
|
|
|
|
gst_format_get_details (GST_EVENT_SEEK_FORMAT (event))->nick,
|
|
|
|
GST_EVENT_SEEK_OFFSET (event),
|
|
|
|
gst_format_get_details (*try_formats)->nick, value);
|
|
|
|
|
|
|
|
/* lookup succeeded, create the seek */
|
|
|
|
seek_event =
|
|
|
|
gst_event_new_seek (*try_formats | GST_SEEK_METHOD_SET |
|
|
|
|
GST_SEEK_FLAG_FLUSH, value);
|
2004-05-07 16:17:25 +00:00
|
|
|
/* do the seek */
|
2004-03-15 19:32:25 +00:00
|
|
|
if (gst_pad_send_event (GST_PAD_PEER (mpeg2dec->sinkpad), seek_event)) {
|
|
|
|
/* seek worked, we're done, loop will exit */
|
|
|
|
gst_mpeg2dec_flush_decoder (mpeg2dec);
|
|
|
|
mpeg2dec->segment_start = GST_EVENT_SEEK_OFFSET (event);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-12-23 00:32:36 +00:00
|
|
|
}
|
2002-12-27 22:26:15 +00:00
|
|
|
try_formats++;
|
2002-12-23 00:32:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static gboolean
|
|
|
|
normal_seek (GstPad * pad, GstEvent * event)
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
2002-12-26 22:46:26 +00:00
|
|
|
gint64 src_offset;
|
|
|
|
gboolean flush;
|
|
|
|
GstFormat format;
|
|
|
|
const GstFormat *peer_formats;
|
|
|
|
gboolean res = FALSE;
|
2002-05-26 21:59:22 +00:00
|
|
|
GstMpeg2dec *mpeg2dec;
|
|
|
|
|
|
|
|
mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
|
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
format = GST_FORMAT_TIME;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
/* first bring the src_format to TIME */
|
|
|
|
if (!gst_pad_convert (pad,
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_EVENT_SEEK_FORMAT (event), GST_EVENT_SEEK_OFFSET (event),
|
|
|
|
&format, &src_offset)) {
|
2002-12-26 22:46:26 +00:00
|
|
|
/* didn't work, probably unsupported seek format then */
|
|
|
|
return res;
|
|
|
|
}
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
/* shave off the flush flag, we'll need it later */
|
|
|
|
flush = GST_EVENT_SEEK_FLAGS (event) & GST_SEEK_FLAG_FLUSH;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
/* get our peer formats */
|
|
|
|
peer_formats = gst_pad_get_formats (GST_PAD_PEER (mpeg2dec->sinkpad));
|
2002-12-05 00:29:11 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
/* while we did not exhaust our seek formats without result */
|
|
|
|
while (peer_formats && *peer_formats) {
|
|
|
|
gint64 desired_offset;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
format = *peer_formats;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
/* try to convert requested format to one we can seek with on the sinkpad */
|
2004-03-14 22:34:30 +00:00
|
|
|
if (gst_pad_convert (mpeg2dec->sinkpad, GST_FORMAT_TIME, src_offset,
|
2004-03-15 19:32:25 +00:00
|
|
|
&format, &desired_offset)) {
|
2002-12-26 22:46:26 +00:00
|
|
|
GstEvent *seek_event;
|
|
|
|
|
|
|
|
/* conversion succeeded, create the seek */
|
2004-03-14 22:34:30 +00:00
|
|
|
seek_event =
|
2004-03-15 19:32:25 +00:00
|
|
|
gst_event_new_seek (format | GST_SEEK_METHOD_SET | flush,
|
|
|
|
desired_offset);
|
2002-12-26 22:46:26 +00:00
|
|
|
/* do the seekk */
|
|
|
|
if (gst_pad_send_event (GST_PAD_PEER (mpeg2dec->sinkpad), seek_event)) {
|
2004-03-15 19:32:25 +00:00
|
|
|
/* seek worked, we're done, loop will exit */
|
|
|
|
mpeg2dec->segment_start = GST_EVENT_SEEK_OFFSET (event);
|
|
|
|
res = TRUE;
|
|
|
|
break;
|
2002-12-26 22:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
peer_formats++;
|
|
|
|
}
|
|
|
|
/* at this point, either the seek worked and res = TRUE or res == FALSE and the seek
|
|
|
|
* failed */
|
|
|
|
if (res && flush) {
|
|
|
|
/* if we need to flush, iterate until the buffer is empty */
|
2002-12-27 04:04:04 +00:00
|
|
|
gst_mpeg2dec_flush_decoder (mpeg2dec);
|
2002-12-26 22:46:26 +00:00
|
|
|
}
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
return res;
|
|
|
|
}
|
2004-03-14 22:34:30 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_mpeg2dec_src_event (GstPad * pad, GstEvent * event)
|
2002-12-26 22:46:26 +00:00
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstMpeg2dec *mpeg2dec;
|
|
|
|
|
|
|
|
mpeg2dec = GST_MPEG2DEC (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
if (mpeg2dec->decoder == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2004-03-14 22:34:30 +00:00
|
|
|
/* the all-formats seek logic */
|
2002-12-26 22:46:26 +00:00
|
|
|
case GST_EVENT_SEEK:
|
|
|
|
if (mpeg2dec->need_sequence) {
|
2004-03-15 19:32:25 +00:00
|
|
|
mpeg2dec->pending_event = event;
|
|
|
|
return TRUE;
|
2004-03-14 22:34:30 +00:00
|
|
|
} else {
|
2004-03-15 19:32:25 +00:00
|
|
|
if (mpeg2dec->index)
|
|
|
|
res = index_seek (pad, event);
|
|
|
|
else
|
|
|
|
res = normal_seek (pad, event);
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2004-03-15 19:32:25 +00:00
|
|
|
if (res)
|
|
|
|
mpeg2dec->discont_state = MPEG2DEC_DISC_NEW_PICTURE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
2004-01-06 16:42:10 +00:00
|
|
|
case GST_EVENT_NAVIGATION:
|
|
|
|
/* Forward a navigation event unchanged */
|
|
|
|
return gst_pad_send_event (GST_PAD_PEER (mpeg2dec->sinkpad), event);
|
2002-05-26 21:59:22 +00:00
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
2002-07-09 17:39:18 +00:00
|
|
|
gst_event_unref (event);
|
2002-05-26 21:59:22 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2001-12-23 06:03:21 +00:00
|
|
|
static GstElementStateReturn
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_change_state (GstElement * element)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
|
|
|
GstMpeg2dec *mpeg2dec = GST_MPEG2DEC (element);
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
2001-12-23 06:03:21 +00:00
|
|
|
case GST_STATE_NULL_TO_READY:
|
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
|
|
|
{
|
|
|
|
mpeg2dec->next_time = 0;
|
|
|
|
|
|
|
|
/* reset the initial video state */
|
2002-12-05 00:29:11 +00:00
|
|
|
mpeg2dec->format = MPEG2DEC_FORMAT_NONE;
|
2001-12-23 06:03:21 +00:00
|
|
|
mpeg2dec->width = -1;
|
|
|
|
mpeg2dec->height = -1;
|
2002-12-26 22:46:26 +00:00
|
|
|
mpeg2dec->segment_start = 0;
|
|
|
|
mpeg2dec->segment_end = -1;
|
|
|
|
mpeg2dec->discont_state = MPEG2DEC_DISC_NEW_PICTURE;
|
2002-12-05 00:29:11 +00:00
|
|
|
mpeg2dec->frame_period = 0;
|
2002-12-26 22:46:26 +00:00
|
|
|
gst_mpeg2dec_open_decoder (mpeg2dec);
|
|
|
|
mpeg2dec->need_sequence = TRUE;
|
2001-12-23 06:03:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GST_STATE_PAUSED_TO_PLAYING:
|
|
|
|
break;
|
|
|
|
case GST_STATE_PLAYING_TO_PAUSED:
|
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
2002-12-26 22:46:26 +00:00
|
|
|
gst_mpeg2dec_close_decoder (mpeg2dec);
|
2001-12-23 06:03:21 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_NULL:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-12-26 22:46:26 +00:00
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
2001-12-23 06:03:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
|
|
|
GstMpeg2dec *src;
|
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_MPEG2DEC (object));
|
|
|
|
src = GST_MPEG2DEC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_mpeg2dec_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2002-02-06 23:05:22 +00:00
|
|
|
GstMpeg2dec *mpeg2dec;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
/* it's not null if we got it, but it might not be ours */
|
|
|
|
g_return_if_fail (GST_IS_MPEG2DEC (object));
|
2002-02-06 23:05:22 +00:00
|
|
|
mpeg2dec = GST_MPEG2DEC (object);
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:30 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2001-12-23 06:03:21 +00:00
|
|
|
{
|
2004-03-14 22:34:30 +00:00
|
|
|
if (!gst_element_register (plugin, "mpeg2dec", GST_RANK_PRIMARY,
|
2004-03-15 19:32:25 +00:00
|
|
|
GST_TYPE_MPEG2DEC))
|
2003-11-02 00:33:31 +00:00
|
|
|
return FALSE;
|
2001-12-23 06:03:21 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"mpeg2dec",
|
|
|
|
"LibMpeg2 decoder", plugin_init, VERSION, "GPL", GST_PACKAGE, GST_ORIGIN)
|