mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
140 lines
4.3 KiB
C
140 lines
4.3 KiB
C
|
/*
|
||
|
* Copyright (C) 2011, Hewlett-Packard Development Company, L.P.
|
||
|
* Author: Sebastian Dröge <sebastian.droege@collabora.co.uk>, Collabora Ltd.
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation
|
||
|
* version 2.1 of the License.
|
||
|
*
|
||
|
* 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
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include "config.h"
|
||
|
#endif
|
||
|
|
||
|
#include <gst/gst.h>
|
||
|
|
||
|
#include "gstomxmpeg4videodec.h"
|
||
|
|
||
|
GST_DEBUG_CATEGORY_STATIC (gst_omx_mpeg4_video_dec_debug_category);
|
||
|
#define GST_CAT_DEFAULT gst_omx_mpeg4_video_dec_debug_category
|
||
|
|
||
|
/* prototypes */
|
||
|
static void gst_omx_mpeg4_video_dec_finalize (GObject * object);
|
||
|
static gboolean gst_omx_mpeg4_video_dec_is_format_change (GstOMXVideoDec * dec,
|
||
|
GstOMXPort * port, GstVideoState * state);
|
||
|
static gboolean gst_omx_mpeg4_video_dec_set_format (GstOMXVideoDec * dec,
|
||
|
GstOMXPort * port, GstVideoState * state);
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
PROP_0
|
||
|
};
|
||
|
|
||
|
/* class initialization */
|
||
|
|
||
|
#define DEBUG_INIT(bla) \
|
||
|
GST_DEBUG_CATEGORY_INIT (gst_omx_mpeg4_video_dec_debug_category, "omxvideodec", 0, \
|
||
|
"debug category for gst-omx video decoder base class");
|
||
|
|
||
|
GST_BOILERPLATE_FULL (GstOMXMPEG4VideoDec, gst_omx_mpeg4_video_dec,
|
||
|
GstOMXVideoDec, GST_TYPE_OMX_VIDEO_DEC, DEBUG_INIT);
|
||
|
|
||
|
static GstStaticPadTemplate gst_omx_mpeg4_video_dec_sink_template =
|
||
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
||
|
GST_PAD_SINK,
|
||
|
GST_PAD_ALWAYS,
|
||
|
GST_STATIC_CAPS ("video/mpeg, "
|
||
|
"mpegversion=(int) 4, "
|
||
|
"systemstream=(boolean) false, "
|
||
|
"parsed=(boolean) true, "
|
||
|
"width=(int) [ 16, 4096 ], " "height=(int) [ 16, 4096 ]")
|
||
|
);
|
||
|
|
||
|
static GstStaticPadTemplate gst_omx_mpeg4_video_dec_src_template =
|
||
|
GST_STATIC_PAD_TEMPLATE ("src",
|
||
|
GST_PAD_SRC,
|
||
|
GST_PAD_ALWAYS,
|
||
|
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("I420"))
|
||
|
);
|
||
|
|
||
|
static void
|
||
|
gst_omx_mpeg4_video_dec_base_init (gpointer g_class)
|
||
|
{
|
||
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
||
|
|
||
|
gst_element_class_add_pad_template (element_class,
|
||
|
gst_static_pad_template_get (&gst_omx_mpeg4_video_dec_src_template));
|
||
|
gst_element_class_add_pad_template (element_class,
|
||
|
gst_static_pad_template_get (&gst_omx_mpeg4_video_dec_sink_template));
|
||
|
|
||
|
gst_element_class_set_details_simple (element_class,
|
||
|
"OpenMAX MPEG4 Video Decoder",
|
||
|
"Codec/Decoder/Video",
|
||
|
"Decode MPEG4 video streams",
|
||
|
"Sebastian Dröge <sebastian.droege@collabora.co.uk>");
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
gst_omx_mpeg4_video_dec_class_init (GstOMXMPEG4VideoDecClass * klass)
|
||
|
{
|
||
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
||
|
GstOMXVideoDecClass *videodec_class = GST_OMX_VIDEO_DEC_CLASS (klass);
|
||
|
|
||
|
gobject_class->finalize = gst_omx_mpeg4_video_dec_finalize;
|
||
|
|
||
|
/* TODO: Make this configurable */
|
||
|
videodec_class->core_name = "/usr/local/lib/libomxil-bellagio.so.0";
|
||
|
videodec_class->component_name = "OMX.st.video_decoder.mpeg4";
|
||
|
|
||
|
videodec_class->is_format_change =
|
||
|
GST_DEBUG_FUNCPTR (gst_omx_mpeg4_video_dec_is_format_change);
|
||
|
videodec_class->set_format =
|
||
|
GST_DEBUG_FUNCPTR (gst_omx_mpeg4_video_dec_set_format);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
gst_omx_mpeg4_video_dec_init (GstOMXMPEG4VideoDec * self,
|
||
|
GstOMXMPEG4VideoDecClass * klass)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
gst_omx_mpeg4_video_dec_finalize (GObject * object)
|
||
|
{
|
||
|
/* GstOMXMPEG4VideoDec *self = GST_OMX_MPEG4_VIDEO_DEC (object); */
|
||
|
|
||
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||
|
}
|
||
|
|
||
|
static gboolean
|
||
|
gst_omx_mpeg4_video_dec_is_format_change (GstOMXVideoDec * dec,
|
||
|
GstOMXPort * port, GstVideoState * state)
|
||
|
{
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
static gboolean
|
||
|
gst_omx_mpeg4_video_dec_set_format (GstOMXVideoDec * dec, GstOMXPort * port,
|
||
|
GstVideoState * state)
|
||
|
{
|
||
|
gboolean ret;
|
||
|
OMX_PARAM_PORTDEFINITIONTYPE port_def;
|
||
|
|
||
|
gst_omx_port_get_port_definition (port, &port_def);
|
||
|
port_def.format.video.eCompressionFormat = OMX_VIDEO_CodingMPEG4;
|
||
|
ret = gst_omx_port_update_port_definition (port, &port_def);
|
||
|
|
||
|
return ret;
|
||
|
}
|