2002-03-20 21:44:42 +00:00
|
|
|
/* GStreamer
|
2001-12-23 13:25:04 +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.
|
|
|
|
*/
|
|
|
|
|
2004-01-12 04:15:46 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2003-06-07 00:41:32 +00:00
|
|
|
#include "config.h"
|
2004-01-12 04:15:46 +00:00
|
|
|
#endif
|
2003-06-07 00:41:32 +00:00
|
|
|
|
2002-11-06 23:53:46 +00:00
|
|
|
#include <assert.h>
|
2001-12-23 13:25:04 +00:00
|
|
|
#include <string.h>
|
2003-06-07 00:41:32 +00:00
|
|
|
|
2002-11-26 14:50:05 +00:00
|
|
|
#ifdef HAVE_FFMPEG_UNINSTALLED
|
|
|
|
#include <avcodec.h>
|
|
|
|
#else
|
|
|
|
#include <ffmpeg/avcodec.h>
|
|
|
|
#endif
|
2002-11-06 23:53:46 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
#include "gstffmpegcodecmap.h"
|
2002-11-25 21:37:26 +00:00
|
|
|
|
2002-11-06 23:53:46 +00:00
|
|
|
typedef struct _GstFFMpegDec GstFFMpegDec;
|
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
struct _GstFFMpegDec
|
|
|
|
{
|
2002-11-06 23:53:46 +00:00
|
|
|
GstElement element;
|
|
|
|
|
|
|
|
/* We need to keep track of our pads, so we do so here. */
|
|
|
|
GstPad *srcpad;
|
|
|
|
GstPad *sinkpad;
|
|
|
|
|
|
|
|
AVCodecContext *context;
|
2002-12-12 13:12:44 +00:00
|
|
|
AVFrame *picture;
|
2003-06-07 00:41:32 +00:00
|
|
|
gboolean opened;
|
2002-11-06 23:53:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _GstFFMpegDecClass GstFFMpegDecClass;
|
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
struct _GstFFMpegDecClass
|
|
|
|
{
|
2002-11-06 23:53:46 +00:00
|
|
|
GstElementClass parent_class;
|
|
|
|
|
|
|
|
AVCodec *in_plugin;
|
2003-06-07 00:41:32 +00:00
|
|
|
GstPadTemplate *srctempl, *sinktempl;
|
2002-11-06 23:53:46 +00:00
|
|
|
};
|
|
|
|
|
2003-11-02 13:12:14 +00:00
|
|
|
typedef struct _GstFFMpegDecClassParams GstFFMpegDecClassParams;
|
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
struct _GstFFMpegDecClassParams
|
|
|
|
{
|
2002-11-25 21:37:26 +00:00
|
|
|
AVCodec *in_plugin;
|
2003-11-02 13:12:14 +00:00
|
|
|
GstCaps *srccaps, *sinkcaps;
|
|
|
|
};
|
2002-11-25 21:37:26 +00:00
|
|
|
|
2002-11-06 23:53:46 +00:00
|
|
|
#define GST_TYPE_FFMPEGDEC \
|
|
|
|
(gst_ffmpegdec_get_type())
|
|
|
|
#define GST_FFMPEGDEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FFMPEGDEC,GstFFMpegDec))
|
|
|
|
#define GST_FFMPEGDEC_CLASS(klass) \
|
|
|
|
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_FFMPEGDEC,GstFFMpegDecClass))
|
|
|
|
#define GST_IS_FFMPEGDEC(obj) \
|
|
|
|
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_FFMPEGDEC))
|
|
|
|
#define GST_IS_FFMPEGDEC_CLASS(obj) \
|
|
|
|
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_FFMPEGDEC))
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-23 13:25:04 +00:00
|
|
|
/* FILL ME */
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-23 13:25:04 +00:00
|
|
|
ARG_0,
|
|
|
|
/* FILL ME */
|
|
|
|
};
|
|
|
|
|
|
|
|
static GHashTable *global_plugins;
|
|
|
|
|
|
|
|
/* A number of functon prototypes are given so we can refer to them later. */
|
2004-03-29 16:39:18 +00:00
|
|
|
static void gst_ffmpegdec_base_init (GstFFMpegDecClass * klass);
|
|
|
|
static void gst_ffmpegdec_class_init (GstFFMpegDecClass * klass);
|
|
|
|
static void gst_ffmpegdec_init (GstFFMpegDec * ffmpegdec);
|
|
|
|
static void gst_ffmpegdec_dispose (GObject * object);
|
2003-06-07 00:41:32 +00:00
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
static GstPadLinkReturn gst_ffmpegdec_connect (GstPad * pad,
|
|
|
|
const GstCaps * caps);
|
|
|
|
static void gst_ffmpegdec_chain (GstPad * pad, GstData * data);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
static GstElementStateReturn gst_ffmpegdec_change_state (GstElement * element);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-10-26 11:30:18 +00:00
|
|
|
#if 0
|
2003-06-07 00:41:32 +00:00
|
|
|
/* some sort of bufferpool handling, but different */
|
2004-03-29 16:39:18 +00:00
|
|
|
static int gst_ffmpegdec_get_buffer (AVCodecContext * context,
|
|
|
|
AVFrame * picture);
|
|
|
|
static void gst_ffmpegdec_release_buffer (AVCodecContext * context,
|
|
|
|
AVFrame * picture);
|
2003-10-26 11:30:18 +00:00
|
|
|
#endif
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
2002-03-19 04:09:41 +00:00
|
|
|
/*static guint gst_ffmpegdec_signals[LAST_SIGNAL] = { 0 }; */
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-11-02 13:12:14 +00:00
|
|
|
static void
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_base_init (GstFFMpegDecClass * klass)
|
2003-11-02 13:12:14 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
GstFFMpegDecClassParams *params;
|
2004-02-11 08:38:26 +00:00
|
|
|
GstElementDetails details;
|
2003-11-02 13:12:14 +00:00
|
|
|
GstPadTemplate *sinktempl, *srctempl;
|
|
|
|
|
|
|
|
params = g_hash_table_lookup (global_plugins,
|
2004-03-29 16:39:18 +00:00
|
|
|
GINT_TO_POINTER (G_OBJECT_CLASS_TYPE (gobject_class)));
|
2003-11-02 19:07:41 +00:00
|
|
|
if (!params)
|
2004-03-29 16:39:18 +00:00
|
|
|
params = g_hash_table_lookup (global_plugins, GINT_TO_POINTER (0));
|
2003-11-02 19:07:41 +00:00
|
|
|
g_assert (params);
|
2003-11-02 13:12:14 +00:00
|
|
|
|
|
|
|
/* construct the element details struct */
|
2004-03-29 16:39:18 +00:00
|
|
|
details.longname = g_strdup_printf ("FFMPEG %s decoder",
|
|
|
|
params->in_plugin->name);
|
|
|
|
details.klass = g_strdup_printf ("Codec/%s/Decoder",
|
|
|
|
(params->in_plugin->type == CODEC_TYPE_VIDEO) ? "Video" : "Audio");
|
|
|
|
details.description = g_strdup_printf ("FFMPEG %s decoder",
|
|
|
|
params->in_plugin->name);
|
2004-02-11 08:38:26 +00:00
|
|
|
details.author = "Wim Taymans <wim.taymans@chello.be>, "
|
2004-03-29 16:39:18 +00:00
|
|
|
"Ronald Bultje <rbultje@ronald.bitfreak.net>";
|
2004-02-11 08:38:26 +00:00
|
|
|
gst_element_class_set_details (element_class, &details);
|
|
|
|
g_free (details.longname);
|
|
|
|
g_free (details.klass);
|
|
|
|
g_free (details.description);
|
2003-11-02 13:12:14 +00:00
|
|
|
|
|
|
|
/* pad templates */
|
|
|
|
sinktempl = gst_pad_template_new ("sink", GST_PAD_SINK,
|
2004-03-29 16:39:18 +00:00
|
|
|
GST_PAD_ALWAYS, params->sinkcaps);
|
2003-11-02 13:12:14 +00:00
|
|
|
srctempl = gst_pad_template_new ("src", GST_PAD_SRC,
|
2004-03-29 16:39:18 +00:00
|
|
|
GST_PAD_ALWAYS, params->srccaps);
|
2003-11-02 13:12:14 +00:00
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class, srctempl);
|
|
|
|
gst_element_class_add_pad_template (element_class, sinktempl);
|
|
|
|
|
|
|
|
klass->in_plugin = params->in_plugin;
|
|
|
|
klass->srctempl = srctempl;
|
|
|
|
klass->sinktempl = sinktempl;
|
|
|
|
}
|
|
|
|
|
2001-12-23 13:25:04 +00:00
|
|
|
static void
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_class_init (GstFFMpegDecClass * klass)
|
2001-12-23 13:25:04 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-11-04 22:31:05 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
gobject_class->dispose = gst_ffmpegdec_dispose;
|
|
|
|
gstelement_class->change_state = gst_ffmpegdec_change_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_init (GstFFMpegDec * ffmpegdec)
|
2003-06-07 00:41:32 +00:00
|
|
|
{
|
2004-03-29 16:39:18 +00:00
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
/* setup pads */
|
|
|
|
ffmpegdec->sinkpad = gst_pad_new_from_template (oclass->sinktempl, "sink");
|
|
|
|
gst_pad_set_link_function (ffmpegdec->sinkpad, gst_ffmpegdec_connect);
|
|
|
|
gst_pad_set_chain_function (ffmpegdec->sinkpad, gst_ffmpegdec_chain);
|
|
|
|
ffmpegdec->srcpad = gst_pad_new_from_template (oclass->srctempl, "src");
|
2004-01-02 07:09:20 +00:00
|
|
|
gst_pad_use_explicit_caps (ffmpegdec->srcpad);
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
gst_element_add_pad (GST_ELEMENT (ffmpegdec), ffmpegdec->sinkpad);
|
|
|
|
gst_element_add_pad (GST_ELEMENT (ffmpegdec), ffmpegdec->srcpad);
|
|
|
|
|
|
|
|
/* some ffmpeg data */
|
2004-03-29 16:39:18 +00:00
|
|
|
ffmpegdec->context = avcodec_alloc_context ();
|
|
|
|
ffmpegdec->picture = avcodec_alloc_frame ();
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
ffmpegdec->opened = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_dispose (GObject * object)
|
2003-06-07 00:41:32 +00:00
|
|
|
{
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) object;
|
2003-11-04 22:31:05 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
/* old session should have been closed in element_class->dispose */
|
|
|
|
g_assert (!ffmpegdec->opened);
|
2002-11-25 21:37:26 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
/* clean up remaining allocated data */
|
|
|
|
av_free (ffmpegdec->context);
|
|
|
|
av_free (ffmpegdec->picture);
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
|
|
|
|
2003-01-10 13:38:12 +00:00
|
|
|
static GstPadLinkReturn
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_connect (GstPad * pad, const GstCaps * caps)
|
2001-12-23 13:25:04 +00:00
|
|
|
{
|
2004-03-29 16:39:18 +00:00
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) (gst_pad_get_parent (pad));
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
/* close old session */
|
|
|
|
if (ffmpegdec->opened) {
|
|
|
|
avcodec_close (ffmpegdec->context);
|
|
|
|
ffmpegdec->opened = FALSE;
|
|
|
|
}
|
2002-06-03 22:48:11 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
/* set defaults */
|
|
|
|
avcodec_get_context_defaults (ffmpegdec->context);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-10-26 11:30:18 +00:00
|
|
|
#if 0
|
2003-06-07 00:41:32 +00:00
|
|
|
/* set buffer functions */
|
|
|
|
ffmpegdec->context->get_buffer = gst_ffmpegdec_get_buffer;
|
|
|
|
ffmpegdec->context->release_buffer = gst_ffmpegdec_release_buffer;
|
2003-10-26 11:30:18 +00:00
|
|
|
#endif
|
2003-06-07 00:41:32 +00:00
|
|
|
|
2003-06-07 20:45:13 +00:00
|
|
|
/* get size and so */
|
|
|
|
gst_ffmpeg_caps_to_codectype (oclass->in_plugin->type,
|
2004-03-29 16:39:18 +00:00
|
|
|
caps, ffmpegdec->context);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2004-03-02 02:30:04 +00:00
|
|
|
/* we dont send complete frames - FIXME: we need a 'framed' property
|
|
|
|
* in caps */
|
|
|
|
if (oclass->in_plugin->capabilities & CODEC_CAP_TRUNCATED &&
|
|
|
|
(ffmpegdec->context->codec_id == CODEC_ID_MPEG1VIDEO ||
|
2004-03-29 16:39:18 +00:00
|
|
|
ffmpegdec->context->codec_id == CODEC_ID_MPEG2VIDEO))
|
2003-06-07 00:41:32 +00:00
|
|
|
ffmpegdec->context->flags |= CODEC_FLAG_TRUNCATED;
|
|
|
|
|
2003-06-07 11:01:54 +00:00
|
|
|
/* do *not* draw edges */
|
|
|
|
ffmpegdec->context->flags |= CODEC_FLAG_EMU_EDGE;
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
/* open codec - we don't select an output pix_fmt yet,
|
|
|
|
* simply because we don't know! We only get it
|
|
|
|
* during playback... */
|
2001-12-23 13:25:04 +00:00
|
|
|
if (avcodec_open (ffmpegdec->context, oclass->in_plugin) < 0) {
|
configure.ac: Fix configure check for mpeg2enc. We need 1.6.1.93 instead of 1.6.1.92, since the pkg-config file of 1....
Original commit message from CVS:
2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
it therefore uses the wrong include paths. Too bad... Note
that 1.6.1.93 is not release yet. ;).
Also add a check for mplex, which is now using the lib'ified
mplex from mjpegtools, too.
* ext/ffmpeg/gstffmpegcodecmap.c:
Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
issues. I don't think ffmpeg handles 3ivx correctly, so this
probably won't work. But it won't hurt either.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
(gst_ffmpegenc_chain_audio):
Fix memleak in audio encoding. Close codec if open fails, this
calls the cleanup routines so we can re-use the context.
* ext/mpeg2enc/gstmpeg2enc.cc:
Fix pad template names/types, fix memory issue with getcaps().
* ext/mpeg2enc/gstmpeg2encoder.cc:
* ext/mpeg2enc/gstmpeg2encoder.hh:
Fix compile issue with new caps system (const thingy).
* ext/mpeg2enc/gstmpeg2encpicturereader.cc:
* ext/mpeg2enc/gstmpeg2encpicturereader.hh:
We read a first frame right on initing, so that we have a caps
when we init the output. This caps is cached in padprivate and
read as first frame.
* ext/mplex/Makefile.am:
* ext/mplex/gstmplex.cc:
* ext/mplex/gstmplex.h:
* ext/mplex/gstmplex.hh:
* ext/mplex/gstmplexibitstream.cc:
* ext/mplex/gstmplexibitstream.hh:
* ext/mplex/gstmplexjob.cc:
* ext/mplex/gstmplexjob.hh:
* ext/mplex/gstmplexoutputstream.cc:
* ext/mplex/gstmplexoutputstream.hh:
We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
had issues, didn't do capsnego, supported only a subset of the
mplex features and required a mplex fork in our local CVS. Plus
that it worked agaist a very old mplex version. Rewriting was
faster than updating it.
* gst-libs/ext/Makefile.am:
* gst-libs/ext/mplex/INSTRUCT:
* gst-libs/ext/mplex/Makefile.am:
* gst-libs/ext/mplex/README:
* gst-libs/ext/mplex/TODO:
* gst-libs/ext/mplex/ac3strm_in.cc:
* gst-libs/ext/mplex/audiostrm.hh:
* gst-libs/ext/mplex/audiostrm_out.cc:
* gst-libs/ext/mplex/aunit.hh:
* gst-libs/ext/mplex/bits.cc:
* gst-libs/ext/mplex/bits.hh:
* gst-libs/ext/mplex/buffer.cc:
* gst-libs/ext/mplex/buffer.hh:
* gst-libs/ext/mplex/fastintfns.h:
* gst-libs/ext/mplex/format_codes.h:
* gst-libs/ext/mplex/inputstrm.cc:
* gst-libs/ext/mplex/inputstrm.hh:
* gst-libs/ext/mplex/lpcmstrm_in.cc:
* gst-libs/ext/mplex/mjpeg_logging.cc:
* gst-libs/ext/mplex/mjpeg_logging.h:
* gst-libs/ext/mplex/mjpeg_types.h:
* gst-libs/ext/mplex/mpastrm_in.cc:
* gst-libs/ext/mplex/mpegconsts.cc:
* gst-libs/ext/mplex/mpegconsts.h:
* gst-libs/ext/mplex/mplexconsts.hh:
* gst-libs/ext/mplex/multplex.cc:
* gst-libs/ext/mplex/outputstream.hh:
* gst-libs/ext/mplex/padstrm.cc:
* gst-libs/ext/mplex/padstrm.hh:
* gst-libs/ext/mplex/stillsstream.cc:
* gst-libs/ext/mplex/stillsstream.hh:
* gst-libs/ext/mplex/systems.cc:
* gst-libs/ext/mplex/systems.hh:
* gst-libs/ext/mplex/vector.cc:
* gst-libs/ext/mplex/vector.hh:
* gst-libs/ext/mplex/videostrm.hh:
* gst-libs/ext/mplex/videostrm_in.cc:
* gst-libs/ext/mplex/videostrm_out.cc:
* gst-libs/ext/mplex/yuv4mpeg.cc:
* gst-libs/ext/mplex/yuv4mpeg.h:
* gst-libs/ext/mplex/yuv4mpeg_intern.h:
* gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
We don't fork mjpegtools' mplex in our CVS anymore.
* gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
(gst_avi_demux_add_stream):
* gst/avi/gstavidemux.h:
Add getcaps() function for proper caps nego. This makes some
parts of AVI playback/reading work.
* sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
Resize window on new capsnego. This is probably wrong, but
I'm still committing it because with current capsnego, the
first successfull capsnego is auto-fixated, therefore rounded
down to the lowest values in the caps. this results in a 16x16
XWindow that is not reized when real capsnego finishes.
Dave, I see more cases of this, do you know a proper solution?
* tools/gst-launch-ext.in:
Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
2004-01-01 22:45:56 +00:00
|
|
|
avcodec_close (ffmpegdec->context);
|
|
|
|
GST_DEBUG ("ffdec_%s: Failed to open FFMPEG codec",
|
2004-03-29 16:39:18 +00:00
|
|
|
oclass->in_plugin->name);
|
2003-01-10 10:22:01 +00:00
|
|
|
return GST_PAD_LINK_REFUSED;
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
/* done! */
|
|
|
|
ffmpegdec->opened = TRUE;
|
|
|
|
|
2003-01-10 10:22:01 +00:00
|
|
|
return GST_PAD_LINK_OK;
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
|
|
|
|
2003-10-26 11:30:18 +00:00
|
|
|
#if 0
|
2003-06-07 00:41:32 +00:00
|
|
|
static int
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_get_buffer (AVCodecContext * context, AVFrame * picture)
|
2003-06-07 00:41:32 +00:00
|
|
|
{
|
|
|
|
GstBuffer *buf = NULL;
|
|
|
|
gulong bufsize = 0;
|
|
|
|
|
|
|
|
switch (context->codec_type) {
|
|
|
|
case CODEC_TYPE_VIDEO:
|
2003-06-07 11:43:11 +00:00
|
|
|
bufsize = avpicture_get_size (context->pix_fmt,
|
2004-03-29 16:39:18 +00:00
|
|
|
context->width, context->height);
|
2003-06-07 20:45:13 +00:00
|
|
|
buf = gst_buffer_new_and_alloc (bufsize);
|
|
|
|
avpicture_fill ((AVPicture *) picture, GST_BUFFER_DATA (buf),
|
2004-03-29 16:39:18 +00:00
|
|
|
context->pix_fmt, context->width, context->height);
|
2003-06-07 00:41:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CODEC_TYPE_AUDIO:
|
|
|
|
default:
|
|
|
|
g_assert (0);
|
|
|
|
break;
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
/* tell ffmpeg we own this buffer
|
|
|
|
*
|
|
|
|
* we also use an evil hack (keep buffer in base[0])
|
|
|
|
* to keep a reference to the buffer in release_buffer(),
|
|
|
|
* so that we can ref() it here and unref() it there
|
|
|
|
* so that we don't need to copy data */
|
|
|
|
picture->type = FF_BUFFER_TYPE_USER;
|
|
|
|
picture->age = G_MAXINT;
|
|
|
|
picture->base[0] = (int8_t *) buf;
|
|
|
|
gst_buffer_ref (buf);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
static void
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_release_buffer (AVCodecContext * context, AVFrame * picture)
|
2003-06-07 00:41:32 +00:00
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
GstBuffer *buf = GST_BUFFER (picture->base[0]);
|
2004-03-29 16:39:18 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
gst_buffer_unref (buf);
|
|
|
|
|
|
|
|
/* zero out the reference in ffmpeg */
|
2004-03-29 16:39:18 +00:00
|
|
|
for (i = 0; i < 4; i++) {
|
2003-06-07 00:41:32 +00:00
|
|
|
picture->data[i] = NULL;
|
|
|
|
picture->linesize[i] = 0;
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
2003-10-26 11:30:18 +00:00
|
|
|
#endif
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
static void
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_chain (GstPad * pad, GstData * _data)
|
2001-12-23 13:25:04 +00:00
|
|
|
{
|
2003-10-08 16:07:38 +00:00
|
|
|
GstBuffer *inbuf = GST_BUFFER (_data);
|
2003-06-07 20:45:13 +00:00
|
|
|
GstBuffer *outbuf = NULL;
|
2004-03-29 16:39:18 +00:00
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) (gst_pad_get_parent (pad));
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
2001-12-23 13:25:04 +00:00
|
|
|
guchar *data;
|
2003-06-07 00:41:32 +00:00
|
|
|
gint size, len = 0;
|
|
|
|
gint have_data;
|
|
|
|
|
2003-06-17 11:44:38 +00:00
|
|
|
if (!ffmpegdec->opened) {
|
2004-02-02 17:23:27 +00:00
|
|
|
GST_ELEMENT_ERROR (ffmpegdec, CORE, NEGOTIATION, (NULL),
|
2004-03-29 16:39:18 +00:00
|
|
|
("ffdec_%s: input format was not set before data start",
|
|
|
|
oclass->in_plugin->name));
|
2003-06-17 11:44:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
/* FIXME: implement event awareness (especially EOS
|
|
|
|
* (av_close_codec ()) and FLUSH/DISCONT
|
|
|
|
* (avcodec_flush_buffers ()))
|
|
|
|
*/
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
data = GST_BUFFER_DATA (inbuf);
|
|
|
|
size = GST_BUFFER_SIZE (inbuf);
|
|
|
|
|
|
|
|
do {
|
|
|
|
ffmpegdec->context->frame_number++;
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
switch (oclass->in_plugin->type) {
|
|
|
|
case CODEC_TYPE_VIDEO:
|
2004-03-29 16:39:18 +00:00
|
|
|
/* workarounds, functions write to buffers:
|
|
|
|
* libavcodec/svq1.c:svq1_decode_frame writes to the given buffer.
|
configure.ac: Fix configure check for mpeg2enc. We need 1.6.1.93 instead of 1.6.1.92, since the pkg-config file of 1....
Original commit message from CVS:
2004-01-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
* configure.ac:
Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
it therefore uses the wrong include paths. Too bad... Note
that 1.6.1.93 is not release yet. ;).
Also add a check for mplex, which is now using the lib'ified
mplex from mjpegtools, too.
* ext/ffmpeg/gstffmpegcodecmap.c:
Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
issues. I don't think ffmpeg handles 3ivx correctly, so this
probably won't work. But it won't hurt either.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
(gst_ffmpegenc_chain_audio):
Fix memleak in audio encoding. Close codec if open fails, this
calls the cleanup routines so we can re-use the context.
* ext/mpeg2enc/gstmpeg2enc.cc:
Fix pad template names/types, fix memory issue with getcaps().
* ext/mpeg2enc/gstmpeg2encoder.cc:
* ext/mpeg2enc/gstmpeg2encoder.hh:
Fix compile issue with new caps system (const thingy).
* ext/mpeg2enc/gstmpeg2encpicturereader.cc:
* ext/mpeg2enc/gstmpeg2encpicturereader.hh:
We read a first frame right on initing, so that we have a caps
when we init the output. This caps is cached in padprivate and
read as first frame.
* ext/mplex/Makefile.am:
* ext/mplex/gstmplex.cc:
* ext/mplex/gstmplex.h:
* ext/mplex/gstmplex.hh:
* ext/mplex/gstmplexibitstream.cc:
* ext/mplex/gstmplexibitstream.hh:
* ext/mplex/gstmplexjob.cc:
* ext/mplex/gstmplexjob.hh:
* ext/mplex/gstmplexoutputstream.cc:
* ext/mplex/gstmplexoutputstream.hh:
We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
had issues, didn't do capsnego, supported only a subset of the
mplex features and required a mplex fork in our local CVS. Plus
that it worked agaist a very old mplex version. Rewriting was
faster than updating it.
* gst-libs/ext/Makefile.am:
* gst-libs/ext/mplex/INSTRUCT:
* gst-libs/ext/mplex/Makefile.am:
* gst-libs/ext/mplex/README:
* gst-libs/ext/mplex/TODO:
* gst-libs/ext/mplex/ac3strm_in.cc:
* gst-libs/ext/mplex/audiostrm.hh:
* gst-libs/ext/mplex/audiostrm_out.cc:
* gst-libs/ext/mplex/aunit.hh:
* gst-libs/ext/mplex/bits.cc:
* gst-libs/ext/mplex/bits.hh:
* gst-libs/ext/mplex/buffer.cc:
* gst-libs/ext/mplex/buffer.hh:
* gst-libs/ext/mplex/fastintfns.h:
* gst-libs/ext/mplex/format_codes.h:
* gst-libs/ext/mplex/inputstrm.cc:
* gst-libs/ext/mplex/inputstrm.hh:
* gst-libs/ext/mplex/lpcmstrm_in.cc:
* gst-libs/ext/mplex/mjpeg_logging.cc:
* gst-libs/ext/mplex/mjpeg_logging.h:
* gst-libs/ext/mplex/mjpeg_types.h:
* gst-libs/ext/mplex/mpastrm_in.cc:
* gst-libs/ext/mplex/mpegconsts.cc:
* gst-libs/ext/mplex/mpegconsts.h:
* gst-libs/ext/mplex/mplexconsts.hh:
* gst-libs/ext/mplex/multplex.cc:
* gst-libs/ext/mplex/outputstream.hh:
* gst-libs/ext/mplex/padstrm.cc:
* gst-libs/ext/mplex/padstrm.hh:
* gst-libs/ext/mplex/stillsstream.cc:
* gst-libs/ext/mplex/stillsstream.hh:
* gst-libs/ext/mplex/systems.cc:
* gst-libs/ext/mplex/systems.hh:
* gst-libs/ext/mplex/vector.cc:
* gst-libs/ext/mplex/vector.hh:
* gst-libs/ext/mplex/videostrm.hh:
* gst-libs/ext/mplex/videostrm_in.cc:
* gst-libs/ext/mplex/videostrm_out.cc:
* gst-libs/ext/mplex/yuv4mpeg.cc:
* gst-libs/ext/mplex/yuv4mpeg.h:
* gst-libs/ext/mplex/yuv4mpeg_intern.h:
* gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
We don't fork mjpegtools' mplex in our CVS anymore.
* gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
(gst_avi_demux_add_stream):
* gst/avi/gstavidemux.h:
Add getcaps() function for proper caps nego. This makes some
parts of AVI playback/reading work.
* sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
Resize window on new capsnego. This is probably wrong, but
I'm still committing it because with current capsnego, the
first successfull capsnego is auto-fixated, therefore rounded
down to the lowest values in the caps. this results in a 16x16
XWindow that is not reized when real capsnego finishes.
Dave, I see more cases of this, do you know a proper solution?
* tools/gst-launch-ext.in:
Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
2004-01-01 22:45:56 +00:00
|
|
|
* libavcodec/svq3.c:svq3_decode_slice_header too.
|
|
|
|
* ffmpeg devs know about it and will fix it (they said). */
|
2004-03-29 16:39:18 +00:00
|
|
|
if (oclass->in_plugin->id == CODEC_ID_SVQ1 ||
|
2003-12-12 15:40:59 +00:00
|
|
|
oclass->in_plugin->id == CODEC_ID_SVQ3) {
|
2004-03-29 16:39:18 +00:00
|
|
|
inbuf = gst_buffer_copy_on_write (inbuf);
|
|
|
|
data = GST_BUFFER_DATA (inbuf);
|
|
|
|
size = GST_BUFFER_SIZE (inbuf);
|
|
|
|
}
|
2003-06-07 00:41:32 +00:00
|
|
|
len = avcodec_decode_video (ffmpegdec->context,
|
2004-03-29 16:39:18 +00:00
|
|
|
ffmpegdec->picture, &have_data, data, size);
|
2003-06-07 20:45:13 +00:00
|
|
|
if (have_data) {
|
2003-10-26 11:30:18 +00:00
|
|
|
/* libavcodec constantly crashes on stupid buffer allocation
|
|
|
|
* errors inside. This drives me crazy, so we let it allocate
|
|
|
|
* it's own buffers and copy to our own buffer afterwards... */
|
|
|
|
AVPicture pic;
|
|
|
|
gint size = avpicture_get_size (ffmpegdec->context->pix_fmt,
|
2004-03-29 16:39:18 +00:00
|
|
|
ffmpegdec->context->width,
|
|
|
|
ffmpegdec->context->height);
|
|
|
|
|
2003-10-26 11:30:18 +00:00
|
|
|
outbuf = gst_buffer_new_and_alloc (size);
|
|
|
|
avpicture_fill (&pic, GST_BUFFER_DATA (outbuf),
|
2004-03-29 16:39:18 +00:00
|
|
|
ffmpegdec->context->pix_fmt,
|
|
|
|
ffmpegdec->context->width, ffmpegdec->context->height);
|
2003-10-26 11:30:18 +00:00
|
|
|
img_convert (&pic, ffmpegdec->context->pix_fmt,
|
2004-03-29 16:39:18 +00:00
|
|
|
(AVPicture *) ffmpegdec->picture,
|
|
|
|
ffmpegdec->context->pix_fmt,
|
|
|
|
ffmpegdec->context->width, ffmpegdec->context->height);
|
2003-10-26 11:30:18 +00:00
|
|
|
|
2003-06-07 20:45:13 +00:00
|
|
|
/* this isn't necessarily true, but it's better than nothing */
|
|
|
|
GST_BUFFER_DURATION (outbuf) = GST_BUFFER_DURATION (inbuf);
|
|
|
|
}
|
2003-06-07 00:41:32 +00:00
|
|
|
break;
|
2003-06-07 20:45:13 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
case CODEC_TYPE_AUDIO:
|
2003-06-07 20:45:13 +00:00
|
|
|
outbuf = gst_buffer_new_and_alloc (AVCODEC_MAX_AUDIO_FRAME_SIZE);
|
2003-06-07 00:41:32 +00:00
|
|
|
len = avcodec_decode_audio (ffmpegdec->context,
|
2004-03-29 16:39:18 +00:00
|
|
|
(int16_t *) GST_BUFFER_DATA (outbuf), &have_data, data, size);
|
2004-03-15 00:01:03 +00:00
|
|
|
|
2003-06-07 20:45:13 +00:00
|
|
|
if (have_data) {
|
|
|
|
GST_BUFFER_SIZE (outbuf) = have_data;
|
|
|
|
GST_BUFFER_DURATION (outbuf) = (have_data * GST_SECOND) /
|
2004-03-29 16:39:18 +00:00
|
|
|
(ffmpegdec->context->channels * ffmpegdec->context->sample_rate);
|
2003-06-07 20:45:13 +00:00
|
|
|
} else {
|
|
|
|
gst_buffer_unref (outbuf);
|
2004-03-29 16:39:18 +00:00
|
|
|
}
|
2003-06-07 00:41:32 +00:00
|
|
|
break;
|
|
|
|
default:
|
2004-03-29 16:39:18 +00:00
|
|
|
g_assert (0);
|
2003-06-07 00:41:32 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
if (len < 0) {
|
2004-03-24 21:36:50 +00:00
|
|
|
GST_ERROR_OBJECT (ffmpegdec, "ffdec_%s: decoding error",
|
2004-03-29 16:39:18 +00:00
|
|
|
oclass->in_plugin->name);
|
2001-12-23 13:25:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
if (have_data) {
|
2001-12-23 13:25:04 +00:00
|
|
|
if (!GST_PAD_CAPS (ffmpegdec->srcpad)) {
|
2003-06-07 00:41:32 +00:00
|
|
|
GstCaps *caps;
|
2004-03-29 16:39:18 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
caps = gst_ffmpeg_codectype_to_caps (oclass->in_plugin->type,
|
2004-03-29 16:39:18 +00:00
|
|
|
ffmpegdec->context);
|
2003-06-07 00:41:32 +00:00
|
|
|
if (caps == NULL ||
|
2004-01-02 07:09:20 +00:00
|
|
|
!gst_pad_set_explicit_caps (ffmpegdec->srcpad, caps)) {
|
2004-02-02 17:23:27 +00:00
|
|
|
GST_ELEMENT_ERROR (ffmpegdec, CORE, NEGOTIATION, (NULL),
|
2004-03-29 16:39:18 +00:00
|
|
|
("Failed to link ffmpeg decoder (%s) to next element",
|
|
|
|
oclass->in_plugin->name));
|
2003-06-07 00:41:32 +00:00
|
|
|
return;
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (inbuf);
|
2003-06-07 20:45:13 +00:00
|
|
|
|
2003-10-08 16:07:38 +00:00
|
|
|
gst_pad_push (ffmpegdec->srcpad, GST_DATA (outbuf));
|
2004-03-29 16:39:18 +00:00
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
size -= len;
|
|
|
|
data += len;
|
2003-06-07 00:41:32 +00:00
|
|
|
} while (size > 0);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
gst_buffer_unref (inbuf);
|
|
|
|
}
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
static GstElementStateReturn
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_change_state (GstElement * element)
|
2001-12-23 13:25:04 +00:00
|
|
|
{
|
2003-06-07 00:41:32 +00:00
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) element;
|
|
|
|
gint transition = GST_STATE_TRANSITION (element);
|
|
|
|
|
|
|
|
switch (transition) {
|
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
|
|
|
if (ffmpegdec->opened) {
|
|
|
|
avcodec_close (ffmpegdec->context);
|
|
|
|
ffmpegdec->opened = FALSE;
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
return GST_STATE_SUCCESS;
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2004-03-29 16:39:18 +00:00
|
|
|
gst_ffmpegdec_register (GstPlugin * plugin)
|
2001-12-23 13:25:04 +00:00
|
|
|
{
|
|
|
|
GTypeInfo typeinfo = {
|
2004-03-29 16:39:18 +00:00
|
|
|
sizeof (GstFFMpegDecClass),
|
|
|
|
(GBaseInitFunc) gst_ffmpegdec_base_init,
|
2001-12-23 13:25:04 +00:00
|
|
|
NULL,
|
2004-03-29 16:39:18 +00:00
|
|
|
(GClassInitFunc) gst_ffmpegdec_class_init,
|
2001-12-23 13:25:04 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-29 16:39:18 +00:00
|
|
|
sizeof (GstFFMpegDec),
|
2001-12-23 13:25:04 +00:00
|
|
|
0,
|
2004-03-29 16:39:18 +00:00
|
|
|
(GInstanceInitFunc) gst_ffmpegdec_init,
|
2001-12-23 13:25:04 +00:00
|
|
|
};
|
|
|
|
GType type;
|
|
|
|
AVCodec *in_plugin;
|
2004-03-29 16:39:18 +00:00
|
|
|
|
2001-12-23 13:25:04 +00:00
|
|
|
in_plugin = first_avcodec;
|
|
|
|
|
|
|
|
global_plugins = g_hash_table_new (NULL, NULL);
|
|
|
|
|
|
|
|
while (in_plugin) {
|
2003-06-07 11:01:54 +00:00
|
|
|
GstFFMpegDecClassParams *params;
|
2003-11-02 13:12:14 +00:00
|
|
|
GstCaps *srccaps, *sinkcaps;
|
|
|
|
gchar *type_name;
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2003-06-17 11:44:38 +00:00
|
|
|
/* no quasi-codecs, please */
|
|
|
|
if (in_plugin->id == CODEC_ID_RAWVIDEO ||
|
2004-03-29 16:39:18 +00:00
|
|
|
(in_plugin->id >= CODEC_ID_PCM_S16LE &&
|
|
|
|
in_plugin->id <= CODEC_ID_PCM_ALAW)) {
|
2003-06-17 11:44:38 +00:00
|
|
|
goto next;
|
2001-12-23 13:25:04 +00:00
|
|
|
}
|
2003-06-17 11:44:38 +00:00
|
|
|
|
|
|
|
/* only decoders */
|
|
|
|
if (!in_plugin->decode) {
|
2001-12-23 13:25:04 +00:00
|
|
|
goto next;
|
|
|
|
}
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
/* first make sure we've got a supported type */
|
2004-03-15 00:01:03 +00:00
|
|
|
sinkcaps = gst_ffmpeg_codecid_to_caps (in_plugin->id, NULL, FALSE);
|
2004-03-29 16:39:18 +00:00
|
|
|
srccaps = gst_ffmpeg_codectype_to_caps (in_plugin->type, NULL);
|
2004-04-06 18:25:55 +00:00
|
|
|
if (!sinkcaps || !srccaps) {
|
|
|
|
if (sinkcaps) gst_caps_free (sinkcaps);
|
|
|
|
if (srccaps) gst_caps_free (srccaps);
|
2003-06-07 00:41:32 +00:00
|
|
|
goto next;
|
2004-04-06 18:25:55 +00:00
|
|
|
}
|
2003-06-07 00:41:32 +00:00
|
|
|
|
2002-03-19 04:09:41 +00:00
|
|
|
/* construct the type */
|
2004-03-29 16:39:18 +00:00
|
|
|
type_name = g_strdup_printf ("ffdec_%s", in_plugin->name);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2002-03-19 04:09:41 +00:00
|
|
|
/* if it's already registered, drop it */
|
2004-03-29 16:39:18 +00:00
|
|
|
if (g_type_from_name (type_name)) {
|
|
|
|
g_free (type_name);
|
2001-12-23 13:25:04 +00:00
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
|
2003-11-02 19:07:41 +00:00
|
|
|
params = g_new0 (GstFFMpegDecClassParams, 1);
|
|
|
|
params->in_plugin = in_plugin;
|
|
|
|
params->srccaps = srccaps;
|
|
|
|
params->sinkcaps = sinkcaps;
|
2004-03-29 16:39:18 +00:00
|
|
|
g_hash_table_insert (global_plugins,
|
|
|
|
GINT_TO_POINTER (0), (gpointer) params);
|
|
|
|
|
2004-03-09 07:56:40 +00:00
|
|
|
/* create the gtype now
|
|
|
|
* (Ronald) MPEG-4 gets a higher priority because it has been well-
|
|
|
|
* tested and by far outperforms divxdec/xviddec - so we prefer it. */
|
2004-03-29 16:39:18 +00:00
|
|
|
type = g_type_register_static (GST_TYPE_ELEMENT, type_name, &typeinfo, 0);
|
2004-03-09 07:56:40 +00:00
|
|
|
if (!gst_element_register (plugin, type_name,
|
2004-03-29 16:39:18 +00:00
|
|
|
(in_plugin->id == CODEC_ID_MPEG4) ?
|
|
|
|
GST_RANK_PRIMARY : GST_RANK_MARGINAL, type)) {
|
2004-02-02 20:27:13 +00:00
|
|
|
g_free (type_name);
|
2003-11-02 13:12:14 +00:00
|
|
|
return FALSE;
|
2004-02-02 20:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free (type_name);
|
2003-06-07 00:41:32 +00:00
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
g_hash_table_insert (global_plugins,
|
|
|
|
GINT_TO_POINTER (type), (gpointer) params);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
2004-03-29 16:39:18 +00:00
|
|
|
next:
|
2001-12-23 13:25:04 +00:00
|
|
|
in_plugin = in_plugin->next;
|
|
|
|
}
|
2003-11-02 19:07:41 +00:00
|
|
|
g_hash_table_remove (global_plugins, GINT_TO_POINTER (0));
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|