mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
e9b29e9dc7
It's flat and not kept around for longer.
357 lines
11 KiB
C
357 lines
11 KiB
C
/* GStreamer H.263 Parser
|
|
* Copyright (C) <2010> Arun Raghavan <arun.raghavan@collabora.co.uk>
|
|
* Copyright (C) <2010> Edward Hervey <edward.hervey@collabora.co.uk>
|
|
* Copyright (C) <2010> Collabora Multimedia
|
|
* Copyright (C) <2010> Nokia Corporation
|
|
*
|
|
* Some bits C-c,C-v'ed and s/4/3 from h264parse:
|
|
* (C) 2005 Michal Benes <michal.benes@itonis.tv>
|
|
* (C) 2008 Wim Taymans <wim.taymans@gmail.com>
|
|
* (C) 2009 Mark Nauwelaerts <mnauw users sf net>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <gst/base/gstbytereader.h>
|
|
#include "gsth263parse.h"
|
|
|
|
GST_DEBUG_CATEGORY (h263_parse_debug);
|
|
#define GST_CAT_DEFAULT h263_parse_debug
|
|
|
|
static GstStaticPadTemplate srctemplate =
|
|
GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS ("video/x-h263, variant = (string) itu, "
|
|
"parsed = (boolean) true")
|
|
);
|
|
|
|
static GstStaticPadTemplate sinktemplate =
|
|
GST_STATIC_PAD_TEMPLATE ("sink", GST_PAD_SINK,
|
|
GST_PAD_ALWAYS,
|
|
GST_STATIC_CAPS ("video/x-h263, variant = (string) itu, "
|
|
"parsed = (boolean) false")
|
|
);
|
|
|
|
GST_BOILERPLATE (GstH263Parse, gst_h263_parse, GstElement, GST_TYPE_BASE_PARSE);
|
|
|
|
static gboolean gst_h263_parse_start (GstBaseParse * parse);
|
|
static gboolean gst_h263_parse_stop (GstBaseParse * parse);
|
|
static gboolean gst_h263_parse_sink_event (GstBaseParse * parse,
|
|
GstEvent * event);
|
|
static gboolean gst_h263_parse_check_valid_frame (GstBaseParse * parse,
|
|
GstBaseParseFrame * frame, guint * framesize, gint * skipsize);
|
|
static GstFlowReturn gst_h263_parse_parse_frame (GstBaseParse * parse,
|
|
GstBaseParseFrame * frame);
|
|
|
|
static void
|
|
gst_h263_parse_base_init (gpointer g_class)
|
|
{
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
gst_static_pad_template_get (&srctemplate));
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
gst_static_pad_template_get (&sinktemplate));
|
|
gst_element_class_set_details_simple (gstelement_class, "H.263 parser",
|
|
"Codec/Parser/Video",
|
|
"Parses H.263 streams",
|
|
"Arun Raghavan <arun.raghavan@collabora.co.uk>,"
|
|
"Edward Hervey <edward.hervey@collabora.co.uk>");
|
|
|
|
GST_DEBUG_CATEGORY_INIT (h263_parse_debug, "h263parse", 0, "h263 parser");
|
|
}
|
|
|
|
static void
|
|
gst_h263_parse_class_init (GstH263ParseClass * klass)
|
|
{
|
|
GstBaseParseClass *parse_class = GST_BASE_PARSE_CLASS (klass);
|
|
|
|
/* Override BaseParse vfuncs */
|
|
parse_class->start = GST_DEBUG_FUNCPTR (gst_h263_parse_start);
|
|
parse_class->stop = GST_DEBUG_FUNCPTR (gst_h263_parse_stop);
|
|
parse_class->event = GST_DEBUG_FUNCPTR (gst_h263_parse_sink_event);
|
|
parse_class->check_valid_frame =
|
|
GST_DEBUG_FUNCPTR (gst_h263_parse_check_valid_frame);
|
|
parse_class->parse_frame = GST_DEBUG_FUNCPTR (gst_h263_parse_parse_frame);
|
|
}
|
|
|
|
static void
|
|
gst_h263_parse_init (GstH263Parse * h263parse, GstH263ParseClass * g_class)
|
|
{
|
|
}
|
|
|
|
static gboolean
|
|
gst_h263_parse_start (GstBaseParse * parse)
|
|
{
|
|
GstH263Parse *h263parse = GST_H263_PARSE (parse);
|
|
|
|
GST_DEBUG ("Start");
|
|
|
|
h263parse->bitrate = 0;
|
|
h263parse->profile = -1;
|
|
h263parse->level = -1;
|
|
|
|
h263parse->state = PARSING;
|
|
|
|
gst_base_parse_set_min_frame_size (parse, 512);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
gst_h263_parse_stop (GstBaseParse * parse)
|
|
{
|
|
GST_DEBUG ("Stop");
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
gst_h263_parse_sink_event (GstBaseParse * parse, GstEvent * event)
|
|
{
|
|
GstH263Parse *h263parse;
|
|
gboolean res = FALSE;
|
|
|
|
h263parse = GST_H263_PARSE (parse);
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
|
case GST_EVENT_TAG:
|
|
{
|
|
GstTagList *taglist;
|
|
|
|
gst_event_parse_tag (event, &taglist);
|
|
|
|
if (gst_tag_list_get_uint (taglist, GST_TAG_BITRATE, &h263parse->bitrate))
|
|
GST_DEBUG ("Got bitrate tag: %u", h263parse->bitrate);
|
|
|
|
break;
|
|
}
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
static guint
|
|
find_psc (GstBuffer * buffer, guint skip)
|
|
{
|
|
GstByteReader br;
|
|
guint psc_pos = -1, psc;
|
|
|
|
gst_byte_reader_init_from_buffer (&br, buffer);
|
|
|
|
if (!gst_byte_reader_set_pos (&br, skip))
|
|
goto out;
|
|
|
|
gst_byte_reader_peek_uint24_be (&br, &psc);
|
|
|
|
/* Scan for the picture start code (22 bits - 0x0020) */
|
|
while ((gst_byte_reader_get_remaining (&br) >= 3)) {
|
|
if (gst_byte_reader_peek_uint24_be (&br, &psc) &&
|
|
((psc & 0xffffc0) == 0x000080)) {
|
|
psc_pos = gst_byte_reader_get_pos (&br);
|
|
break;
|
|
} else
|
|
gst_byte_reader_skip (&br, 1);
|
|
}
|
|
|
|
out:
|
|
return psc_pos;
|
|
}
|
|
|
|
static void
|
|
gst_h263_parse_set_src_caps (GstH263Parse * h263parse,
|
|
const H263Params * params)
|
|
{
|
|
GstStructure *st;
|
|
GstCaps *caps, *sink_caps;
|
|
gint fr_num, fr_denom;
|
|
|
|
g_assert (h263parse->state == PASSTHROUGH || h263parse->state == GOT_HEADER);
|
|
|
|
caps = GST_PAD_CAPS (GST_BASE_PARSE_SINK_PAD (h263parse));
|
|
if (caps) {
|
|
caps = gst_caps_copy (caps);
|
|
} else {
|
|
caps = gst_caps_new_simple ("video/x-h263",
|
|
"variant", G_TYPE_STRING, "itu", NULL);
|
|
}
|
|
gst_caps_set_simple (caps, "parsed", G_TYPE_BOOLEAN, TRUE, NULL);
|
|
|
|
sink_caps = GST_PAD_CAPS (GST_BASE_PARSE_SINK_PAD (h263parse));
|
|
if (sink_caps && (st = gst_caps_get_structure (sink_caps, 0)) &&
|
|
gst_structure_get_fraction (st, "framerate", &fr_num, &fr_denom)) {
|
|
/* Got it in caps - nothing more to do */
|
|
GST_DEBUG ("Sink caps override framerate from headers");
|
|
} else {
|
|
/* Caps didn't have the framerate - get it from params */
|
|
gst_h263_parse_get_framerate (params, &fr_num, &fr_denom);
|
|
}
|
|
gst_caps_set_simple (caps, "framerate", GST_TYPE_FRACTION, fr_num, fr_denom,
|
|
NULL);
|
|
|
|
if (h263parse->state == GOT_HEADER) {
|
|
gst_caps_set_simple (caps,
|
|
"annex-d", G_TYPE_BOOLEAN, (params->features & H263_OPTION_UMV_MODE),
|
|
"annex-e", G_TYPE_BOOLEAN, (params->features & H263_OPTION_SAC_MODE),
|
|
"annex-f", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AP_MODE),
|
|
"annex-g", G_TYPE_BOOLEAN, (params->features & H263_OPTION_PB_MODE),
|
|
"annex-i", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AIC_MODE),
|
|
"annex-j", G_TYPE_BOOLEAN, (params->features & H263_OPTION_DF_MODE),
|
|
"annex-k", G_TYPE_BOOLEAN, (params->features & H263_OPTION_SS_MODE),
|
|
"annex-m", G_TYPE_BOOLEAN, (params->type == PICTURE_IMPROVED_PB),
|
|
"annex-n", G_TYPE_BOOLEAN, (params->features & H263_OPTION_RPS_MODE),
|
|
"annex-q", G_TYPE_BOOLEAN, (params->features & H263_OPTION_RRU_MODE),
|
|
"annex-r", G_TYPE_BOOLEAN, (params->features & H263_OPTION_ISD_MODE),
|
|
"annex-s", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AIV_MODE),
|
|
"annex-t", G_TYPE_BOOLEAN, (params->features & H263_OPTION_MQ_MODE),
|
|
"annex-u", G_TYPE_BOOLEAN, (params->features & H263_OPTION_ERPS_MODE),
|
|
"annex-v", G_TYPE_BOOLEAN, (params->features & H263_OPTION_DPS_MODE),
|
|
NULL);
|
|
|
|
h263parse->profile = gst_h263_parse_get_profile (params);
|
|
if (h263parse->profile != -1)
|
|
gst_caps_set_simple (caps, "profile", G_TYPE_UINT, h263parse->profile,
|
|
NULL);
|
|
|
|
h263parse->level = gst_h263_parse_get_level (params, h263parse->profile,
|
|
h263parse->bitrate, fr_num, fr_denom);
|
|
if (h263parse->level != -1)
|
|
gst_caps_set_simple (caps, "level", G_TYPE_UINT, h263parse->level, NULL);
|
|
}
|
|
|
|
gst_pad_set_caps (GST_BASE_PARSE_SRC_PAD (GST_BASE_PARSE (h263parse)), caps);
|
|
gst_caps_unref (caps);
|
|
}
|
|
|
|
static gboolean
|
|
gst_h263_parse_check_valid_frame (GstBaseParse * parse,
|
|
GstBaseParseFrame * frame, guint * framesize, gint * skipsize)
|
|
{
|
|
GstH263Parse *h263parse;
|
|
GstBuffer *buffer;
|
|
guint psc_pos, next_psc_pos;
|
|
|
|
h263parse = GST_H263_PARSE (parse);
|
|
buffer = frame->buffer;
|
|
|
|
if (GST_BUFFER_SIZE (buffer) < 3)
|
|
return FALSE;
|
|
|
|
psc_pos = find_psc (buffer, 0);
|
|
|
|
if (psc_pos == -1) {
|
|
/* PSC not found, need more data */
|
|
if (GST_BUFFER_SIZE (buffer) > 3)
|
|
psc_pos = GST_BUFFER_SIZE (buffer) - 3;
|
|
else
|
|
psc_pos = 0;
|
|
goto more;
|
|
}
|
|
|
|
/* Found the start of the frame, now try to find the end */
|
|
next_psc_pos = psc_pos + 3;
|
|
next_psc_pos = find_psc (buffer, next_psc_pos);
|
|
|
|
if (next_psc_pos == -1) {
|
|
if (GST_BASE_PARSE_FRAME_DRAIN (frame))
|
|
/* FLUSH/EOS, it's okay if we can't find the next frame */
|
|
next_psc_pos = GST_BUFFER_SIZE (buffer);
|
|
else
|
|
goto more;
|
|
}
|
|
|
|
/* We should now have a complete frame */
|
|
|
|
/* If this is the first frame, parse and set srcpad caps */
|
|
if (h263parse->state == PARSING) {
|
|
H263Params params = { 0, };
|
|
GstFlowReturn res;
|
|
|
|
res = gst_h263_parse_get_params (¶ms, buffer, FALSE, &h263parse->state);
|
|
if (res != GST_FLOW_OK || h263parse->state != GOT_HEADER) {
|
|
GST_WARNING ("Couldn't parse header - setting passthrough mode");
|
|
gst_base_parse_set_format (parse,
|
|
GST_BASE_PARSE_FORMAT_PASSTHROUGH, TRUE);
|
|
} else {
|
|
/* Set srcpad caps since we now have sufficient information to do so */
|
|
gst_h263_parse_set_src_caps (h263parse, ¶ms);
|
|
}
|
|
}
|
|
|
|
*skipsize = psc_pos;
|
|
*framesize = next_psc_pos - psc_pos;
|
|
|
|
/* XXX: After getting a keyframe, should we adjust min_frame_size to
|
|
* something smaller so we don't end up collecting too many non-keyframes? */
|
|
|
|
GST_DEBUG ("Found a frame of size %d at pos %d", *framesize, *skipsize);
|
|
|
|
return TRUE;
|
|
|
|
more:
|
|
/* Ask for 1024 bytes more - this is an arbitrary choice */
|
|
gst_base_parse_set_min_frame_size (parse, GST_BUFFER_SIZE (buffer) + 1024);
|
|
|
|
*skipsize = psc_pos;
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static GstFlowReturn
|
|
gst_h263_parse_parse_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
|
|
{
|
|
GstH263Parse *h263parse;
|
|
GstBuffer *buffer;
|
|
GstFlowReturn res;
|
|
H263Params params = { 0, };
|
|
|
|
h263parse = GST_H263_PARSE (parse);
|
|
buffer = frame->buffer;
|
|
|
|
res = gst_h263_parse_get_params (¶ms, buffer, TRUE, &h263parse->state);
|
|
if (res != GST_FLOW_OK)
|
|
goto out;
|
|
|
|
if (h263parse->state == PASSTHROUGH || h263parse->state == PARSING) {
|
|
/* There's a feature we don't support, or we didn't have enough data to
|
|
* parse the header, which should not be possible. Either way, go into
|
|
* passthrough mode and let downstream handle it if it can. */
|
|
GST_WARNING ("Couldn't parse header - setting passthrough mode");
|
|
gst_base_parse_set_format (parse, GST_BASE_PARSE_FORMAT_PASSTHROUGH, TRUE);
|
|
goto out;
|
|
}
|
|
|
|
/* h263parse->state is now GOT_HEADER */
|
|
|
|
gst_buffer_set_caps (buffer,
|
|
GST_PAD_CAPS (GST_BASE_PARSE_SRC_PAD (GST_BASE_PARSE (h263parse))));
|
|
|
|
if (gst_h263_parse_is_delta_unit (¶ms))
|
|
GST_BUFFER_FLAG_UNSET (buffer, GST_BUFFER_FLAG_DELTA_UNIT);
|
|
else
|
|
GST_BUFFER_FLAG_SET (buffer, GST_BUFFER_FLAG_DELTA_UNIT);
|
|
|
|
out:
|
|
|
|
return res;
|
|
}
|