2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:26:48 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*#define GST_DEBUG_ENABLED*/
|
|
|
|
#include "gstmpegparse.h"
|
2002-05-26 21:59:22 +00:00
|
|
|
#include "gstmpegclock.h"
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
static GstFormat scr_format;
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
/* elementfactory information */
|
|
|
|
static GstElementDetails mpeg_parse_details = {
|
|
|
|
"MPEG System Parser",
|
2002-04-20 21:42:51 +00:00
|
|
|
"Codec/Parser",
|
2002-09-18 19:02:46 +00:00
|
|
|
"LGPL",
|
2002-04-20 21:42:51 +00:00
|
|
|
"Parses MPEG1 and MPEG2 System Streams",
|
2001-12-22 23:26:48 +00:00
|
|
|
VERSION,
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>\n"
|
|
|
|
"Wim Taymans <wim.taymans@chello.be>",
|
|
|
|
"(C) 1999",
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CLASS(o) GST_MPEG_PARSE_CLASS (G_OBJECT_GET_CLASS (o))
|
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
#define DEFAULT_MAX_DISCONT 10000
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
/* GstMPEGParse signals and args */
|
|
|
|
enum {
|
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ARG_0,
|
2002-05-26 21:59:22 +00:00
|
|
|
ARG_SYNC,
|
2002-11-27 21:00:12 +00:00
|
|
|
ARG_MAX_DISCONT,
|
2002-12-30 19:18:04 +00:00
|
|
|
ARG_STREAMINFO,
|
2001-12-22 23:26:48 +00:00
|
|
|
/* FILL ME */
|
|
|
|
};
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
GST_PAD_TEMPLATE_FACTORY (sink_factory,
|
2001-12-22 23:26:48 +00:00
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"mpeg_parse_sink",
|
|
|
|
"video/mpeg",
|
|
|
|
"mpegversion", GST_PROPS_INT_RANGE (1, 2),
|
|
|
|
"systemstream", GST_PROPS_BOOLEAN (TRUE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
GST_PAD_TEMPLATE_FACTORY (src_factory,
|
2001-12-22 23:26:48 +00:00
|
|
|
"src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"mpeg_parse_src",
|
|
|
|
"video/mpeg",
|
|
|
|
"mpegversion", GST_PROPS_INT_RANGE (1, 2),
|
|
|
|
"systemstream", GST_PROPS_BOOLEAN (TRUE),
|
|
|
|
"parsed", GST_PROPS_BOOLEAN (TRUE)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static void gst_mpeg_parse_class_init (GstMPEGParseClass *klass);
|
|
|
|
static void gst_mpeg_parse_init (GstMPEGParse *mpeg_parse);
|
2001-12-23 22:37:07 +00:00
|
|
|
static GstElementStateReturn
|
2002-05-26 21:59:22 +00:00
|
|
|
gst_mpeg_parse_change_state (GstElement *element);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static void gst_mpeg_parse_set_clock (GstElement *element, GstClock *clock);
|
|
|
|
static GstClock* gst_mpeg_parse_get_clock (GstElement *element);
|
|
|
|
static GstClockTime gst_mpeg_parse_get_time (GstClock *clock, gpointer data);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static gboolean gst_mpeg_parse_parse_packhead (GstMPEGParse *mpeg_parse, GstBuffer *buffer);
|
|
|
|
static void gst_mpeg_parse_send_data (GstMPEGParse *mpeg_parse, GstData *data, GstClockTime time);
|
|
|
|
static void gst_mpeg_parse_handle_discont (GstMPEGParse *mpeg_parse);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static void gst_mpeg_parse_loop (GstElement *element);
|
|
|
|
|
|
|
|
static void gst_mpeg_parse_get_property (GObject *object, guint prop_id,
|
|
|
|
GValue *value, GParamSpec *pspec);
|
|
|
|
static void gst_mpeg_parse_set_property (GObject *object, guint prop_id,
|
|
|
|
const GValue *value, GParamSpec *pspec);
|
2002-12-12 22:17:10 +00:00
|
|
|
static void gst_mpeg_parse_set_index (GstElement *element, GstIndex *index);
|
|
|
|
static GstIndex* gst_mpeg_parse_get_index (GstElement *element);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-12-29 21:18:16 +00:00
|
|
|
static gboolean gst_mpeg_parse_release_locks (GstElement *element);
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
/*static guint gst_mpeg_parse_signals[LAST_SIGNAL] = { 0 };*/
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_mpeg_parse_get_type (void)
|
|
|
|
{
|
|
|
|
static GType mpeg_parse_type = 0;
|
|
|
|
|
|
|
|
if (!mpeg_parse_type) {
|
|
|
|
static const GTypeInfo mpeg_parse_info = {
|
|
|
|
sizeof(GstMPEGParseClass), NULL,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc)gst_mpeg_parse_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstMPEGParse),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc)gst_mpeg_parse_init,
|
|
|
|
};
|
|
|
|
mpeg_parse_type = g_type_register_static(GST_TYPE_ELEMENT, "GstMPEGParse", &mpeg_parse_info, 0);
|
|
|
|
}
|
|
|
|
return mpeg_parse_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_mpeg_parse_class_init (GstMPEGParseClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass*)klass;
|
|
|
|
gstelement_class = (GstElementClass*)klass;
|
|
|
|
|
2001-12-23 22:37:07 +00:00
|
|
|
parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_SYNC,
|
|
|
|
g_param_spec_boolean ("sync", "Sync", "Synchronize on the stream SCR",
|
2002-06-08 23:48:43 +00:00
|
|
|
FALSE, G_PARAM_READWRITE));
|
2002-11-27 21:00:12 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MAX_DISCONT,
|
|
|
|
g_param_spec_int ("max_discont", "Max Discont", "The maximun allowed SCR discontinuity",
|
|
|
|
0, G_MAXINT, DEFAULT_MAX_DISCONT, G_PARAM_READWRITE));
|
2002-12-30 19:18:04 +00:00
|
|
|
g_object_class_install_property (gobject_class, ARG_STREAMINFO,
|
|
|
|
g_param_spec_boxed ("streaminfo", "Streaminfo", "Streaminfo",
|
|
|
|
GST_TYPE_CAPS, G_PARAM_READABLE));
|
2001-12-22 23:26:48 +00:00
|
|
|
|
|
|
|
gobject_class->get_property = gst_mpeg_parse_get_property;
|
2002-05-26 21:59:22 +00:00
|
|
|
gobject_class->set_property = gst_mpeg_parse_set_property;
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-12-29 21:18:16 +00:00
|
|
|
gstelement_class->change_state = gst_mpeg_parse_change_state;
|
|
|
|
gstelement_class->get_clock = gst_mpeg_parse_get_clock;
|
|
|
|
gstelement_class->set_clock = gst_mpeg_parse_set_clock;
|
|
|
|
gstelement_class->get_index = gst_mpeg_parse_get_index;
|
|
|
|
gstelement_class->set_index = gst_mpeg_parse_set_index;
|
|
|
|
gstelement_class->release_locks = gst_mpeg_parse_release_locks;
|
2002-11-27 21:00:12 +00:00
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
klass->parse_packhead = gst_mpeg_parse_parse_packhead;
|
|
|
|
klass->parse_syshead = NULL;
|
|
|
|
klass->parse_packet = NULL;
|
|
|
|
klass->parse_pes = NULL;
|
|
|
|
klass->send_data = gst_mpeg_parse_send_data;
|
2002-05-26 21:59:22 +00:00
|
|
|
klass->handle_discont = gst_mpeg_parse_handle_discont;
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_mpeg_parse_init (GstMPEGParse *mpeg_parse)
|
|
|
|
{
|
|
|
|
mpeg_parse->sinkpad = gst_pad_new_from_template(
|
2002-04-11 20:42:25 +00:00
|
|
|
GST_PAD_TEMPLATE_GET (sink_factory), "sink");
|
2001-12-22 23:26:48 +00:00
|
|
|
gst_element_add_pad(GST_ELEMENT(mpeg_parse),mpeg_parse->sinkpad);
|
2002-12-26 22:45:10 +00:00
|
|
|
gst_pad_set_formats_function (mpeg_parse->sinkpad, gst_mpeg_parse_get_src_formats);
|
|
|
|
gst_pad_set_convert_function (mpeg_parse->sinkpad, gst_mpeg_parse_convert_src);
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
mpeg_parse->srcpad = gst_pad_new_from_template(
|
2002-04-11 20:42:25 +00:00
|
|
|
GST_PAD_TEMPLATE_GET (src_factory), "src");
|
2001-12-22 23:26:48 +00:00
|
|
|
gst_element_add_pad(GST_ELEMENT(mpeg_parse),mpeg_parse->srcpad);
|
2002-07-24 21:43:44 +00:00
|
|
|
gst_pad_set_formats_function (mpeg_parse->srcpad, gst_mpeg_parse_get_src_formats);
|
2002-12-26 22:45:10 +00:00
|
|
|
gst_pad_set_convert_function (mpeg_parse->srcpad, gst_mpeg_parse_convert_src);
|
2002-07-24 21:43:44 +00:00
|
|
|
gst_pad_set_event_mask_function (mpeg_parse->srcpad, gst_mpeg_parse_get_src_event_masks);
|
2002-05-26 21:59:22 +00:00
|
|
|
gst_pad_set_event_function (mpeg_parse->srcpad, gst_mpeg_parse_handle_src_event);
|
2002-07-24 21:43:44 +00:00
|
|
|
gst_pad_set_query_type_function (mpeg_parse->srcpad, gst_mpeg_parse_get_src_query_types);
|
2002-05-26 21:59:22 +00:00
|
|
|
gst_pad_set_query_function (mpeg_parse->srcpad, gst_mpeg_parse_handle_src_query);
|
|
|
|
|
|
|
|
gst_element_set_loop_function (GST_ELEMENT (mpeg_parse), gst_mpeg_parse_loop);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
|
|
|
mpeg_parse->packetize = NULL;
|
2002-06-08 23:48:43 +00:00
|
|
|
mpeg_parse->sync = FALSE;
|
2002-12-29 21:18:16 +00:00
|
|
|
mpeg_parse->id = NULL;
|
2002-11-27 21:00:12 +00:00
|
|
|
mpeg_parse->max_discont = DEFAULT_MAX_DISCONT;
|
2002-05-26 21:59:22 +00:00
|
|
|
mpeg_parse->provided_clock = gst_mpeg_clock_new ("MPEGParseClock",
|
|
|
|
gst_mpeg_parse_get_time, mpeg_parse);
|
2002-12-30 19:18:04 +00:00
|
|
|
mpeg_parse->streaminfo = NULL;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
GST_FLAG_SET (mpeg_parse, GST_ELEMENT_EVENT_AWARE);
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static GstClock*
|
|
|
|
gst_mpeg_parse_get_clock (GstElement *element)
|
|
|
|
{
|
2002-12-26 22:45:10 +00:00
|
|
|
/* GstMPEGParse *parse = GST_MPEG_PARSE (element); */
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
/* return parse->provided_clock; */
|
2002-05-26 21:59:22 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
static void
|
2002-05-26 21:59:22 +00:00
|
|
|
gst_mpeg_parse_set_clock (GstElement *element, GstClock *clock)
|
|
|
|
{
|
|
|
|
GstMPEGParse *parse = GST_MPEG_PARSE (element);
|
|
|
|
|
|
|
|
parse->clock = clock;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstClockTime
|
|
|
|
gst_mpeg_parse_get_time (GstClock *clock, gpointer data)
|
|
|
|
{
|
|
|
|
GstMPEGParse *parse = GST_MPEG_PARSE (data);
|
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
return MPEGTIME_TO_GSTTIME (parse->current_scr);
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
2002-12-30 19:18:04 +00:00
|
|
|
static void
|
|
|
|
gst_mpeg_parse_update_streaminfo (GstMPEGParse *mpeg_parse)
|
|
|
|
{
|
|
|
|
GstProps *props;
|
|
|
|
GstPropsEntry *entry;
|
|
|
|
gboolean mpeg2 = GST_MPEG_PACKETIZE_IS_MPEG2 (mpeg_parse->packetize);
|
|
|
|
|
|
|
|
props = gst_props_empty_new ();
|
|
|
|
|
|
|
|
entry = gst_props_entry_new ("mpegversion", GST_PROPS_INT (mpeg2 ? 2 : 1));
|
|
|
|
gst_props_add_entry (props, (GstPropsEntry *) entry);
|
|
|
|
|
|
|
|
entry = gst_props_entry_new ("bitrate", GST_PROPS_INT (mpeg_parse->mux_rate * 400));
|
|
|
|
gst_props_add_entry (props, (GstPropsEntry *) entry);
|
|
|
|
|
|
|
|
if (mpeg_parse->streaminfo)
|
|
|
|
gst_caps_unref (mpeg_parse->streaminfo);
|
|
|
|
|
|
|
|
mpeg_parse->streaminfo = gst_caps_new ("mpeg_streaminfo",
|
|
|
|
"application/x-gst-streaminfo",
|
|
|
|
props);
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (mpeg_parse), "streaminfo");
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static void
|
|
|
|
gst_mpeg_parse_send_data (GstMPEGParse *mpeg_parse, GstData *data, GstClockTime time)
|
2001-12-22 23:26:48 +00:00
|
|
|
{
|
|
|
|
if (GST_IS_EVENT (data)) {
|
2002-05-26 21:59:22 +00:00
|
|
|
GstEvent *event = GST_EVENT (data);
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
default:
|
|
|
|
gst_pad_event_default (mpeg_parse->sinkpad, event);
|
|
|
|
break;
|
|
|
|
}
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
|
|
|
else {
|
2001-12-26 20:14:07 +00:00
|
|
|
if (!GST_PAD_CAPS (mpeg_parse->srcpad)) {
|
|
|
|
gboolean mpeg2 = GST_MPEG_PACKETIZE_IS_MPEG2 (mpeg_parse->packetize);
|
|
|
|
|
2002-12-30 19:18:04 +00:00
|
|
|
if (gst_pad_try_set_caps (mpeg_parse->srcpad,
|
2001-12-26 20:14:07 +00:00
|
|
|
GST_CAPS_NEW (
|
|
|
|
"mpeg_parse_src",
|
|
|
|
"video/mpeg",
|
|
|
|
"mpegversion", GST_PROPS_INT (mpeg2 ? 2 : 1),
|
|
|
|
"systemstream", GST_PROPS_BOOLEAN (TRUE),
|
|
|
|
"parsed", GST_PROPS_BOOLEAN (TRUE)
|
2002-12-30 19:18:04 +00:00
|
|
|
)) < 0)
|
|
|
|
{
|
|
|
|
gst_element_error (GST_ELEMENT (mpeg_parse), "could no set source caps");
|
|
|
|
return;
|
|
|
|
}
|
2001-12-26 20:14:07 +00:00
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
GST_BUFFER_TIMESTAMP (data) = time;
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0, "current_scr %" G_GINT64_FORMAT, time);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
if (GST_PAD_IS_USABLE (mpeg_parse->srcpad))
|
|
|
|
gst_pad_push (mpeg_parse->srcpad, GST_BUFFER (data));
|
|
|
|
else
|
|
|
|
gst_data_unref (data);
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static void
|
|
|
|
gst_mpeg_parse_handle_discont (GstMPEGParse *mpeg_parse)
|
|
|
|
{
|
|
|
|
GstEvent *event;
|
|
|
|
|
|
|
|
event = gst_event_new_discontinuous (FALSE, GST_FORMAT_TIME,
|
|
|
|
MPEGTIME_TO_GSTTIME (mpeg_parse->current_scr), NULL);
|
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
if (GST_PAD_IS_USABLE (mpeg_parse->srcpad))
|
|
|
|
gst_pad_push (mpeg_parse->srcpad, GST_BUFFER (event));
|
|
|
|
else
|
|
|
|
gst_event_unref (event);
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
static gboolean
|
|
|
|
gst_mpeg_parse_parse_packhead (GstMPEGParse *mpeg_parse, GstBuffer *buffer)
|
|
|
|
{
|
|
|
|
guint8 *buf;
|
2002-11-27 21:00:12 +00:00
|
|
|
guint64 scr, scr_adj, scr_orig;
|
2001-12-22 23:26:48 +00:00
|
|
|
guint32 scr1, scr2;
|
2001-12-23 22:37:07 +00:00
|
|
|
guint32 new_rate;
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
GST_DEBUG (0, "in parse_packhead");
|
2001-12-22 23:26:48 +00:00
|
|
|
|
|
|
|
buf = GST_BUFFER_DATA (buffer);
|
|
|
|
buf += 4;
|
|
|
|
|
|
|
|
scr1 = GUINT32_FROM_BE (*(guint32*) buf);
|
|
|
|
scr2 = GUINT32_FROM_BE (*(guint32*) (buf+4));
|
|
|
|
|
|
|
|
if (GST_MPEG_PACKETIZE_IS_MPEG2 (mpeg_parse->packetize)) {
|
2002-11-04 23:16:45 +00:00
|
|
|
guint32 scr_ext;
|
2001-12-22 23:26:48 +00:00
|
|
|
|
|
|
|
/* :2=01 ! scr:3 ! marker:1==1 ! scr:15 ! marker:1==1 ! scr:15 */
|
|
|
|
scr = (scr1 & 0x38000000) << 3;
|
|
|
|
scr |= (scr1 & 0x03fff800) << 4;
|
|
|
|
scr |= (scr1 & 0x000003ff) << 5;
|
|
|
|
scr |= (scr2 & 0xf8000000) >> 27;
|
2002-11-04 23:16:45 +00:00
|
|
|
|
|
|
|
scr_ext = (scr2 & 0x03fe0000) >> 17;
|
|
|
|
|
|
|
|
scr = (scr * 300 + scr_ext % 300) / 300;
|
|
|
|
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0, "%" G_GINT64_FORMAT " %d, %08x %08x %" G_GINT64_FORMAT " diff: %" G_GINT64_FORMAT,
|
2002-11-04 23:16:45 +00:00
|
|
|
scr, scr_ext, scr1, scr2, mpeg_parse->bytes_since_scr,
|
|
|
|
scr - mpeg_parse->current_scr);
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
buf += 6;
|
2001-12-23 22:37:07 +00:00
|
|
|
new_rate = (GUINT32_FROM_BE ((*(guint32 *) buf)) & 0xfffffc00) >> 10;
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
scr = (scr1 & 0x0e000000) << 5;
|
|
|
|
scr |= (scr1 & 0x00fffe00) << 6;
|
|
|
|
scr |= (scr1 & 0x000000ff) << 7;
|
|
|
|
scr |= (scr2 & 0xfe000000) >> 25;
|
2003-01-17 16:21:35 +00:00
|
|
|
|
2001-12-23 22:37:07 +00:00
|
|
|
buf += 5;
|
2003-01-17 16:21:35 +00:00
|
|
|
/* we do this byte by byte because buf[3] might be outside of buf's
|
|
|
|
* memory space */
|
|
|
|
new_rate = (buf[0] & 0x7f) << 15;
|
|
|
|
new_rate |= buf[1] << 7;
|
|
|
|
new_rate |= buf[2] >> 1;
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
scr_orig = scr;
|
|
|
|
mpeg_parse->bytes_since_scr = 0;
|
2002-11-04 23:16:45 +00:00
|
|
|
scr_adj = scr + mpeg_parse->adjust;
|
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
if (mpeg_parse->next_scr == -1) {
|
|
|
|
mpeg_parse->next_scr = scr;
|
|
|
|
}
|
|
|
|
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0, "SCR is %" G_GUINT64_FORMAT " (%" G_GUINT64_FORMAT ") next: %" G_GINT64_FORMAT " (%" G_GINT64_FORMAT ") diff: %" G_GINT64_FORMAT " (%" G_GINT64_FORMAT ")",
|
2002-11-04 23:16:45 +00:00
|
|
|
scr,
|
|
|
|
MPEGTIME_TO_GSTTIME (scr),
|
|
|
|
mpeg_parse->next_scr,
|
|
|
|
MPEGTIME_TO_GSTTIME (mpeg_parse->next_scr),
|
|
|
|
scr - mpeg_parse->next_scr,
|
|
|
|
MPEGTIME_TO_GSTTIME (scr) -
|
|
|
|
MPEGTIME_TO_GSTTIME (mpeg_parse->next_scr));
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
if (ABS ((gint64)mpeg_parse->next_scr - (gint64)(scr_adj)) > mpeg_parse->max_discont) {
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0, "discontinuity detected; expected: %" G_GUINT64_FORMAT " got: %" G_GUINT64_FORMAT " real:%" G_GINT64_FORMAT " adjust:%" G_GINT64_FORMAT,
|
2002-11-04 23:16:45 +00:00
|
|
|
mpeg_parse->next_scr, scr_adj, scr, mpeg_parse->adjust);
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
mpeg_parse->adjust = mpeg_parse->next_scr - scr;
|
|
|
|
scr = mpeg_parse->next_scr;
|
|
|
|
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0, "new adjust: %" G_GINT64_FORMAT, mpeg_parse->adjust);
|
2002-11-04 23:16:45 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
scr = scr_adj;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
2002-11-04 23:16:45 +00:00
|
|
|
|
2002-12-23 00:35:24 +00:00
|
|
|
if (mpeg_parse->index && GST_INDEX_IS_WRITABLE (mpeg_parse->index)) {
|
2002-12-12 22:17:10 +00:00
|
|
|
/* update index if any */
|
|
|
|
gst_index_add_association (mpeg_parse->index, mpeg_parse->index_id,
|
2002-12-31 14:53:04 +00:00
|
|
|
GST_ASSOCIATION_FLAG_KEY_UNIT,
|
2002-11-27 21:00:12 +00:00
|
|
|
GST_FORMAT_BYTES, GST_BUFFER_OFFSET (buffer),
|
2002-12-26 22:45:10 +00:00
|
|
|
GST_FORMAT_TIME, MPEGTIME_TO_GSTTIME (scr), 0);
|
2002-11-27 21:00:12 +00:00
|
|
|
}
|
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
mpeg_parse->current_scr = scr;
|
2002-05-26 21:59:22 +00:00
|
|
|
mpeg_parse->scr_pending = FALSE;
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
if (mpeg_parse->mux_rate != new_rate) {
|
|
|
|
mpeg_parse->mux_rate = new_rate;
|
2002-02-06 23:00:15 +00:00
|
|
|
|
2002-12-30 19:18:04 +00:00
|
|
|
gst_mpeg_parse_update_streaminfo (mpeg_parse);
|
2002-12-26 22:45:10 +00:00
|
|
|
GST_DEBUG (0, "stream is %1.3fMbs", (mpeg_parse->mux_rate * 400) / 1000000.0);
|
2001-12-23 22:37:07 +00:00
|
|
|
}
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_mpeg_parse_loop (GstElement *element)
|
|
|
|
{
|
|
|
|
GstMPEGParse *mpeg_parse = GST_MPEG_PARSE (element);
|
2001-12-23 22:37:07 +00:00
|
|
|
GstData *data;
|
|
|
|
guint id;
|
|
|
|
gboolean mpeg2;
|
2002-05-26 21:59:22 +00:00
|
|
|
GstClockTime time;
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2001-12-23 22:37:07 +00:00
|
|
|
data = gst_mpeg_packetize_read (mpeg_parse->packetize);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2001-12-23 22:37:07 +00:00
|
|
|
id = GST_MPEG_PACKETIZE_ID (mpeg_parse->packetize);
|
|
|
|
mpeg2 = GST_MPEG_PACKETIZE_IS_MPEG2 (mpeg_parse->packetize);
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2001-12-23 22:37:07 +00:00
|
|
|
if (GST_IS_BUFFER (data)) {
|
|
|
|
GstBuffer *buffer = GST_BUFFER (data);
|
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
GST_DEBUG (0, "have chunk 0x%02X", id);
|
2001-12-23 22:37:07 +00:00
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case 0xba:
|
|
|
|
if (CLASS (mpeg_parse)->parse_packhead) {
|
|
|
|
CLASS (mpeg_parse)->parse_packhead (mpeg_parse, buffer);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0xbb:
|
|
|
|
if (CLASS (mpeg_parse)->parse_syshead) {
|
|
|
|
CLASS (mpeg_parse)->parse_syshead (mpeg_parse, buffer);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (mpeg2 && ((id < 0xBD) || (id > 0xFE))) {
|
2002-11-04 23:16:45 +00:00
|
|
|
g_warning ("******** unknown id 0x%02X", id);
|
2001-12-23 22:37:07 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (mpeg2) {
|
|
|
|
if (CLASS (mpeg_parse)->parse_pes) {
|
|
|
|
CLASS (mpeg_parse)->parse_pes (mpeg_parse, buffer);
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
2001-12-23 22:37:07 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (CLASS (mpeg_parse)->parse_packet) {
|
|
|
|
CLASS (mpeg_parse)->parse_packet (mpeg_parse, buffer);
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
|
|
|
}
|
2001-12-23 22:37:07 +00:00
|
|
|
}
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
2001-12-23 22:37:07 +00:00
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
time = MPEGTIME_TO_GSTTIME (mpeg_parse->current_scr);
|
|
|
|
|
|
|
|
if (GST_IS_EVENT (data)) {
|
|
|
|
GstEvent *event = GST_EVENT (data);
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
|
|
GST_DEBUG (GST_CAT_EVENT, "event: %d\n", GST_EVENT_TYPE (data));
|
|
|
|
|
|
|
|
mpeg_parse->discont_pending = TRUE;
|
|
|
|
mpeg_parse->packetize->resync = TRUE;
|
2002-07-08 19:43:33 +00:00
|
|
|
gst_event_unref (event);
|
2002-05-26 21:59:22 +00:00
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (CLASS (mpeg_parse)->send_data)
|
|
|
|
CLASS (mpeg_parse)->send_data (mpeg_parse, data, time);
|
2002-07-08 19:43:33 +00:00
|
|
|
else
|
|
|
|
gst_event_unref (event);
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
guint64 size;
|
|
|
|
|
|
|
|
/* we're not sending data as long as no new SCR was found */
|
|
|
|
if (mpeg_parse->discont_pending) {
|
|
|
|
if (!mpeg_parse->scr_pending) {
|
2002-06-08 23:48:43 +00:00
|
|
|
if (mpeg_parse->clock && mpeg_parse->sync) {
|
|
|
|
gst_clock_handle_discont (mpeg_parse->clock, MPEGTIME_TO_GSTTIME (mpeg_parse->current_scr));
|
|
|
|
}
|
2002-05-26 21:59:22 +00:00
|
|
|
if (CLASS (mpeg_parse)->handle_discont) {
|
|
|
|
CLASS (mpeg_parse)->handle_discont (mpeg_parse);
|
|
|
|
}
|
|
|
|
mpeg_parse->discont_pending = FALSE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GST_DEBUG (0, "waiting for SCR\n");
|
|
|
|
}
|
|
|
|
gst_buffer_unref (GST_BUFFER (data));
|
|
|
|
return;
|
2002-11-04 23:16:45 +00:00
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
2002-11-04 23:16:45 +00:00
|
|
|
size = GST_BUFFER_SIZE (data);
|
|
|
|
mpeg_parse->bytes_since_scr += size;
|
|
|
|
|
2002-12-30 19:18:04 +00:00
|
|
|
if (!GST_PAD_CAPS (mpeg_parse->sinkpad)) {
|
|
|
|
gboolean mpeg2 = GST_MPEG_PACKETIZE_IS_MPEG2 (mpeg_parse->packetize);
|
|
|
|
|
|
|
|
if (gst_pad_try_set_caps (mpeg_parse->sinkpad,
|
|
|
|
GST_CAPS_NEW (
|
|
|
|
"mpeg_parse_src",
|
|
|
|
"video/mpeg",
|
|
|
|
"mpegversion", GST_PROPS_INT (mpeg2 ? 2 : 1),
|
|
|
|
"systemstream", GST_PROPS_BOOLEAN (TRUE),
|
|
|
|
"parsed", GST_PROPS_BOOLEAN (TRUE)
|
|
|
|
)) < 0)
|
|
|
|
{
|
|
|
|
gst_element_error (GST_ELEMENT (mpeg_parse), "could no set sink caps");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
if (CLASS (mpeg_parse)->send_data)
|
|
|
|
CLASS (mpeg_parse)->send_data (mpeg_parse, data, time);
|
|
|
|
|
2002-06-08 23:48:43 +00:00
|
|
|
if (mpeg_parse->clock && mpeg_parse->sync && !mpeg_parse->discont_pending) {
|
2002-12-29 21:18:16 +00:00
|
|
|
mpeg_parse->id = gst_clock_new_single_shot_id (mpeg_parse->clock, time);
|
2002-12-27 23:04:50 +00:00
|
|
|
|
2002-06-08 23:48:43 +00:00
|
|
|
GST_DEBUG (GST_CAT_CLOCK, "syncing mpegparse");
|
2002-12-29 21:18:16 +00:00
|
|
|
gst_element_clock_wait (GST_ELEMENT (mpeg_parse), mpeg_parse->id, NULL);
|
|
|
|
gst_clock_id_free (mpeg_parse->id);
|
|
|
|
mpeg_parse->id = NULL;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
if (mpeg_parse->current_scr != -1)
|
2002-11-04 23:16:45 +00:00
|
|
|
{
|
|
|
|
guint64 scr, bss, br;
|
|
|
|
|
|
|
|
scr = mpeg_parse->current_scr;
|
|
|
|
bss = mpeg_parse->bytes_since_scr;
|
|
|
|
br = mpeg_parse->mux_rate * 50;
|
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
if (br) {
|
|
|
|
if (GST_MPEG_PACKETIZE_IS_MPEG2 (mpeg_parse->packetize)) {
|
|
|
|
/*
|
|
|
|
* The mpeg spec says something like this, but that doesn't really work:
|
|
|
|
*
|
2003-01-19 13:42:43 +00:00
|
|
|
* mpeg_parse->next_scr = (scr * br + bss * CLOCK_FREQ) / (CLOCK_FREQ + br);
|
2002-11-27 21:00:12 +00:00
|
|
|
*/
|
2003-01-19 13:42:43 +00:00
|
|
|
mpeg_parse->next_scr = scr + (bss * CLOCK_FREQ) / br;
|
2002-11-27 21:00:12 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* we are interpolating the scr here */
|
2003-01-19 13:42:43 +00:00
|
|
|
mpeg_parse->next_scr = scr + (bss * CLOCK_FREQ) / br;
|
2002-11-27 21:00:12 +00:00
|
|
|
}
|
2002-11-04 23:16:45 +00:00
|
|
|
}
|
|
|
|
else {
|
2002-11-27 21:00:12 +00:00
|
|
|
/* no bitrate known */
|
|
|
|
mpeg_parse->next_scr = scr;
|
2002-11-04 23:16:45 +00:00
|
|
|
}
|
|
|
|
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0, "size: %" G_GINT64_FORMAT ", total since SCR: %" G_GINT64_FORMAT ", next SCR: %" G_GINT64_FORMAT,
|
2002-11-04 23:16:45 +00:00
|
|
|
size, bss, mpeg_parse->next_scr);
|
|
|
|
}
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-24 21:43:44 +00:00
|
|
|
const GstFormat*
|
|
|
|
gst_mpeg_parse_get_src_formats (GstPad *pad)
|
|
|
|
{
|
|
|
|
static const GstFormat formats[] = {
|
2002-12-23 00:35:24 +00:00
|
|
|
GST_FORMAT_BYTES,
|
2002-12-27 23:04:50 +00:00
|
|
|
GST_FORMAT_TIME,
|
2002-07-24 21:43:44 +00:00
|
|
|
0
|
|
|
|
};
|
|
|
|
return formats;
|
|
|
|
}
|
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
gboolean
|
|
|
|
gst_mpeg_parse_convert_src (GstPad *pad, GstFormat src_format, gint64 src_value,
|
|
|
|
GstFormat *dest_format, gint64 *dest_value)
|
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstMPEGParse *mpeg_parse = GST_MPEG_PARSE (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (src_format) {
|
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
switch (*dest_format) {
|
|
|
|
case GST_FORMAT_DEFAULT:
|
|
|
|
*dest_format = GST_FORMAT_TIME;
|
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
if (mpeg_parse->mux_rate == 0)
|
|
|
|
res = FALSE;
|
|
|
|
else
|
|
|
|
*dest_value = src_value * GST_SECOND / (mpeg_parse->mux_rate * 50);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_FORMAT_TIME:
|
|
|
|
switch (*dest_format) {
|
|
|
|
case GST_FORMAT_DEFAULT:
|
|
|
|
*dest_format = GST_FORMAT_BYTES;
|
|
|
|
case GST_FORMAT_BYTES:
|
|
|
|
*dest_value = mpeg_parse->mux_rate * 50 * src_value / GST_SECOND;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-12-30 17:53:18 +00:00
|
|
|
const GstQueryType*
|
2002-07-24 21:43:44 +00:00
|
|
|
gst_mpeg_parse_get_src_query_types (GstPad *pad)
|
|
|
|
{
|
2002-12-30 17:53:18 +00:00
|
|
|
static const GstQueryType types[] = {
|
|
|
|
GST_QUERY_TOTAL,
|
|
|
|
GST_QUERY_POSITION,
|
2002-07-24 21:43:44 +00:00
|
|
|
0
|
|
|
|
};
|
|
|
|
return types;
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
gboolean
|
2002-12-30 17:53:18 +00:00
|
|
|
gst_mpeg_parse_handle_src_query (GstPad *pad, GstQueryType type,
|
2002-05-26 21:59:22 +00:00
|
|
|
GstFormat *format, gint64 *value)
|
|
|
|
{
|
|
|
|
gboolean res = TRUE;
|
|
|
|
GstMPEGParse *mpeg_parse = GST_MPEG_PARSE (gst_pad_get_parent (pad));
|
2002-12-26 22:45:10 +00:00
|
|
|
GstFormat src_format;
|
|
|
|
gint64 src_value;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
|
|
|
switch (type) {
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_TOTAL:
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
switch (*format) {
|
|
|
|
case GST_FORMAT_DEFAULT:
|
|
|
|
*format = GST_FORMAT_TIME;
|
|
|
|
/* fallthrough */
|
2002-12-26 22:45:10 +00:00
|
|
|
default:
|
|
|
|
src_format = GST_FORMAT_BYTES;
|
|
|
|
if (!gst_pad_query (GST_PAD_PEER (mpeg_parse->sinkpad),
|
2002-12-30 17:53:18 +00:00
|
|
|
GST_QUERY_TOTAL, &src_format, &src_value))
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
res = FALSE;
|
2002-12-26 22:45:10 +00:00
|
|
|
}
|
2002-05-26 21:59:22 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-12-30 17:53:18 +00:00
|
|
|
case GST_QUERY_POSITION:
|
2002-05-26 21:59:22 +00:00
|
|
|
{
|
|
|
|
switch (*format) {
|
|
|
|
case GST_FORMAT_DEFAULT:
|
|
|
|
*format = GST_FORMAT_TIME;
|
|
|
|
/* fallthrough */
|
|
|
|
default:
|
2002-12-26 22:45:10 +00:00
|
|
|
src_format = GST_FORMAT_TIME;
|
|
|
|
src_value = MPEGTIME_TO_GSTTIME (mpeg_parse->current_scr);
|
2002-05-26 21:59:22 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
res = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
/* bring to requested format */
|
|
|
|
if (res)
|
|
|
|
res = gst_pad_convert (pad, src_format, src_value, format, value);
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-07-24 21:43:44 +00:00
|
|
|
const GstEventMask*
|
|
|
|
gst_mpeg_parse_get_src_event_masks (GstPad *pad)
|
|
|
|
{
|
|
|
|
static const GstEventMask masks[] = {
|
|
|
|
{ GST_EVENT_SEEK, GST_SEEK_METHOD_SET | GST_SEEK_FLAG_FLUSH },
|
|
|
|
{ 0, }
|
|
|
|
};
|
|
|
|
return masks;
|
|
|
|
}
|
|
|
|
|
2002-12-23 00:35:24 +00:00
|
|
|
static gboolean
|
2002-12-26 22:45:10 +00:00
|
|
|
index_seek (GstPad *pad, GstEvent *event, guint64 *offset, gint64 *scr)
|
2002-12-23 00:35:24 +00:00
|
|
|
{
|
|
|
|
GstIndexEntry *entry;
|
2002-12-26 22:45:10 +00:00
|
|
|
GstMPEGParse *mpeg_parse = GST_MPEG_PARSE (gst_pad_get_parent (pad));
|
2002-12-23 00:35:24 +00:00
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
entry = gst_index_get_assoc_entry (mpeg_parse->index, mpeg_parse->index_id,
|
|
|
|
GST_INDEX_LOOKUP_BEFORE, 0,
|
2002-12-23 00:35:24 +00:00
|
|
|
GST_EVENT_SEEK_FORMAT (event),
|
|
|
|
GST_EVENT_SEEK_OFFSET (event));
|
|
|
|
if (!entry)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (gst_index_entry_assoc_map (entry, GST_FORMAT_BYTES, offset)) {
|
2002-12-26 22:45:10 +00:00
|
|
|
gint64 time;
|
|
|
|
|
|
|
|
if (gst_index_entry_assoc_map (entry, GST_FORMAT_TIME, &time)) {
|
|
|
|
*scr = GSTTIME_TO_MPEGTIME (time);
|
|
|
|
}
|
2002-12-23 00:35:24 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
static gboolean
|
|
|
|
normal_seek (GstPad *pad, GstEvent *event, guint64 *offset, gint64 *scr)
|
|
|
|
{
|
|
|
|
gboolean res;
|
|
|
|
GstFormat format;
|
|
|
|
gint64 time;
|
|
|
|
|
|
|
|
/* bring offset to bytes */
|
|
|
|
format = GST_FORMAT_BYTES;
|
|
|
|
res = gst_pad_convert (pad,
|
|
|
|
GST_EVENT_SEEK_FORMAT (event),
|
|
|
|
GST_EVENT_SEEK_OFFSET (event),
|
|
|
|
&format,
|
|
|
|
offset);
|
|
|
|
/* bring offset to time */
|
|
|
|
format = GST_FORMAT_TIME;
|
|
|
|
res &= gst_pad_convert (pad,
|
|
|
|
GST_EVENT_SEEK_FORMAT (event),
|
|
|
|
GST_EVENT_SEEK_OFFSET (event),
|
|
|
|
&format,
|
|
|
|
&time);
|
|
|
|
|
|
|
|
/* convert to scr */
|
|
|
|
*scr = GSTTIME_TO_MPEGTIME (time);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
gboolean
|
|
|
|
gst_mpeg_parse_handle_src_event (GstPad *pad, GstEvent *event)
|
|
|
|
{
|
2002-12-23 00:35:24 +00:00
|
|
|
gboolean res = FALSE;
|
2002-05-26 21:59:22 +00:00
|
|
|
GstMPEGParse *mpeg_parse = GST_MPEG_PARSE (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
|
|
case GST_EVENT_SEEK:
|
|
|
|
{
|
|
|
|
guint64 desired_offset;
|
2002-12-26 22:45:10 +00:00
|
|
|
guint64 expected_scr;
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
/* first to to use the index if we have one */
|
|
|
|
if (mpeg_parse->index)
|
|
|
|
res = index_seek (pad, event, &desired_offset, &expected_scr);
|
|
|
|
/* nothing found, try fuzzy seek */
|
|
|
|
if (!res)
|
|
|
|
res = normal_seek (pad, event, &desired_offset, &expected_scr);
|
2002-05-26 21:59:22 +00:00
|
|
|
|
2002-12-26 22:45:10 +00:00
|
|
|
if (!res)
|
|
|
|
break;
|
|
|
|
|
2003-02-02 05:26:29 +00:00
|
|
|
GST_DEBUG (0, "sending seek to %" G_GINT64_FORMAT, desired_offset);
|
2002-12-26 22:45:10 +00:00
|
|
|
if (gst_bytestream_seek (mpeg_parse->packetize->bs, desired_offset, GST_SEEK_METHOD_SET)) {
|
|
|
|
mpeg_parse->discont_pending = TRUE;
|
|
|
|
mpeg_parse->scr_pending = TRUE;
|
|
|
|
mpeg_parse->next_scr = expected_scr;
|
|
|
|
mpeg_parse->current_scr = -1;
|
|
|
|
mpeg_parse->adjust = 0;
|
|
|
|
res = TRUE;
|
2002-05-26 21:59:22 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2002-07-08 19:43:33 +00:00
|
|
|
gst_event_unref (event);
|
2002-05-26 21:59:22 +00:00
|
|
|
return res;
|
2001-12-23 22:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstElementStateReturn
|
|
|
|
gst_mpeg_parse_change_state (GstElement *element)
|
|
|
|
{
|
|
|
|
GstMPEGParse *mpeg_parse = GST_MPEG_PARSE (element);
|
|
|
|
|
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
2002-02-02 13:57:30 +00:00
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
2001-12-23 22:37:07 +00:00
|
|
|
if (!mpeg_parse->packetize) {
|
2001-12-31 03:03:05 +00:00
|
|
|
mpeg_parse->packetize = gst_mpeg_packetize_new (mpeg_parse->sinkpad, GST_MPEG_PACKETIZE_SYSTEM);
|
2001-12-23 22:37:07 +00:00
|
|
|
}
|
2002-12-26 22:45:10 +00:00
|
|
|
/* initialize parser state */
|
|
|
|
mpeg_parse->current_scr = 0;
|
|
|
|
mpeg_parse->bytes_since_scr = 0;
|
|
|
|
mpeg_parse->adjust = 0;
|
|
|
|
mpeg_parse->next_scr = 0;
|
|
|
|
|
|
|
|
/* zero counters (should be done at RUNNING?) */
|
|
|
|
mpeg_parse->mux_rate = 0;
|
|
|
|
mpeg_parse->discont_pending = FALSE;
|
|
|
|
mpeg_parse->scr_pending = FALSE;
|
2001-12-23 22:37:07 +00:00
|
|
|
break;
|
2002-02-02 13:57:30 +00:00
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
2001-12-23 22:37:07 +00:00
|
|
|
if (mpeg_parse->packetize) {
|
|
|
|
gst_mpeg_packetize_destroy (mpeg_parse->packetize);
|
|
|
|
mpeg_parse->packetize = NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-02-02 13:57:30 +00:00
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
2001-12-22 23:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_mpeg_parse_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstMPEGParse *mpeg_parse;
|
|
|
|
|
|
|
|
mpeg_parse = GST_MPEG_PARSE(object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
2002-05-26 23:17:50 +00:00
|
|
|
case ARG_SYNC:
|
|
|
|
g_value_set_boolean (value, mpeg_parse->sync);
|
|
|
|
break;
|
2002-11-27 21:00:12 +00:00
|
|
|
case ARG_MAX_DISCONT:
|
|
|
|
g_value_set_int (value, mpeg_parse->max_discont);
|
|
|
|
break;
|
2002-12-30 19:18:04 +00:00
|
|
|
case ARG_STREAMINFO:
|
|
|
|
g_value_set_boxed (value, mpeg_parse->streaminfo);
|
|
|
|
break;
|
2001-12-22 23:26:48 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-26 21:59:22 +00:00
|
|
|
static void
|
|
|
|
gst_mpeg_parse_set_property (GObject *object, guint prop_id,
|
|
|
|
const GValue *value, GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GstMPEGParse *mpeg_parse;
|
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
mpeg_parse = GST_MPEG_PARSE (object);
|
2002-05-26 21:59:22 +00:00
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_SYNC:
|
|
|
|
mpeg_parse->sync = g_value_get_boolean (value);
|
|
|
|
break;
|
2002-11-27 21:00:12 +00:00
|
|
|
case ARG_MAX_DISCONT:
|
|
|
|
mpeg_parse->max_discont = g_value_get_int (value);
|
|
|
|
break;
|
2002-05-26 21:59:22 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
static void
|
2002-12-12 22:17:10 +00:00
|
|
|
gst_mpeg_parse_set_index (GstElement *element, GstIndex *index)
|
2002-11-27 21:00:12 +00:00
|
|
|
{
|
|
|
|
GstMPEGParse *mpeg_parse;
|
|
|
|
|
|
|
|
mpeg_parse = GST_MPEG_PARSE (element);
|
|
|
|
|
2002-12-12 22:17:10 +00:00
|
|
|
mpeg_parse->index = index;
|
2002-11-27 21:00:12 +00:00
|
|
|
|
2002-12-12 22:17:10 +00:00
|
|
|
gst_index_get_writer_id (index, GST_OBJECT (mpeg_parse->sinkpad),
|
|
|
|
&mpeg_parse->index_id);
|
|
|
|
gst_index_add_format (index, mpeg_parse->index_id, scr_format);
|
2002-11-27 21:00:12 +00:00
|
|
|
}
|
|
|
|
|
2002-12-12 22:17:10 +00:00
|
|
|
static GstIndex*
|
|
|
|
gst_mpeg_parse_get_index (GstElement *element)
|
2002-11-27 21:00:12 +00:00
|
|
|
{
|
|
|
|
GstMPEGParse *mpeg_parse;
|
|
|
|
|
|
|
|
mpeg_parse = GST_MPEG_PARSE (element);
|
|
|
|
|
2002-12-12 22:17:10 +00:00
|
|
|
return mpeg_parse->index;
|
2002-11-27 21:00:12 +00:00
|
|
|
}
|
2001-12-22 23:26:48 +00:00
|
|
|
|
2002-12-29 21:18:16 +00:00
|
|
|
static gboolean
|
|
|
|
gst_mpeg_parse_release_locks (GstElement *element)
|
|
|
|
{
|
|
|
|
GstMPEGParse *mpeg_parse;
|
|
|
|
|
|
|
|
mpeg_parse = GST_MPEG_PARSE (element);
|
|
|
|
|
|
|
|
if (mpeg_parse->id) {
|
|
|
|
gst_clock_id_unlock (mpeg_parse->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2001-12-22 23:26:48 +00:00
|
|
|
gboolean
|
|
|
|
gst_mpeg_parse_plugin_init (GModule *module, GstPlugin *plugin)
|
|
|
|
{
|
|
|
|
GstElementFactory *factory;
|
|
|
|
|
|
|
|
/* this filter needs the bytestream package */
|
2002-09-09 23:24:29 +00:00
|
|
|
if (!gst_library_load ("gstbytestream"))
|
2001-12-22 23:26:48 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* create an elementfactory for the mpeg_parse element */
|
2002-09-09 23:24:29 +00:00
|
|
|
factory = gst_element_factory_new ("mpegparse", GST_TYPE_MPEG_PARSE,
|
|
|
|
&mpeg_parse_details);
|
2001-12-22 23:26:48 +00:00
|
|
|
g_return_val_if_fail(factory != NULL, FALSE);
|
|
|
|
|
2002-11-27 21:00:12 +00:00
|
|
|
scr_format = gst_format_register ("scr", "The MPEG system clock reference time");
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (src_factory));
|
|
|
|
gst_element_factory_add_pad_template (factory, GST_PAD_TEMPLATE_GET (sink_factory));
|
2001-12-22 23:26:48 +00:00
|
|
|
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|