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>
|
|
|
|
|
|
2004-12-18 20:53:55 +00:00
|
|
|
|
#include "gstffmpeg.h"
|
2003-06-07 00:41:32 +00:00
|
|
|
|
#include "gstffmpegcodecmap.h"
|
2002-11-25 21:37:26 +00:00
|
|
|
|
|
2005-05-06 07:47:50 +00:00
|
|
|
|
//#define FORCE_OUR_GET_BUFFER
|
|
|
|
|
|
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;
|
|
|
|
|
|
2004-12-17 13:08:13 +00:00
|
|
|
|
/* decoding */
|
2002-11-06 23:53:46 +00:00
|
|
|
|
AVCodecContext *context;
|
2002-12-12 13:12:44 +00:00
|
|
|
|
AVFrame *picture;
|
2003-06-07 00:41:32 +00:00
|
|
|
|
gboolean opened;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
union
|
|
|
|
|
{
|
|
|
|
|
struct
|
|
|
|
|
{
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
gint width, height;
|
2005-11-22 23:12:51 +00:00
|
|
|
|
gint fps_n, fps_d;
|
|
|
|
|
gint old_fps_n, old_fps_d;
|
|
|
|
|
|
2005-07-11 13:51:45 +00:00
|
|
|
|
enum PixelFormat pix_fmt;
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
} video;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
struct
|
|
|
|
|
{
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
gint channels, samplerate;
|
|
|
|
|
} audio;
|
2005-01-19 11:46:49 +00:00
|
|
|
|
} format;
|
2005-04-01 10:09:15 +00:00
|
|
|
|
gboolean waiting_for_key;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
guint64 next_ts, synctime;
|
2004-07-21 09:20:55 +00:00
|
|
|
|
|
2004-12-17 13:08:13 +00:00
|
|
|
|
/* parsing */
|
|
|
|
|
AVCodecParserContext *pctx;
|
|
|
|
|
GstBuffer *pcache;
|
|
|
|
|
|
2005-05-06 07:47:50 +00:00
|
|
|
|
GstBuffer *last_buffer;
|
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GValue *par; /* pixel aspect ratio of incoming data */
|
2005-01-31 10:45:20 +00:00
|
|
|
|
|
|
|
|
|
gint hurry_up, lowres;
|
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
|
|
|
|
ARG_0,
|
2005-01-31 10:45:20 +00:00
|
|
|
|
ARG_LOWRES,
|
|
|
|
|
ARG_SKIPFRAME
|
2001-12-23 13:25:04 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
static gboolean gst_ffmpegdec_query (GstPad * pad, GstQuery * query);
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
static gboolean gst_ffmpegdec_event (GstPad * pad, GstEvent * event);
|
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
static gboolean gst_ffmpegdec_setcaps (GstPad * pad, GstCaps * caps);
|
|
|
|
|
static gboolean gst_ffmpegdec_sink_event (GstPad * pad, GstEvent * event);
|
|
|
|
|
static GstFlowReturn gst_ffmpegdec_chain (GstPad * pad, GstBuffer * buf);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
2005-09-05 14:06:29 +00:00
|
|
|
|
static GstStateChangeReturn gst_ffmpegdec_change_state (GstElement * element,
|
|
|
|
|
GstStateChange transition);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
2005-01-31 10:45:20 +00:00
|
|
|
|
static void gst_ffmpegdec_set_property (GObject * object,
|
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec);
|
|
|
|
|
static void gst_ffmpegdec_get_property (GObject * object,
|
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec);
|
|
|
|
|
|
2005-05-06 07:47:50 +00:00
|
|
|
|
static gboolean gst_ffmpegdec_negotiate (GstFFMpegDec * ffmpegdec);
|
|
|
|
|
|
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);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
|
2005-01-31 10:45:20 +00:00
|
|
|
|
#define GST_FFMPEGDEC_TYPE_LOWRES (gst_ffmpegdec_lowres_get_type())
|
|
|
|
|
static GType
|
|
|
|
|
gst_ffmpegdec_lowres_get_type (void)
|
|
|
|
|
{
|
|
|
|
|
static GType ffmpegdec_lowres_type = 0;
|
|
|
|
|
|
|
|
|
|
if (!ffmpegdec_lowres_type) {
|
|
|
|
|
static GEnumValue ffmpegdec_lowres[] = {
|
|
|
|
|
{0, "0", "full"},
|
|
|
|
|
{1, "1", "1/2-size"},
|
|
|
|
|
{2, "2", "1/4-size"},
|
|
|
|
|
{0, NULL, NULL},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ffmpegdec_lowres_type =
|
|
|
|
|
g_enum_register_static ("GstFFMpegDecLowres", ffmpegdec_lowres);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ffmpegdec_lowres_type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define GST_FFMPEGDEC_TYPE_SKIPFRAME (gst_ffmpegdec_skipframe_get_type())
|
|
|
|
|
static GType
|
|
|
|
|
gst_ffmpegdec_skipframe_get_type (void)
|
|
|
|
|
{
|
|
|
|
|
static GType ffmpegdec_skipframe_type = 0;
|
|
|
|
|
|
|
|
|
|
if (!ffmpegdec_skipframe_type) {
|
|
|
|
|
static GEnumValue ffmpegdec_skipframe[] = {
|
|
|
|
|
{0, "0", "Skip nothing"},
|
|
|
|
|
{1, "1", "Skip B-frames"},
|
|
|
|
|
{2, "2", "Skip IDCT/Dequantization"},
|
|
|
|
|
{5, "5", "Skip everything"},
|
|
|
|
|
{0, NULL, NULL},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
ffmpegdec_skipframe_type =
|
|
|
|
|
g_enum_register_static ("GstFFMpegDecSkipFrame", ffmpegdec_skipframe);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ffmpegdec_skipframe_type;
|
|
|
|
|
}
|
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",
|
2004-10-24 22:24:43 +00:00
|
|
|
|
gst_ffmpeg_get_codecid_longname (params->in_plugin->id));
|
2004-07-08 14:01:28 +00:00
|
|
|
|
details.klass = g_strdup_printf ("Codec/Decoder/%s",
|
2004-03-29 16:39:18 +00:00
|
|
|
|
(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
|
|
|
|
{
|
2005-01-31 10:45:20 +00:00
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
GstElementClass *gstelement_class = GST_ELEMENT_CLASS (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
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gobject_class->dispose = gst_ffmpegdec_dispose;
|
|
|
|
|
gobject_class->set_property = gst_ffmpegdec_set_property;
|
|
|
|
|
gobject_class->get_property = gst_ffmpegdec_get_property;
|
|
|
|
|
gstelement_class->change_state = gst_ffmpegdec_change_state;
|
|
|
|
|
|
2005-01-31 10:45:20 +00:00
|
|
|
|
g_object_class_install_property (gobject_class, ARG_SKIPFRAME,
|
|
|
|
|
g_param_spec_enum ("skip-frame", "Skip frames",
|
|
|
|
|
"Which types of frames to skip during decoding",
|
|
|
|
|
GST_FFMPEGDEC_TYPE_SKIPFRAME, 0, G_PARAM_READWRITE));
|
|
|
|
|
g_object_class_install_property (gobject_class, ARG_LOWRES,
|
|
|
|
|
g_param_spec_enum ("lowres", "Low resolution",
|
|
|
|
|
"At which resolution to decode images",
|
|
|
|
|
GST_FFMPEGDEC_TYPE_LOWRES, 0, G_PARAM_READWRITE));
|
2003-06-07 00:41:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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");
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gst_pad_set_setcaps_function (ffmpegdec->sinkpad, gst_ffmpegdec_setcaps);
|
|
|
|
|
gst_pad_set_event_function (ffmpegdec->sinkpad, gst_ffmpegdec_sink_event);
|
2003-06-07 00:41:32 +00:00
|
|
|
|
gst_pad_set_chain_function (ffmpegdec->sinkpad, gst_ffmpegdec_chain);
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
gst_element_add_pad (GST_ELEMENT (ffmpegdec), ffmpegdec->sinkpad);
|
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
|
ffmpegdec->srcpad = gst_pad_new_from_template (oclass->srctempl, "src");
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gst_pad_use_fixed_caps (ffmpegdec->srcpad);
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
gst_pad_set_event_function (ffmpegdec->srcpad,
|
|
|
|
|
GST_DEBUG_FUNCPTR (gst_ffmpegdec_event));
|
|
|
|
|
gst_pad_set_query_function (ffmpegdec->srcpad,
|
|
|
|
|
GST_DEBUG_FUNCPTR (gst_ffmpegdec_query));
|
2003-06-07 00:41:32 +00:00
|
|
|
|
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 ();
|
2004-12-17 13:08:13 +00:00
|
|
|
|
ffmpegdec->pctx = NULL;
|
|
|
|
|
ffmpegdec->pcache = NULL;
|
2004-12-16 12:47:43 +00:00
|
|
|
|
ffmpegdec->par = NULL;
|
2003-06-07 00:41:32 +00:00
|
|
|
|
ffmpegdec->opened = FALSE;
|
2005-04-01 10:09:15 +00:00
|
|
|
|
ffmpegdec->waiting_for_key = FALSE;
|
2005-01-31 10:45:20 +00:00
|
|
|
|
ffmpegdec->hurry_up = ffmpegdec->lowres = 0;
|
2005-01-19 11:46:49 +00:00
|
|
|
|
|
2005-05-06 07:47:50 +00:00
|
|
|
|
ffmpegdec->last_buffer = NULL;
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
|
2005-11-22 23:12:51 +00:00
|
|
|
|
ffmpegdec->format.video.fps_n = -1;
|
|
|
|
|
ffmpegdec->format.video.old_fps_n = -1;
|
2003-06-07 00:41:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
static gboolean
|
2005-11-14 16:00:38 +00:00
|
|
|
|
gst_ffmpegdec_query (GstPad * pad, GstQuery * query)
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
{
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec;
|
|
|
|
|
GstPad *peer;
|
|
|
|
|
GstFormat bfmt;
|
|
|
|
|
|
|
|
|
|
bfmt = GST_FORMAT_BYTES;
|
|
|
|
|
ffmpegdec = (GstFFMpegDec *) GST_PAD_PARENT (pad);
|
|
|
|
|
peer = GST_PAD_PEER (ffmpegdec->sinkpad);
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
|
|
|
|
|
if (!peer)
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
goto no_peer;
|
2005-01-25 15:17:44 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
/* just forward to peer */
|
|
|
|
|
if (gst_pad_query (peer, query))
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
return TRUE;
|
2005-01-25 15:17:44 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
#if 0
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
/* ok, do bitrate calc... */
|
2005-01-25 15:17:44 +00:00
|
|
|
|
if ((type != GST_QUERY_POSITION && type != GST_QUERY_TOTAL) ||
|
2005-11-14 16:00:38 +00:00
|
|
|
|
*fmt != GST_FORMAT_TIME || ffmpegdec->context->bit_rate == 0 ||
|
|
|
|
|
!gst_pad_query (peer, type, &bfmt, value))
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (ffmpegdec->pcache && type == GST_QUERY_POSITION)
|
|
|
|
|
*value -= GST_BUFFER_SIZE (ffmpegdec->pcache);
|
|
|
|
|
*value *= GST_SECOND / ffmpegdec->context->bit_rate;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
#endif
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
no_peer:
|
|
|
|
|
{
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
|
gst_ffmpegdec_event (GstPad * pad, GstEvent * event)
|
|
|
|
|
{
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec;
|
|
|
|
|
GstPad *peer;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
ffmpegdec = (GstFFMpegDec *) GST_PAD_PARENT (pad);
|
|
|
|
|
peer = GST_PAD_PEER (ffmpegdec->sinkpad);
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
|
|
|
|
|
if (!peer)
|
|
|
|
|
return FALSE;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-01-25 15:17:44 +00:00
|
|
|
|
gst_event_ref (event);
|
|
|
|
|
if (gst_pad_send_event (peer, event)) {
|
|
|
|
|
gst_event_unref (event);
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
return TRUE;
|
2005-01-25 15:17:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gst_event_unref (event);
|
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
return FALSE; /* .. */
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
static void
|
2005-11-14 16:00:38 +00:00
|
|
|
|
gst_ffmpegdec_close (GstFFMpegDec * ffmpegdec)
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
{
|
2005-11-28 11:25:56 +00:00
|
|
|
|
GST_OBJECT_LOCK (ffmpegdec);
|
|
|
|
|
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
if (!ffmpegdec->opened)
|
2005-11-28 11:25:56 +00:00
|
|
|
|
goto done;
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
|
2004-12-16 12:47:43 +00:00
|
|
|
|
if (ffmpegdec->par) {
|
|
|
|
|
g_free (ffmpegdec->par);
|
|
|
|
|
ffmpegdec->par = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-20 12:29:03 +00:00
|
|
|
|
if (ffmpegdec->context->priv_data)
|
|
|
|
|
avcodec_close (ffmpegdec->context);
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
ffmpegdec->opened = FALSE;
|
|
|
|
|
|
|
|
|
|
if (ffmpegdec->context->palctrl) {
|
|
|
|
|
av_free (ffmpegdec->context->palctrl);
|
|
|
|
|
ffmpegdec->context->palctrl = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ffmpegdec->context->extradata) {
|
|
|
|
|
av_free (ffmpegdec->context->extradata);
|
|
|
|
|
ffmpegdec->context->extradata = NULL;
|
|
|
|
|
}
|
2004-12-17 13:08:13 +00:00
|
|
|
|
|
|
|
|
|
if (ffmpegdec->pctx) {
|
|
|
|
|
if (ffmpegdec->pcache) {
|
|
|
|
|
gst_buffer_unref (ffmpegdec->pcache);
|
|
|
|
|
ffmpegdec->pcache = NULL;
|
|
|
|
|
}
|
|
|
|
|
av_parser_close (ffmpegdec->pctx);
|
|
|
|
|
ffmpegdec->pctx = NULL;
|
|
|
|
|
}
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
|
2005-11-22 23:12:51 +00:00
|
|
|
|
ffmpegdec->format.video.fps_n = -1;
|
|
|
|
|
ffmpegdec->format.video.old_fps_n = -1;
|
2005-11-28 11:25:56 +00:00
|
|
|
|
|
|
|
|
|
done:
|
|
|
|
|
GST_OBJECT_UNLOCK (ffmpegdec);
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
2005-11-14 16:00:38 +00:00
|
|
|
|
gst_ffmpegdec_open (GstFFMpegDec * ffmpegdec)
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
{
|
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
if (avcodec_open (ffmpegdec->context, oclass->in_plugin) < 0)
|
|
|
|
|
goto could_not_open;
|
|
|
|
|
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
ffmpegdec->opened = TRUE;
|
|
|
|
|
|
2005-01-19 15:34:14 +00:00
|
|
|
|
GST_LOG ("Opened ffmpeg codec %s", oclass->in_plugin->name);
|
|
|
|
|
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
/* open a parser if we can - exclude mpeg4, because it is already
|
|
|
|
|
* framed (divx), mp3 because it doesn't work (?) and mjpeg because
|
|
|
|
|
* of $(see mpeg4)... */
|
|
|
|
|
if (oclass->in_plugin->id != CODEC_ID_MPEG4 &&
|
|
|
|
|
oclass->in_plugin->id != CODEC_ID_MJPEG &&
|
2005-06-03 13:44:04 +00:00
|
|
|
|
oclass->in_plugin->id != CODEC_ID_MP3 &&
|
|
|
|
|
oclass->in_plugin->id != CODEC_ID_H264) {
|
2004-12-17 13:08:13 +00:00
|
|
|
|
ffmpegdec->pctx = av_parser_init (oclass->in_plugin->id);
|
2005-01-19 15:34:14 +00:00
|
|
|
|
}
|
2004-12-17 13:08:13 +00:00
|
|
|
|
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
switch (oclass->in_plugin->type) {
|
|
|
|
|
case CODEC_TYPE_VIDEO:
|
|
|
|
|
ffmpegdec->format.video.width = 0;
|
|
|
|
|
ffmpegdec->format.video.height = 0;
|
2005-07-11 13:51:45 +00:00
|
|
|
|
ffmpegdec->format.video.pix_fmt = PIX_FMT_NB;
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
break;
|
|
|
|
|
case CODEC_TYPE_AUDIO:
|
|
|
|
|
ffmpegdec->format.audio.samplerate = 0;
|
|
|
|
|
ffmpegdec->format.audio.channels = 0;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2005-01-19 11:46:49 +00:00
|
|
|
|
ffmpegdec->next_ts = 0;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
ffmpegdec->synctime = GST_CLOCK_TIME_NONE;
|
2005-05-06 07:47:50 +00:00
|
|
|
|
ffmpegdec->last_buffer = NULL;
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
return TRUE;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
|
could_not_open:
|
|
|
|
|
{
|
|
|
|
|
gst_ffmpegdec_close (ffmpegdec);
|
|
|
|
|
GST_DEBUG ("ffdec_%s: Failed to open FFMPEG codec",
|
|
|
|
|
oclass->in_plugin->name);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-01-10 13:38:12 +00:00
|
|
|
|
static GstPadLinkReturn
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gst_ffmpegdec_setcaps (GstPad * pad, GstCaps * caps)
|
2001-12-23 13:25:04 +00:00
|
|
|
|
{
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) (GST_OBJECT_PARENT (pad));
|
2004-03-29 16:39:18 +00:00
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
2004-07-21 09:20:55 +00:00
|
|
|
|
GstStructure *structure;
|
|
|
|
|
const GValue *par;
|
2005-11-22 23:12:51 +00:00
|
|
|
|
const GValue *fps;
|
2005-11-28 11:25:56 +00:00
|
|
|
|
gboolean ret = TRUE;
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
2005-09-19 13:45:38 +00:00
|
|
|
|
GST_DEBUG ("setcaps called");
|
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
|
/* close old session */
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
gst_ffmpegdec_close (ffmpegdec);
|
2002-06-03 22:48:11 +00:00
|
|
|
|
|
2005-11-28 11:25:56 +00:00
|
|
|
|
GST_OBJECT_LOCK (ffmpegdec);
|
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
|
/* set defaults */
|
|
|
|
|
avcodec_get_context_defaults (ffmpegdec->context);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
/* set buffer functions */
|
2003-06-07 00:41:32 +00:00
|
|
|
|
ffmpegdec->context->get_buffer = gst_ffmpegdec_get_buffer;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
ffmpegdec->context->release_buffer = gst_ffmpegdec_release_buffer;
|
|
|
|
|
|
2003-06-07 20:45:13 +00:00
|
|
|
|
/* get size and so */
|
ext/ffmpeg/gstffmpegcodecmap.*: Change some function names to reflect that they don't really _return_ something, but ...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_get_palette),
(gst_ffmpeg_set_palette), (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_smpfmt),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_caps_with_codectype),
(gst_ffmpeg_caps_with_codecid), (gst_ffmpeg_caps_to_codecid):
* ext/ffmpeg/gstffmpegcodecmap.h:
Change some function names to reflect that they don't really
_return_ something, but rather _use_ something to fill a
AVCodecContext. s/to/with/. Restructure the extradata handling,
it's now not picking up the type from the caps but rather
using the type as provided in the function. This is a lot
cleaner. Implement MS RLE palette pickup.
* ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_pad_link):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
Sync with the above function name changes.
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_close),
(gst_ffmpegdec_open), (gst_ffmpegdec_connect),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state):
Add some hacks to convert palette-based raw image formats to
RGBA32. Ugly, but I don't know how else to handle palette-based
RGB, since img_convert() (and thus ffcolorspace) doesn't accept
a palette as argument.
2004-04-16 01:28:36 +00:00
|
|
|
|
gst_ffmpeg_caps_with_codecid (oclass->in_plugin->id,
|
|
|
|
|
oclass->in_plugin->type, caps, ffmpegdec->context);
|
2005-09-19 13:45:38 +00:00
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if (!ffmpegdec->context->time_base.den || !ffmpegdec->context->time_base.num) {
|
2005-09-19 13:45:38 +00:00
|
|
|
|
GST_DEBUG ("forcing 25/1 framerate");
|
2005-07-27 16:03:51 +00:00
|
|
|
|
ffmpegdec->context->time_base.num = 1;
|
|
|
|
|
ffmpegdec->context->time_base.den = 25;
|
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
2004-07-21 09:20:55 +00:00
|
|
|
|
/* get pixel aspect ratio if it's set */
|
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
par = gst_structure_get_value (structure, "pixel-aspect-ratio");
|
|
|
|
|
if (par) {
|
2005-11-28 11:25:56 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "sink caps have pixel-aspect-ratio of %d:%d",
|
|
|
|
|
gst_value_get_fraction_numerator (par),
|
|
|
|
|
gst_value_get_fraction_denominator (par));
|
2004-07-21 09:20:55 +00:00
|
|
|
|
ffmpegdec->par = g_new0 (GValue, 1);
|
|
|
|
|
gst_value_init_and_copy (ffmpegdec->par, par);
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-22 23:12:51 +00:00
|
|
|
|
fps = gst_structure_get_value (structure, "framerate");
|
|
|
|
|
if (fps != NULL && GST_VALUE_HOLDS_FRACTION (fps)) {
|
|
|
|
|
ffmpegdec->format.video.fps_n = gst_value_get_fraction_numerator (fps);
|
|
|
|
|
ffmpegdec->format.video.fps_d = gst_value_get_fraction_denominator (fps);
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
} else {
|
2005-11-22 23:12:51 +00:00
|
|
|
|
ffmpegdec->format.video.fps_n = -1;
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-06-07 11:01:54 +00:00
|
|
|
|
/* do *not* draw edges */
|
|
|
|
|
ffmpegdec->context->flags |= CODEC_FLAG_EMU_EDGE;
|
|
|
|
|
|
2004-09-20 12:29:03 +00:00
|
|
|
|
/* workaround encoder bugs */
|
|
|
|
|
ffmpegdec->context->workaround_bugs |= FF_BUG_AUTODETECT;
|
|
|
|
|
|
2005-01-31 10:45:20 +00:00
|
|
|
|
/* for slow cpus */
|
|
|
|
|
ffmpegdec->context->lowres = ffmpegdec->lowres;
|
|
|
|
|
ffmpegdec->context->hurry_up = ffmpegdec->hurry_up;
|
|
|
|
|
|
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... */
|
2004-12-16 12:47:43 +00:00
|
|
|
|
if (!gst_ffmpegdec_open (ffmpegdec)) {
|
|
|
|
|
if (ffmpegdec->par) {
|
|
|
|
|
g_free (ffmpegdec->par);
|
|
|
|
|
ffmpegdec->par = NULL;
|
|
|
|
|
}
|
2005-11-28 11:25:56 +00:00
|
|
|
|
ret = FALSE;
|
2004-12-16 12:47:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-28 11:25:56 +00:00
|
|
|
|
GST_OBJECT_UNLOCK (ffmpegdec);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2001-12-23 13:25:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
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;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) context->opaque;
|
|
|
|
|
int width = context->width;
|
2005-05-06 07:47:50 +00:00
|
|
|
|
int height = context->height;
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
|
|
switch (context->codec_type) {
|
|
|
|
|
case CODEC_TYPE_VIDEO:
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
|
|
|
|
avcodec_align_dimensions (context, &width, &height);
|
|
|
|
|
|
|
|
|
|
bufsize = avpicture_get_size (context->pix_fmt, width, height);
|
|
|
|
|
|
2005-11-16 22:53:26 +00:00
|
|
|
|
if ((width != context->width) || (height != context->height) || 1) {
|
2005-05-06 07:47:50 +00:00
|
|
|
|
#ifdef FORCE_OUR_GET_BUFFER
|
2005-11-14 16:00:38 +00:00
|
|
|
|
context->width = width;
|
|
|
|
|
context->height = height;
|
|
|
|
|
#else
|
|
|
|
|
/* revert to ffmpeg's default functions */
|
|
|
|
|
ffmpegdec->context->get_buffer = avcodec_default_get_buffer;
|
|
|
|
|
ffmpegdec->context->release_buffer = avcodec_default_release_buffer;
|
|
|
|
|
|
|
|
|
|
return avcodec_default_get_buffer (context, picture);
|
2005-05-06 07:47:50 +00:00
|
|
|
|
#endif
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-06 07:47:50 +00:00
|
|
|
|
if (!gst_ffmpegdec_negotiate (ffmpegdec)) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_ELEMENT_ERROR (ffmpegdec, CORE, NEGOTIATION, (NULL),
|
|
|
|
|
("Failed to link ffmpeg decoder to next element"));
|
|
|
|
|
return avcodec_default_get_buffer (context, picture);
|
2005-05-06 07:47:50 +00:00
|
|
|
|
}
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-12-05 13:04:39 +00:00
|
|
|
|
if (gst_pad_alloc_buffer_and_set_caps (ffmpegdec->srcpad, GST_BUFFER_OFFSET_NONE,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
bufsize, GST_PAD_CAPS (ffmpegdec->srcpad), &buf) != GST_FLOW_OK)
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
return -1;
|
2005-05-06 07:47:50 +00:00
|
|
|
|
ffmpegdec->last_buffer = buf;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2004-10-29 09:47:41 +00:00
|
|
|
|
gst_ffmpeg_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;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
|
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;
|
2005-05-06 07:47:50 +00:00
|
|
|
|
picture->opaque = buf;
|
2003-06-07 00:41:32 +00:00
|
|
|
|
gst_buffer_ref (buf);
|
|
|
|
|
|
2005-11-11 14:43:01 +00:00
|
|
|
|
GST_LOG_OBJECT (ffmpegdec, "END");
|
|
|
|
|
|
2003-06-07 00:41:32 +00:00
|
|
|
|
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;
|
2005-11-16 21:48:06 +00:00
|
|
|
|
GstBuffer *buf;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) context->opaque;
|
2005-11-21 18:26:23 +00:00
|
|
|
|
|
2005-05-06 07:47:50 +00:00
|
|
|
|
g_return_if_fail (buf != NULL);
|
|
|
|
|
g_return_if_fail (picture->type == FF_BUFFER_TYPE_USER);
|
2004-03-29 16:39:18 +00:00
|
|
|
|
|
2005-11-16 21:48:06 +00:00
|
|
|
|
buf = GST_BUFFER (picture->opaque);
|
|
|
|
|
|
2005-07-22 16:07:02 +00:00
|
|
|
|
if (buf == ffmpegdec->last_buffer)
|
|
|
|
|
ffmpegdec->last_buffer = NULL;
|
2003-06-07 00:41:32 +00:00
|
|
|
|
gst_buffer_unref (buf);
|
2005-11-21 18:26:23 +00:00
|
|
|
|
|
2005-11-16 21:48:06 +00:00
|
|
|
|
picture->opaque = NULL;
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
}
|
|
|
|
|
|
2005-11-28 11:25:56 +00:00
|
|
|
|
static void
|
|
|
|
|
gst_ffmpegdec_add_pixel_aspect_ratio (GstFFMpegDec * ffmpegdec,
|
|
|
|
|
GstStructure * s)
|
|
|
|
|
{
|
|
|
|
|
gboolean demuxer_par_set = FALSE;
|
|
|
|
|
gboolean decoder_par_set = FALSE;
|
|
|
|
|
gint demuxer_num, demuxer_denom;
|
|
|
|
|
gint decoder_num, decoder_denom;
|
|
|
|
|
|
|
|
|
|
GST_OBJECT_LOCK (ffmpegdec);
|
|
|
|
|
|
|
|
|
|
if (ffmpegdec->par) {
|
|
|
|
|
demuxer_num = gst_value_get_fraction_numerator (ffmpegdec->par);
|
|
|
|
|
demuxer_denom = gst_value_get_fraction_denominator (ffmpegdec->par);
|
|
|
|
|
demuxer_par_set = TRUE;
|
|
|
|
|
GST_DEBUG ("Demuxer PAR: %d:%d", demuxer_num, demuxer_denom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ffmpegdec->context->sample_aspect_ratio.num &&
|
|
|
|
|
ffmpegdec->context->sample_aspect_ratio.den) {
|
|
|
|
|
decoder_num = ffmpegdec->context->sample_aspect_ratio.num;
|
|
|
|
|
decoder_denom = ffmpegdec->context->sample_aspect_ratio.den;
|
|
|
|
|
decoder_par_set = TRUE;
|
|
|
|
|
GST_DEBUG ("Decoder PAR: %d:%d", decoder_num, decoder_denom);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GST_OBJECT_UNLOCK (ffmpegdec);
|
|
|
|
|
|
|
|
|
|
if (!demuxer_par_set && !decoder_par_set) {
|
|
|
|
|
GST_DEBUG ("Neither demuxer nor codec provide a pixel-aspect-ratio");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (demuxer_par_set && !decoder_par_set)
|
|
|
|
|
goto use_demuxer_par;
|
|
|
|
|
|
|
|
|
|
if (decoder_par_set && !demuxer_par_set)
|
|
|
|
|
goto use_decoder_par;
|
|
|
|
|
|
|
|
|
|
/* Both the demuxer and the decoder provide a PAR. If one of
|
|
|
|
|
* the two PARs is 1:1 and the other one is not, use the one
|
|
|
|
|
* that is not 1:1. If both are non-1:1, use the pixel aspect
|
|
|
|
|
* ratio provided by the codec */
|
|
|
|
|
|
|
|
|
|
if (demuxer_num == demuxer_denom && decoder_num != decoder_denom)
|
|
|
|
|
goto use_decoder_par;
|
|
|
|
|
|
|
|
|
|
if (decoder_num == decoder_denom && demuxer_num != demuxer_denom)
|
|
|
|
|
goto use_demuxer_par;
|
|
|
|
|
|
|
|
|
|
/* fall through and use decoder pixel aspect ratio */
|
|
|
|
|
|
|
|
|
|
use_decoder_par:
|
|
|
|
|
{
|
|
|
|
|
GST_DEBUG ("Setting decoder provided pixel-aspect-ratio of %u:%u",
|
|
|
|
|
decoder_num, decoder_denom);
|
|
|
|
|
gst_structure_set (s, "pixel-aspect-ratio", GST_TYPE_FRACTION,
|
|
|
|
|
decoder_num, decoder_denom, NULL);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
use_demuxer_par:
|
|
|
|
|
{
|
|
|
|
|
GST_DEBUG ("Setting demuxer provided pixel-aspect-ratio of %u:%u",
|
|
|
|
|
demuxer_num, demuxer_denom);
|
|
|
|
|
gst_structure_set (s, "pixel-aspect-ratio", GST_TYPE_FRACTION,
|
|
|
|
|
demuxer_num, demuxer_denom, NULL);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-16 12:47:43 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
gst_ffmpegdec_negotiate (GstFFMpegDec * ffmpegdec)
|
|
|
|
|
{
|
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
|
|
|
|
GstCaps *caps;
|
|
|
|
|
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
switch (oclass->in_plugin->type) {
|
|
|
|
|
case CODEC_TYPE_VIDEO:
|
|
|
|
|
if (ffmpegdec->format.video.width == ffmpegdec->context->width &&
|
|
|
|
|
ffmpegdec->format.video.height == ffmpegdec->context->height &&
|
2005-11-22 23:12:51 +00:00
|
|
|
|
ffmpegdec->format.video.fps_n == ffmpegdec->format.video.old_fps_n &&
|
|
|
|
|
ffmpegdec->format.video.fps_d == ffmpegdec->format.video.old_fps_d &&
|
2005-11-14 16:00:38 +00:00
|
|
|
|
ffmpegdec->format.video.pix_fmt == ffmpegdec->context->pix_fmt)
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
return TRUE;
|
2005-11-28 11:25:56 +00:00
|
|
|
|
GST_DEBUG
|
|
|
|
|
("Renegotiating video from %dx%d@ %d/%d fps to %dx%d@ %d/%d fps",
|
2005-01-19 15:34:14 +00:00
|
|
|
|
ffmpegdec->format.video.width, ffmpegdec->format.video.height,
|
2005-11-22 23:12:51 +00:00
|
|
|
|
ffmpegdec->format.video.old_fps_n, ffmpegdec->format.video.old_fps_n,
|
2005-11-28 11:25:56 +00:00
|
|
|
|
ffmpegdec->context->width, ffmpegdec->context->height,
|
|
|
|
|
ffmpegdec->format.video.fps_n, ffmpegdec->format.video.fps_d);
|
2005-01-19 15:34:14 +00:00
|
|
|
|
ffmpegdec->format.video.width = ffmpegdec->context->width;
|
|
|
|
|
ffmpegdec->format.video.height = ffmpegdec->context->height;
|
2005-11-22 23:12:51 +00:00
|
|
|
|
ffmpegdec->format.video.old_fps_n = ffmpegdec->format.video.fps_n;
|
|
|
|
|
ffmpegdec->format.video.old_fps_d = ffmpegdec->format.video.fps_d;
|
2005-07-11 13:51:45 +00:00
|
|
|
|
ffmpegdec->format.video.pix_fmt = ffmpegdec->context->pix_fmt;
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
break;
|
|
|
|
|
case CODEC_TYPE_AUDIO:
|
|
|
|
|
if (ffmpegdec->format.audio.samplerate ==
|
2005-11-14 16:00:38 +00:00
|
|
|
|
ffmpegdec->context->sample_rate &&
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
ffmpegdec->format.audio.channels == ffmpegdec->context->channels)
|
|
|
|
|
return TRUE;
|
2005-01-19 15:34:14 +00:00
|
|
|
|
GST_DEBUG ("Renegotiating audio from %dHz@%dchannels to %dHz@%dchannels",
|
|
|
|
|
ffmpegdec->format.audio.samplerate, ffmpegdec->format.audio.channels,
|
|
|
|
|
ffmpegdec->context->sample_rate, ffmpegdec->context->channels);
|
|
|
|
|
ffmpegdec->format.audio.samplerate = ffmpegdec->context->sample_rate;
|
2005-01-25 16:56:45 +00:00
|
|
|
|
ffmpegdec->format.audio.channels = ffmpegdec->context->channels;
|
ext/ffmpeg/: Add simple query functions. Seeking is only cosmetic, it's not actually filled in yet (in ffmpegdec).
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_query), (gst_ffmpegdec_event), (gst_ffmpegdec_open),
(gst_ffmpegdec_negotiate), (gst_ffmpegdec_chain):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_init),
(gst_ffmpegdemux_close), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_loop):
Add simple query functions. Seeking is only cosmetic, it's not
actually filled in yet (in ffmpegdec).
2005-01-18 21:33:42 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-16 12:47:43 +00:00
|
|
|
|
caps = gst_ffmpeg_codectype_to_caps (oclass->in_plugin->type,
|
|
|
|
|
ffmpegdec->context);
|
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if (caps) {
|
|
|
|
|
/* If a demuxer provided a framerate then use it (#313970) */
|
2005-11-22 23:12:51 +00:00
|
|
|
|
if (ffmpegdec->format.video.fps_n != -1) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
gst_structure_set (gst_caps_get_structure (caps, 0), "framerate",
|
2005-11-28 11:25:56 +00:00
|
|
|
|
GST_TYPE_FRACTION, ffmpegdec->format.video.fps_n,
|
|
|
|
|
ffmpegdec->format.video.fps_d, NULL);
|
2005-11-14 16:00:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-28 11:25:56 +00:00
|
|
|
|
gst_ffmpegdec_add_pixel_aspect_ratio (ffmpegdec,
|
|
|
|
|
gst_caps_get_structure (caps, 0));
|
2004-12-16 12:47:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if (caps == NULL || !gst_pad_set_caps (ffmpegdec->srcpad, caps)) {
|
2004-12-16 12:47:43 +00:00
|
|
|
|
GST_ELEMENT_ERROR (ffmpegdec, CORE, NEGOTIATION, (NULL),
|
|
|
|
|
("Failed to link ffmpeg decoder (%s) to next element",
|
2005-11-14 16:00:38 +00:00
|
|
|
|
oclass->in_plugin->name));
|
2004-12-16 12:47:43 +00:00
|
|
|
|
|
|
|
|
|
if (caps != NULL)
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gst_caps_unref (caps);
|
2004-12-16 12:47:43 +00:00
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gst_caps_unref (caps);
|
2004-12-16 12:47:43 +00:00
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
2004-11-05 18:03:04 +00:00
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
static gint
|
|
|
|
|
gst_ffmpegdec_frame (GstFFMpegDec * ffmpegdec,
|
2005-08-16 09:50:03 +00:00
|
|
|
|
guint8 * data, guint size, gint * got_data, guint64 * in_ts,
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
GstBuffer * inbuf, GstFlowReturn * ret)
|
2005-01-18 23:19:46 +00:00
|
|
|
|
{
|
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
|
|
|
|
GstBuffer *outbuf = NULL;
|
2005-07-22 16:07:02 +00:00
|
|
|
|
gint have_data = 0, len = 0;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
|
2005-09-19 13:45:38 +00:00
|
|
|
|
if (ffmpegdec->context->codec == NULL)
|
|
|
|
|
return -1;
|
|
|
|
|
|
2005-11-11 16:49:41 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
"data:%p, size:%d, *in_ts:%" GST_TIME_FORMAT " inbuf:%p inbuf.ts:%"
|
|
|
|
|
GST_TIME_FORMAT, data, size, GST_TIME_ARGS (*in_ts), inbuf,
|
|
|
|
|
GST_TIME_ARGS ((inbuf) ? GST_BUFFER_TIMESTAMP (inbuf) : 0));
|
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
ffmpegdec->context->frame_number++;
|
|
|
|
|
|
|
|
|
|
switch (oclass->in_plugin->type) {
|
|
|
|
|
case CODEC_TYPE_VIDEO:
|
2005-11-14 16:00:38 +00:00
|
|
|
|
ffmpegdec->picture->pict_type = -1; /* in case we skip frames */
|
2005-05-06 07:47:50 +00:00
|
|
|
|
|
|
|
|
|
ffmpegdec->context->opaque = ffmpegdec;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
len = avcodec_decode_video (ffmpegdec->context,
|
|
|
|
|
ffmpegdec->picture, &have_data, data, size);
|
2005-01-19 16:08:17 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
2005-11-11 14:43:01 +00:00
|
|
|
|
"Decoded video: len=%d, have_data=%d", len, have_data);
|
2005-01-18 23:19:46 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
if (ffmpegdec->waiting_for_key) {
|
|
|
|
|
if (ffmpegdec->picture->pict_type == FF_I_TYPE) {
|
|
|
|
|
ffmpegdec->waiting_for_key = FALSE;
|
|
|
|
|
} else {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_WARNING_OBJECT (ffmpegdec, "Dropping non-keyframe (seek/init)");
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
have_data = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* note that ffmpeg sometimes gets the FPS wrong.
|
|
|
|
|
* For B-frame containing movies, we get all pictures delayed
|
|
|
|
|
* except for the I frames, so we synchronize only on I frames
|
|
|
|
|
* and keep an internal counter based on FPS for the others. */
|
|
|
|
|
if (!(oclass->in_plugin->capabilities & CODEC_CAP_DELAY) ||
|
|
|
|
|
((ffmpegdec->picture->pict_type == FF_I_TYPE ||
|
2005-11-14 16:00:38 +00:00
|
|
|
|
!GST_CLOCK_TIME_IS_VALID (ffmpegdec->next_ts)) &&
|
|
|
|
|
GST_CLOCK_TIME_IS_VALID (*in_ts))) {
|
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "setting next_ts to %" GST_TIME_FORMAT,
|
|
|
|
|
GST_TIME_ARGS (*in_ts));
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
ffmpegdec->next_ts = *in_ts;
|
|
|
|
|
*in_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* precise seeking.... */
|
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (ffmpegdec->synctime)) {
|
|
|
|
|
if (ffmpegdec->next_ts >= ffmpegdec->synctime) {
|
|
|
|
|
ffmpegdec->synctime = GST_CLOCK_TIME_NONE;
|
|
|
|
|
} else {
|
|
|
|
|
GST_WARNING_OBJECT (ffmpegdec,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
"Dropping frame for synctime %" GST_TIME_FORMAT
|
|
|
|
|
", expected(next_ts) %" GST_TIME_FORMAT,
|
|
|
|
|
GST_TIME_ARGS (ffmpegdec->synctime),
|
2005-11-21 18:26:23 +00:00
|
|
|
|
GST_TIME_ARGS (ffmpegdec->next_ts));
|
2005-11-16 21:48:06 +00:00
|
|
|
|
|
2005-11-21 18:26:23 +00:00
|
|
|
|
if (ffmpegdec->picture->opaque != NULL) {
|
|
|
|
|
outbuf = (GstBuffer *) ffmpegdec->picture->opaque;
|
|
|
|
|
gst_buffer_unref (outbuf);
|
|
|
|
|
}
|
2005-11-16 21:48:06 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
have_data = 0;
|
|
|
|
|
/* don´t break here! Timestamps are updated below */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-01 10:09:15 +00:00
|
|
|
|
if (ffmpegdec->waiting_for_key &&
|
|
|
|
|
ffmpegdec->picture->pict_type != FF_I_TYPE) {
|
|
|
|
|
have_data = 0;
|
|
|
|
|
} else if (len >= 0 && have_data > 0) {
|
2005-01-18 23:19:46 +00:00
|
|
|
|
/* libavcodec constantly crashes on stupid buffer allocation
|
|
|
|
|
* errors inside. This drives me crazy, so we let it allocate
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
* its own buffers and copy to our own buffer afterwards... */
|
2005-04-18 09:51:44 +00:00
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if (ffmpegdec->picture->opaque != NULL) {
|
|
|
|
|
outbuf = (GstBuffer *) ffmpegdec->picture->opaque;
|
2005-07-22 16:07:02 +00:00
|
|
|
|
if (outbuf == ffmpegdec->last_buffer)
|
|
|
|
|
ffmpegdec->last_buffer = NULL;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
} else {
|
|
|
|
|
AVPicture pic;
|
|
|
|
|
gint fsize =
|
|
|
|
|
gst_ffmpeg_avpicture_get_size (ffmpegdec->context->pix_fmt,
|
|
|
|
|
ffmpegdec->context->width, ffmpegdec->context->height);
|
|
|
|
|
|
|
|
|
|
if (!gst_ffmpegdec_negotiate (ffmpegdec))
|
2005-08-16 09:50:03 +00:00
|
|
|
|
return -1;
|
2005-05-06 07:47:50 +00:00
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if ((*ret =
|
2005-12-05 13:04:39 +00:00
|
|
|
|
gst_pad_alloc_buffer_and_set_caps (ffmpegdec->srcpad,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_BUFFER_OFFSET_NONE, fsize,
|
|
|
|
|
GST_PAD_CAPS (ffmpegdec->srcpad),
|
|
|
|
|
&outbuf)) != GST_FLOW_OK)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
/* original ffmpeg code does not handle odd sizes correctly.
|
|
|
|
|
* This patched up version does */
|
|
|
|
|
gst_ffmpeg_avpicture_fill (&pic, GST_BUFFER_DATA (outbuf),
|
|
|
|
|
ffmpegdec->context->pix_fmt,
|
|
|
|
|
ffmpegdec->context->width, ffmpegdec->context->height);
|
|
|
|
|
|
|
|
|
|
/* the original convert function did not do the right thing, this
|
|
|
|
|
* is a patched up version that adjust widht/height so that the
|
|
|
|
|
* ffmpeg one works correctly. */
|
|
|
|
|
gst_ffmpeg_img_convert (&pic, ffmpegdec->context->pix_fmt,
|
|
|
|
|
(AVPicture *) ffmpegdec->picture,
|
|
|
|
|
ffmpegdec->context->pix_fmt,
|
|
|
|
|
ffmpegdec->context->width, ffmpegdec->context->height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ffmpegdec->waiting_for_key = FALSE;
|
|
|
|
|
|
|
|
|
|
if (!ffmpegdec->picture->key_frame) {
|
|
|
|
|
GST_BUFFER_FLAG_SET (outbuf, GST_BUFFER_FLAG_DELTA_UNIT);
|
|
|
|
|
}
|
2005-02-03 17:19:06 +00:00
|
|
|
|
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
/* If we have used the framerate from the demuxer then
|
2005-11-14 16:00:38 +00:00
|
|
|
|
* also use the demuxer's timestamp information (#317596) */
|
2005-11-22 23:12:51 +00:00
|
|
|
|
if (ffmpegdec->format.video.fps_n != -1 && inbuf != NULL) {
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
gst_buffer_stamp (outbuf, inbuf);
|
2005-02-01 21:15:20 +00:00
|
|
|
|
} else {
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = ffmpegdec->next_ts;
|
|
|
|
|
if (ffmpegdec->context->time_base.num != 0 &&
|
|
|
|
|
ffmpegdec->context->time_base.den != 0) {
|
2005-11-28 11:25:56 +00:00
|
|
|
|
GST_BUFFER_DURATION (outbuf) =
|
|
|
|
|
gst_util_uint64_scale_int (GST_SECOND,
|
|
|
|
|
ffmpegdec->context->time_base.num,
|
|
|
|
|
ffmpegdec->context->time_base.den);
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
|
|
|
|
|
/* Take repeat_pict into account */
|
|
|
|
|
GST_BUFFER_DURATION (outbuf) += GST_BUFFER_DURATION (outbuf)
|
|
|
|
|
* ffmpegdec->picture->repeat_pict / 2;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
|
|
|
|
"advancing next_ts by duration of %" GST_TIME_FORMAT,
|
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_DURATION (outbuf)));
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
ffmpegdec->next_ts += GST_BUFFER_DURATION (outbuf);
|
|
|
|
|
} else {
|
|
|
|
|
ffmpegdec->next_ts = GST_CLOCK_TIME_NONE;
|
|
|
|
|
}
|
2005-02-01 21:15:20 +00:00
|
|
|
|
}
|
2005-06-09 09:53:04 +00:00
|
|
|
|
} else if (ffmpegdec->picture->pict_type != -1 &&
|
2005-11-14 16:00:38 +00:00
|
|
|
|
oclass->in_plugin->capabilities & CODEC_CAP_DELAY) {
|
2005-01-31 10:45:20 +00:00
|
|
|
|
/* update time for skip-frame */
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if ((!have_data)
|
|
|
|
|
|| (ffmpegdec->picture->pict_type == FF_I_TYPE ||
|
|
|
|
|
!GST_CLOCK_TIME_IS_VALID (ffmpegdec->next_ts))
|
|
|
|
|
&& GST_CLOCK_TIME_IS_VALID (*in_ts)) {
|
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "setting next_ts to *in_ts");
|
2005-01-31 10:45:20 +00:00
|
|
|
|
ffmpegdec->next_ts = *in_ts;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
*in_ts = GST_CLOCK_TIME_NONE;
|
2005-02-01 21:15:20 +00:00
|
|
|
|
}
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
ext/: Update to ffmpeg snapshot of Jul 20 2005 4:00 PM GMT. Mostly some added codecs, some API changes, etc. Also add...
Original commit message from CVS:
* ext/ffmpeg/gstffmpeg.h:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_formatid_get_codecids),
(gst_ffmpeg_caps_to_codecid), (gst_ffmpeg_get_codecid_longname),
(gst_ffmpeg_img_convert):
* ext/ffmpeg/gstffmpegcodecmap.h:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_chain),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegdeinterlace.c:
(gst_ffmpegdeinterlace_getcaps), (gst_ffmpegdeinterlace_pad_link):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_src_event),
(gst_ffmpegdemux_src_format_list), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_src_convert), (gst_ffmpegdemux_add),
(gst_ffmpegdemux_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_link), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_request_new_pad),
(gst_ffmpegmux_connect), (gst_ffmpegmux_loop),
(gst_ffmpegmux_register):
* ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_write):
* ext/ffmpeg/gstffmpegscale.c: (gst_ffmpegscale_pad_link):
* ext/libpostproc/gstpostproc.c: (gst_postproc_chain):
Update to ffmpeg snapshot of Jul 20 2005 4:00 PM GMT. Mostly
some added codecs, some API changes, etc. Also adds a VOB muxer
for MPEG-2 video and adds h264 to .mp4 muxing.
2005-07-20 15:40:57 +00:00
|
|
|
|
if (ffmpegdec->context->time_base.num != 0 &&
|
|
|
|
|
ffmpegdec->context->time_base.den != 0) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
guint64 dur = GST_SECOND *
|
|
|
|
|
ffmpegdec->context->time_base.num /
|
|
|
|
|
ffmpegdec->context->time_base.den;
|
2005-02-03 17:19:06 +00:00
|
|
|
|
|
|
|
|
|
/* Take repeat_pict into account */
|
|
|
|
|
dur += dur * ffmpegdec->picture->repeat_pict / 2;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
|
|
|
|
"Advancing next_ts by dur:%" GST_TIME_FORMAT,
|
|
|
|
|
GST_TIME_ARGS (dur));
|
2005-02-03 17:19:06 +00:00
|
|
|
|
ffmpegdec->next_ts += dur;
|
2005-02-01 21:15:20 +00:00
|
|
|
|
} else {
|
|
|
|
|
ffmpegdec->next_ts = GST_CLOCK_TIME_NONE;
|
2005-01-31 10:45:20 +00:00
|
|
|
|
}
|
2005-01-18 23:19:46 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case CODEC_TYPE_AUDIO:
|
2005-07-22 16:07:02 +00:00
|
|
|
|
if (!ffmpegdec->last_buffer)
|
|
|
|
|
outbuf = gst_buffer_new_and_alloc (AVCODEC_MAX_AUDIO_FRAME_SIZE);
|
|
|
|
|
else {
|
|
|
|
|
outbuf = ffmpegdec->last_buffer;
|
|
|
|
|
ffmpegdec->last_buffer = NULL;
|
|
|
|
|
}
|
2005-01-18 23:19:46 +00:00
|
|
|
|
len = avcodec_decode_audio (ffmpegdec->context,
|
|
|
|
|
(int16_t *) GST_BUFFER_DATA (outbuf), &have_data, data, size);
|
2005-01-19 16:08:17 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
|
|
|
|
"Decode audio: len=%d, have_data=%d", len, have_data);
|
2005-01-18 23:19:46 +00:00
|
|
|
|
|
|
|
|
|
if (len >= 0 && have_data > 0) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if (!gst_ffmpegdec_negotiate (ffmpegdec)) {
|
|
|
|
|
gst_buffer_unref (outbuf);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2005-04-18 09:51:44 +00:00
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
GST_BUFFER_SIZE (outbuf) = have_data;
|
2005-01-19 11:46:49 +00:00
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (*in_ts)) {
|
|
|
|
|
ffmpegdec->next_ts = *in_ts;
|
2005-01-18 23:19:46 +00:00
|
|
|
|
}
|
2005-01-19 11:46:49 +00:00
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = ffmpegdec->next_ts;
|
|
|
|
|
GST_BUFFER_DURATION (outbuf) = (have_data * GST_SECOND) /
|
|
|
|
|
(2 * ffmpegdec->context->channels *
|
|
|
|
|
ffmpegdec->context->sample_rate);
|
|
|
|
|
ffmpegdec->next_ts += GST_BUFFER_DURATION (outbuf);
|
2005-07-27 16:03:51 +00:00
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID (*in_ts))
|
|
|
|
|
*in_ts += GST_BUFFER_DURATION (outbuf);
|
2005-07-22 16:07:02 +00:00
|
|
|
|
} else if (len > 0 && have_data == 0) {
|
|
|
|
|
/* cache output, because it may be used for caching (in-place) */
|
|
|
|
|
ffmpegdec->last_buffer = outbuf;
|
2005-01-18 23:19:46 +00:00
|
|
|
|
} else {
|
|
|
|
|
gst_buffer_unref (outbuf);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
g_assert (0);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
if (len < 0 || have_data < 0) {
|
|
|
|
|
GST_ERROR_OBJECT (ffmpegdec,
|
|
|
|
|
"ffdec_%s: decoding error (len: %d, have_data: %d)",
|
|
|
|
|
oclass->in_plugin->name, len, have_data);
|
|
|
|
|
*got_data = 0;
|
|
|
|
|
return len;
|
|
|
|
|
} else if (len == 0 && have_data == 0) {
|
|
|
|
|
*got_data = 0;
|
|
|
|
|
return 0;
|
|
|
|
|
} else {
|
2005-01-19 16:08:17 +00:00
|
|
|
|
/* this is where I lost my last clue on ffmpeg... */
|
2005-11-14 16:00:38 +00:00
|
|
|
|
*got_data = 1; //(ffmpegdec->pctx || have_data) ? 1 : 0;
|
2005-01-18 23:19:46 +00:00
|
|
|
|
}
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
if (have_data) {
|
2005-01-28 10:45:37 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "Decoded data, now pushing (%"
|
|
|
|
|
GST_TIME_FORMAT ")", GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (outbuf)));
|
2005-01-18 23:19:46 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gst_buffer_set_caps (outbuf, GST_PAD_CAPS (ffmpegdec->srcpad));
|
2005-08-16 09:50:03 +00:00
|
|
|
|
*ret = gst_pad_push (ffmpegdec->srcpad, outbuf);
|
2005-01-18 23:19:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return len;
|
|
|
|
|
}
|
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
gst_ffmpegdec_sink_event (GstPad * pad, GstEvent * event)
|
2005-01-19 11:46:49 +00:00
|
|
|
|
{
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) GST_OBJECT_PARENT (pad);
|
2005-04-25 18:16:20 +00:00
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
2005-11-14 16:00:38 +00:00
|
|
|
|
gboolean ret;
|
2005-04-25 18:16:20 +00:00
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "Handling %s event",
|
|
|
|
|
GST_EVENT_TYPE_NAME (event));
|
2005-01-19 15:34:14 +00:00
|
|
|
|
|
2005-01-19 11:46:49 +00:00
|
|
|
|
switch (GST_EVENT_TYPE (event)) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
case GST_EVENT_EOS:{
|
2005-04-25 18:16:20 +00:00
|
|
|
|
if (oclass->in_plugin->capabilities & CODEC_CAP_DELAY) {
|
|
|
|
|
gint have_data, len, try = 0;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-04-25 18:16:20 +00:00
|
|
|
|
do {
|
2005-08-16 09:50:03 +00:00
|
|
|
|
GstFlowReturn ret;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-04-25 18:16:20 +00:00
|
|
|
|
len = gst_ffmpegdec_frame (ffmpegdec, NULL, 0, &have_data,
|
ext/ffmpeg/gstffmpegdec.c: Backported some fixes from 0.8. Most importantly, use demuxer's timestamping information i...
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
(gst_ffmpegdec_close), (gst_ffmpegdec_open),
(gst_ffmpegdec_setcaps), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain):
Backported some fixes from 0.8. Most importantly, use
demuxer's timestamping information if we use its framerate
value. Makes divx play properly again among other things
(#319616, #313970, #317596). Did not backport memory leak
fix.
2005-10-26 17:41:58 +00:00
|
|
|
|
&ffmpegdec->next_ts, NULL, &ret);
|
2005-04-25 18:16:20 +00:00
|
|
|
|
if (len < 0 || have_data == 0)
|
|
|
|
|
break;
|
|
|
|
|
} while (try++ < 10);
|
|
|
|
|
}
|
2005-11-14 16:00:38 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case GST_EVENT_FLUSH_STOP:{
|
2005-01-19 14:32:49 +00:00
|
|
|
|
if (ffmpegdec->opened) {
|
|
|
|
|
avcodec_flush_buffers (ffmpegdec->context);
|
|
|
|
|
}
|
2005-11-14 16:00:38 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case GST_EVENT_NEWSEGMENT:{
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
gint64 base, start, end;
|
|
|
|
|
gdouble rate;
|
|
|
|
|
GstFormat fmt;
|
|
|
|
|
|
2005-11-22 12:01:00 +00:00
|
|
|
|
gst_event_parse_new_segment (event, NULL, &rate, &fmt, &start, &end,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
&base);
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
if (fmt == GST_FORMAT_TIME) {
|
|
|
|
|
ffmpegdec->next_ts = start;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
|
|
|
|
"Discont to time (next_ts) %" GST_TIME_FORMAT " -- %"
|
|
|
|
|
GST_TIME_FORMAT, GST_TIME_ARGS (start), GST_TIME_ARGS (end));
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
} else if (ffmpegdec->context->bit_rate && fmt == GST_FORMAT_BYTES) {
|
|
|
|
|
ffmpegdec->next_ts = start * GST_SECOND / ffmpegdec->context->bit_rate;
|
2005-01-19 11:46:49 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
2005-09-16 14:44:42 +00:00
|
|
|
|
"Newsegment in bytes from byte %" G_GINT64_FORMAT
|
2005-11-14 16:00:38 +00:00
|
|
|
|
" (time %" GST_TIME_FORMAT ") to byte % " G_GINT64_FORMAT
|
2005-09-16 14:44:42 +00:00
|
|
|
|
" (time %" GST_TIME_FORMAT ")",
|
|
|
|
|
start, GST_TIME_ARGS (ffmpegdec->next_ts),
|
|
|
|
|
end,
|
|
|
|
|
GST_TIME_ARGS (end * GST_SECOND / ffmpegdec->context->bit_rate));
|
2005-01-19 11:46:49 +00:00
|
|
|
|
gst_event_unref (event);
|
2005-11-22 12:01:00 +00:00
|
|
|
|
event = gst_event_new_new_segment (FALSE, rate, fmt,
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
start * GST_SECOND / ffmpegdec->context->bit_rate,
|
2005-09-16 14:44:42 +00:00
|
|
|
|
end == -1 ? -1 : end * GST_SECOND / ffmpegdec->context->bit_rate,
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
base * GST_SECOND / ffmpegdec->context->bit_rate);
|
2005-01-19 11:46:49 +00:00
|
|
|
|
} else {
|
|
|
|
|
GST_WARNING_OBJECT (ffmpegdec,
|
|
|
|
|
"Received discont with no useful value...");
|
|
|
|
|
}
|
2005-01-19 14:32:49 +00:00
|
|
|
|
if (ffmpegdec->opened) {
|
|
|
|
|
avcodec_flush_buffers (ffmpegdec->context);
|
2005-04-02 10:01:20 +00:00
|
|
|
|
|
|
|
|
|
if (ffmpegdec->context->codec_id == CODEC_ID_MPEG2VIDEO ||
|
2005-06-03 13:44:04 +00:00
|
|
|
|
ffmpegdec->context->codec_id == CODEC_ID_MPEG4 ||
|
|
|
|
|
ffmpegdec->context->codec_id == CODEC_ID_H264) {
|
2005-04-02 10:01:20 +00:00
|
|
|
|
ffmpegdec->waiting_for_key = TRUE;
|
|
|
|
|
}
|
2005-01-19 14:32:49 +00:00
|
|
|
|
}
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
ffmpegdec->waiting_for_key = TRUE;
|
|
|
|
|
ffmpegdec->synctime = ffmpegdec->next_ts;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
break;
|
2005-01-19 11:46:49 +00:00
|
|
|
|
}
|
|
|
|
|
default:
|
2005-11-14 16:00:38 +00:00
|
|
|
|
break;
|
2005-01-19 11:46:49 +00:00
|
|
|
|
}
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
ret = gst_pad_event_default (ffmpegdec->sinkpad, event);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2005-01-19 11:46:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
static GstFlowReturn
|
|
|
|
|
gst_ffmpegdec_chain (GstPad * pad, GstBuffer * inbuf)
|
2001-12-23 13:25:04 +00:00
|
|
|
|
{
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) (GST_PAD_PARENT (pad));
|
2004-03-29 16:39:18 +00:00
|
|
|
|
GstFFMpegDecClass *oclass =
|
|
|
|
|
(GstFFMpegDecClass *) (G_OBJECT_GET_CLASS (ffmpegdec));
|
2004-12-17 13:08:13 +00:00
|
|
|
|
guint8 *bdata, *data;
|
2005-01-18 23:19:46 +00:00
|
|
|
|
gint bsize, size, len, have_data;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
guint64 in_ts = GST_BUFFER_TIMESTAMP (inbuf);
|
2005-08-16 09:50:03 +00:00
|
|
|
|
GstFlowReturn ret = GST_FLOW_OK;
|
2003-06-17 11:44:38 +00:00
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
if (!ffmpegdec->opened)
|
|
|
|
|
goto not_negotiated;
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-01-19 16:08:17 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
"Received new data of size %d, time %" GST_TIME_FORMAT " next_ts %"
|
|
|
|
|
GST_TIME_FORMAT, GST_BUFFER_SIZE (inbuf),
|
|
|
|
|
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (inbuf)),
|
|
|
|
|
GST_TIME_ARGS (ffmpegdec->next_ts));
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
2004-12-17 13:08:13 +00:00
|
|
|
|
/* parse cache joining */
|
|
|
|
|
if (ffmpegdec->pcache) {
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
inbuf = gst_buffer_span (ffmpegdec->pcache, 0, inbuf,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
GST_BUFFER_SIZE (ffmpegdec->pcache) + GST_BUFFER_SIZE (inbuf));
|
2004-12-17 13:08:13 +00:00
|
|
|
|
ffmpegdec->pcache = NULL;
|
|
|
|
|
bdata = GST_BUFFER_DATA (inbuf);
|
|
|
|
|
bsize = GST_BUFFER_SIZE (inbuf);
|
|
|
|
|
}
|
|
|
|
|
/* workarounds, functions write to buffers:
|
|
|
|
|
* libavcodec/svq1.c:svq1_decode_frame writes to the given buffer.
|
|
|
|
|
* libavcodec/svq3.c:svq3_decode_slice_header too.
|
|
|
|
|
* ffmpeg devs know about it and will fix it (they said). */
|
|
|
|
|
else if (oclass->in_plugin->id == CODEC_ID_SVQ1 ||
|
|
|
|
|
oclass->in_plugin->id == CODEC_ID_SVQ3) {
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
inbuf = gst_buffer_make_writable (inbuf);
|
2004-12-17 13:08:13 +00:00
|
|
|
|
bdata = GST_BUFFER_DATA (inbuf);
|
|
|
|
|
bsize = GST_BUFFER_SIZE (inbuf);
|
|
|
|
|
} else {
|
|
|
|
|
bdata = GST_BUFFER_DATA (inbuf);
|
|
|
|
|
bsize = GST_BUFFER_SIZE (inbuf);
|
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
|
|
|
|
do {
|
2004-12-17 13:08:13 +00:00
|
|
|
|
/* parse, if at all possible */
|
2005-01-19 15:41:35 +00:00
|
|
|
|
if (ffmpegdec->pctx) {
|
2004-12-17 13:08:13 +00:00
|
|
|
|
gint res;
|
2005-05-11 15:18:23 +00:00
|
|
|
|
gint64 ffpts;
|
2004-12-17 13:08:13 +00:00
|
|
|
|
|
2005-07-27 16:03:51 +00:00
|
|
|
|
ffpts = gst_ffmpeg_time_gst_to_ff (in_ts, ffmpegdec->context->time_base);
|
2004-12-17 13:08:13 +00:00
|
|
|
|
res = av_parser_parse (ffmpegdec->pctx, ffmpegdec->context,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
&data, &size, bdata, bsize, ffpts, ffpts);
|
2004-12-17 13:08:13 +00:00
|
|
|
|
|
2005-01-19 16:08:17 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "Parsed video frame, res=%d, size=%d",
|
|
|
|
|
res, size);
|
2005-11-14 16:00:38 +00:00
|
|
|
|
|
2005-07-27 16:03:51 +00:00
|
|
|
|
in_ts = gst_ffmpeg_time_ff_to_gst (ffmpegdec->pctx->pts,
|
|
|
|
|
ffmpegdec->context->time_base);
|
2004-12-17 13:56:18 +00:00
|
|
|
|
if (res == 0 || size == 0)
|
2004-12-17 13:08:13 +00:00
|
|
|
|
break;
|
2004-12-17 13:56:18 +00:00
|
|
|
|
else {
|
2004-12-17 13:08:13 +00:00
|
|
|
|
bsize -= res;
|
|
|
|
|
bdata += res;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
data = bdata;
|
|
|
|
|
size = bsize;
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
if ((len = gst_ffmpegdec_frame (ffmpegdec, data, size,
|
2005-11-14 16:00:38 +00:00
|
|
|
|
&have_data, &in_ts, inbuf, &ret)) < 0 || ret != GST_FLOW_OK)
|
2001-12-23 13:25:04 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2005-01-18 23:19:46 +00:00
|
|
|
|
if (!ffmpegdec->pctx) {
|
2004-12-17 13:08:13 +00:00
|
|
|
|
bsize -= len;
|
|
|
|
|
bdata += len;
|
|
|
|
|
}
|
2005-01-18 23:19:46 +00:00
|
|
|
|
|
|
|
|
|
if (!have_data) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
2005-01-19 15:41:35 +00:00
|
|
|
|
} while (bsize > 0);
|
2001-12-23 13:25:04 +00:00
|
|
|
|
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if ((ffmpegdec->pctx || oclass->in_plugin->id == CODEC_ID_MP3) && bsize > 0) {
|
2005-01-19 16:08:17 +00:00
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "Keeping %d bytes of data", bsize);
|
2004-12-18 20:53:55 +00:00
|
|
|
|
|
2004-12-17 13:08:13 +00:00
|
|
|
|
ffmpegdec->pcache = gst_buffer_create_sub (inbuf,
|
|
|
|
|
GST_BUFFER_SIZE (inbuf) - bsize, bsize);
|
2005-07-22 16:07:02 +00:00
|
|
|
|
} else if (bsize > 0) {
|
|
|
|
|
GST_DEBUG_OBJECT (ffmpegdec, "Dropping %d bytes of data", bsize);
|
2004-12-17 13:08:13 +00:00
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
gst_buffer_unref (inbuf);
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
|
2005-08-16 09:50:03 +00:00
|
|
|
|
return ret;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
|
not_negotiated:
|
|
|
|
|
{
|
|
|
|
|
GST_ELEMENT_ERROR (ffmpegdec, CORE, NEGOTIATION, (NULL),
|
|
|
|
|
("ffdec_%s: input format was not set before data start",
|
|
|
|
|
oclass->in_plugin->name));
|
|
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-09-05 14:06:29 +00:00
|
|
|
|
static GstStateChangeReturn
|
|
|
|
|
gst_ffmpegdec_change_state (GstElement * element, GstStateChange transition)
|
2001-12-23 13:25:04 +00:00
|
|
|
|
{
|
2003-06-07 00:41:32 +00:00
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) element;
|
2005-09-05 14:06:29 +00:00
|
|
|
|
GstStateChangeReturn ret;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
|
2005-09-05 14:06:29 +00:00
|
|
|
|
ret = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
2003-06-07 00:41:32 +00:00
|
|
|
|
|
|
|
|
|
switch (transition) {
|
2005-09-05 14:06:29 +00:00
|
|
|
|
case GST_STATE_CHANGE_PAUSED_TO_READY:
|
2005-06-08 18:29:39 +00:00
|
|
|
|
gst_ffmpegdec_close (ffmpegdec);
|
2005-05-06 07:47:50 +00:00
|
|
|
|
if (ffmpegdec->last_buffer != NULL) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
gst_buffer_unref (ffmpegdec->last_buffer);
|
2005-07-22 16:07:02 +00:00
|
|
|
|
ffmpegdec->last_buffer = NULL;
|
2005-05-06 07:47:50 +00:00
|
|
|
|
}
|
2001-12-23 13:25:04 +00:00
|
|
|
|
break;
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
default:
|
|
|
|
|
break;
|
2001-12-23 13:25:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
Backport BRANCH-THREADED to HEAD, fix a bit.
Original commit message from CVS:
* configure.ac:
* ext/ffmpeg/Makefile.am:
* ext/ffmpeg/gstffmpeg.c: (plugin_init):
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_with_codecid):
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_class_init),
(gst_ffmpegdec_init), (gst_ffmpegdec_query), (gst_ffmpegdec_event),
(gst_ffmpegdec_open), (gst_ffmpegdec_setcaps),
(gst_ffmpegdec_get_buffer), (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_sink_event),
(gst_ffmpegdec_chain), (gst_ffmpegdec_change_state),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_class_init),
(gst_ffmpegenc_init), (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_setcaps), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/libpostproc/Makefile.am:
Backport BRANCH-THREADED to HEAD, fix a bit.
2005-08-05 15:29:56 +00:00
|
|
|
|
return ret;
|
2001-12-23 13:25:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2005-01-31 10:45:20 +00:00
|
|
|
|
static void
|
|
|
|
|
gst_ffmpegdec_set_property (GObject * object,
|
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec)
|
|
|
|
|
{
|
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) object;
|
|
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case ARG_LOWRES:
|
2005-11-14 16:00:38 +00:00
|
|
|
|
ffmpegdec->lowres = ffmpegdec->context->lowres = g_value_get_enum (value);
|
2005-01-31 10:45:20 +00:00
|
|
|
|
break;
|
|
|
|
|
case ARG_SKIPFRAME:
|
|
|
|
|
ffmpegdec->hurry_up = ffmpegdec->context->hurry_up =
|
|
|
|
|
g_value_get_enum (value);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gst_ffmpegdec_get_property (GObject * object,
|
|
|
|
|
guint prop_id, GValue * value, GParamSpec * pspec)
|
|
|
|
|
{
|
|
|
|
|
GstFFMpegDec *ffmpegdec = (GstFFMpegDec *) object;
|
|
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
|
case ARG_LOWRES:
|
|
|
|
|
g_value_set_enum (value, ffmpegdec->context->lowres);
|
|
|
|
|
break;
|
|
|
|
|
case ARG_SKIPFRAME:
|
|
|
|
|
g_value_set_enum (value, ffmpegdec->context->hurry_up);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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-09-22 07:53:48 +00:00
|
|
|
|
gint rank;
|
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 &&
|
2005-10-23 16:07:46 +00:00
|
|
|
|
in_plugin->id <= CODEC_ID_PCM_S24DAUD)) {
|
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
|
|
|
|
|
2004-10-24 22:24:43 +00:00
|
|
|
|
/* name */
|
2005-04-21 19:01:36 +00:00
|
|
|
|
if (!gst_ffmpeg_get_codecid_longname (in_plugin->id)) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
g_warning ("Add decoder %s (%d) please", in_plugin->name, in_plugin->id);
|
2004-10-24 22:24:43 +00:00
|
|
|
|
goto next;
|
2005-04-21 19:01:36 +00:00
|
|
|
|
}
|
2004-10-24 22:24:43 +00:00
|
|
|
|
|
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);
|
2005-01-28 12:22:54 +00:00
|
|
|
|
if (in_plugin->type == CODEC_TYPE_VIDEO) {
|
|
|
|
|
srccaps = gst_caps_from_string ("video/x-raw-rgb; video/x-raw-yuv");
|
|
|
|
|
} else {
|
|
|
|
|
srccaps = gst_ffmpeg_codectype_to_caps (in_plugin->type, NULL);
|
|
|
|
|
}
|
2004-04-06 18:25:55 +00:00
|
|
|
|
if (!sinkcaps || !srccaps) {
|
2005-11-14 16:00:38 +00:00
|
|
|
|
if (sinkcaps)
|
|
|
|
|
gst_caps_unref (sinkcaps);
|
|
|
|
|
if (srccaps)
|
|
|
|
|
gst_caps_unref (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-09-22 07:53:48 +00:00
|
|
|
|
/* create the gtype now */
|
2004-03-29 16:39:18 +00:00
|
|
|
|
type = g_type_register_static (GST_TYPE_ELEMENT, type_name, &typeinfo, 0);
|
2004-09-22 07:53:48 +00:00
|
|
|
|
|
|
|
|
|
/* (Ronald) MPEG-4 gets a higher priority because it has been well-
|
|
|
|
|
* tested and by far outperforms divxdec/xviddec - so we prefer it.
|
2004-12-19 23:41:03 +00:00
|
|
|
|
* msmpeg4v3 same, as it outperforms divxdec for divx3 playback.
|
2005-04-21 19:01:36 +00:00
|
|
|
|
* VC1/WMV3 are not working and thus unpreferred for now. */
|
2004-09-22 07:53:48 +00:00
|
|
|
|
switch (in_plugin->id) {
|
|
|
|
|
case CODEC_ID_MPEG4:
|
|
|
|
|
case CODEC_ID_MSMPEG4V3:
|
2005-06-03 13:44:04 +00:00
|
|
|
|
case CODEC_ID_H264:
|
2004-09-22 07:53:48 +00:00
|
|
|
|
rank = GST_RANK_PRIMARY;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
rank = GST_RANK_MARGINAL;
|
|
|
|
|
break;
|
2005-04-21 19:01:36 +00:00
|
|
|
|
case CODEC_ID_WMV3:
|
|
|
|
|
case CODEC_ID_VC9:
|
2005-11-14 16:00:38 +00:00
|
|
|
|
/* what's that? */
|
2005-02-03 11:12:34 +00:00
|
|
|
|
case CODEC_ID_SP5X:
|
|
|
|
|
rank = GST_RANK_NONE;
|
|
|
|
|
break;
|
2004-09-22 07:53:48 +00:00
|
|
|
|
}
|
|
|
|
|
if (!gst_element_register (plugin, type_name, rank, type)) {
|
ext/: Update to ffmpeg snapshot of Jul 20 2005 4:00 PM GMT. Mostly some added codecs, some API changes, etc. Also add...
Original commit message from CVS:
* ext/ffmpeg/gstffmpeg.h:
* ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
(gst_ffmpeg_caps_to_pixfmt), (gst_ffmpeg_formatid_get_codecids),
(gst_ffmpeg_caps_to_codecid), (gst_ffmpeg_get_codecid_longname),
(gst_ffmpeg_img_convert):
* ext/ffmpeg/gstffmpegcodecmap.h:
* ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_negotiate),
(gst_ffmpegdec_frame), (gst_ffmpegdec_chain),
(gst_ffmpegdec_register):
* ext/ffmpeg/gstffmpegdeinterlace.c:
(gst_ffmpegdeinterlace_getcaps), (gst_ffmpegdeinterlace_pad_link):
* ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_src_event),
(gst_ffmpegdemux_src_format_list), (gst_ffmpegdemux_src_query),
(gst_ffmpegdemux_src_convert), (gst_ffmpegdemux_add),
(gst_ffmpegdemux_register):
* ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_getcaps),
(gst_ffmpegenc_link), (gst_ffmpegenc_chain_video),
(gst_ffmpegenc_chain_audio):
* ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_request_new_pad),
(gst_ffmpegmux_connect), (gst_ffmpegmux_loop),
(gst_ffmpegmux_register):
* ext/ffmpeg/gstffmpegprotocol.c: (gst_ffmpegdata_write):
* ext/ffmpeg/gstffmpegscale.c: (gst_ffmpegscale_pad_link):
* ext/libpostproc/gstpostproc.c: (gst_postproc_chain):
Update to ffmpeg snapshot of Jul 20 2005 4:00 PM GMT. Mostly
some added codecs, some API changes, etc. Also adds a VOB muxer
for MPEG-2 video and adds h264 to .mp4 muxing.
2005-07-20 15:40:57 +00:00
|
|
|
|
g_warning ("Failed to register %s", type_name);
|
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;
|
|
|
|
|
}
|