mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 04:56:24 +00:00
We dont need these anymore, avidemux handles it all internally
Original commit message from CVS: We dont need these anymore, avidemux handles it all internally
This commit is contained in:
parent
bbe54084b8
commit
5aeb0b399f
4 changed files with 0 additions and 831 deletions
|
@ -1,369 +0,0 @@
|
||||||
/* Gnome-Streamer
|
|
||||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Library General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Library General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Library General Public
|
|
||||||
* License along with this library; if not, write to the
|
|
||||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
||||||
* Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*#define GST_DEBUG_ENABLED */
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#include "gstavidecoder.h"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* elementfactory information */
|
|
||||||
static GstElementDetails gst_avi_decoder_details = {
|
|
||||||
".avi decoder",
|
|
||||||
"Decoder/Video",
|
|
||||||
"Decodes a .avi file into audio and video",
|
|
||||||
VERSION,
|
|
||||||
"Erik Walthinsen <omega@cse.ogi.edu>\n"
|
|
||||||
"Wim Taymans <wim.taymans@tvd.be>",
|
|
||||||
"(C) 1999",
|
|
||||||
};
|
|
||||||
|
|
||||||
static GstCaps* avi_typefind (GstBuffer *buf, gpointer private);
|
|
||||||
|
|
||||||
/* typefactory for 'avi' */
|
|
||||||
static GstTypeDefinition avidefinition = {
|
|
||||||
"avidecoder_video/avi",
|
|
||||||
"video/avi",
|
|
||||||
".avi",
|
|
||||||
avi_typefind,
|
|
||||||
};
|
|
||||||
|
|
||||||
/* AviDecoder signals and args */
|
|
||||||
enum {
|
|
||||||
/* FILL ME */
|
|
||||||
LAST_SIGNAL
|
|
||||||
};
|
|
||||||
|
|
||||||
enum {
|
|
||||||
ARG_0,
|
|
||||||
ARG_BITRATE,
|
|
||||||
ARG_MEDIA_TIME,
|
|
||||||
ARG_CURRENT_TIME,
|
|
||||||
/* FILL ME */
|
|
||||||
};
|
|
||||||
|
|
||||||
GST_PADTEMPLATE_FACTORY (sink_templ,
|
|
||||||
"sink",
|
|
||||||
GST_PAD_SINK,
|
|
||||||
GST_PAD_ALWAYS,
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"avidecoder_sink",
|
|
||||||
"video/avi",
|
|
||||||
"RIFF", GST_PROPS_STRING ("AVI")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
GST_PADTEMPLATE_FACTORY (src_video_templ,
|
|
||||||
"video_src",
|
|
||||||
GST_PAD_SRC,
|
|
||||||
GST_PAD_ALWAYS,
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"wincodec_src",
|
|
||||||
"video/raw",
|
|
||||||
"format", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_FOURCC (GST_MAKE_FOURCC ('Y','U','Y','2')),
|
|
||||||
GST_PROPS_FOURCC (GST_MAKE_FOURCC ('I','4','2','0')),
|
|
||||||
GST_PROPS_FOURCC (GST_MAKE_FOURCC ('R','G','B',' '))
|
|
||||||
),
|
|
||||||
"width", GST_PROPS_INT_RANGE (16, 4096),
|
|
||||||
"height", GST_PROPS_INT_RANGE (16, 4096)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
GST_PADTEMPLATE_FACTORY (src_audio_templ,
|
|
||||||
"audio_src",
|
|
||||||
GST_PAD_SRC,
|
|
||||||
GST_PAD_ALWAYS,
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"src_audio",
|
|
||||||
"audio/raw",
|
|
||||||
"format", GST_PROPS_STRING ("int"),
|
|
||||||
"law", GST_PROPS_INT (0),
|
|
||||||
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
||||||
"signed", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_BOOLEAN (TRUE),
|
|
||||||
GST_PROPS_BOOLEAN (FALSE)
|
|
||||||
),
|
|
||||||
"width", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_INT (8),
|
|
||||||
GST_PROPS_INT (16)
|
|
||||||
),
|
|
||||||
"depth", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_INT (8),
|
|
||||||
GST_PROPS_INT (16)
|
|
||||||
),
|
|
||||||
"rate", GST_PROPS_INT_RANGE (11025, 48000),
|
|
||||||
"channels", GST_PROPS_INT_RANGE (1, 2)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
static void gst_avi_decoder_class_init (GstAviDecoderClass *klass);
|
|
||||||
static void gst_avi_decoder_init (GstAviDecoder *avi_decoder);
|
|
||||||
|
|
||||||
static void gst_avi_decoder_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static GstElementClass *parent_class = NULL;
|
|
||||||
/*static guint gst_avi_decoder_signals[LAST_SIGNAL] = { 0 }; */
|
|
||||||
|
|
||||||
GType
|
|
||||||
gst_avi_decoder_get_type(void)
|
|
||||||
{
|
|
||||||
static GType avi_decoder_type = 0;
|
|
||||||
|
|
||||||
if (!avi_decoder_type) {
|
|
||||||
static const GTypeInfo avi_decoder_info = {
|
|
||||||
sizeof(GstAviDecoderClass),
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
(GClassInitFunc)gst_avi_decoder_class_init,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
sizeof(GstAviDecoder),
|
|
||||||
0,
|
|
||||||
(GInstanceInitFunc)gst_avi_decoder_init,
|
|
||||||
};
|
|
||||||
avi_decoder_type = g_type_register_static(GST_TYPE_BIN, "GstAviDecoder", &avi_decoder_info, 0);
|
|
||||||
}
|
|
||||||
return avi_decoder_type;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_decoder_class_init (GstAviDecoderClass *klass)
|
|
||||||
{
|
|
||||||
GObjectClass *gobject_class;
|
|
||||||
GstElementClass *gstelement_class;
|
|
||||||
|
|
||||||
gobject_class = (GObjectClass*)klass;
|
|
||||||
gstelement_class = (GstElementClass*)klass;
|
|
||||||
|
|
||||||
g_object_class_install_property (G_OBJECT_CLASS(klass), ARG_BITRATE,
|
|
||||||
g_param_spec_long ("bitrate","bitrate","bitrate",
|
|
||||||
G_MINLONG, G_MAXLONG, 0, G_PARAM_READABLE)); /* CHECKME */
|
|
||||||
g_object_class_install_property (G_OBJECT_CLASS(klass), ARG_MEDIA_TIME,
|
|
||||||
g_param_spec_long ("media_time","media_time","media_time",
|
|
||||||
G_MINLONG, G_MAXLONG, 0, G_PARAM_READABLE)); /* CHECKME */
|
|
||||||
g_object_class_install_property (G_OBJECT_CLASS(klass), ARG_CURRENT_TIME,
|
|
||||||
g_param_spec_long ("current_time","current_time","current_time",
|
|
||||||
G_MINLONG, G_MAXLONG, 0, G_PARAM_READABLE)); /* CHECKME */
|
|
||||||
|
|
||||||
parent_class = g_type_class_ref (GST_TYPE_BIN);
|
|
||||||
|
|
||||||
gobject_class->get_property = gst_avi_decoder_get_property;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_decoder_new_pad (GstElement *element, GstPad *pad, GstAviDecoder *avi_decoder)
|
|
||||||
{
|
|
||||||
GstCaps *caps;
|
|
||||||
GstCaps *targetcaps = NULL;
|
|
||||||
const gchar *format;
|
|
||||||
gboolean type_found;
|
|
||||||
GstElement *type;
|
|
||||||
GstElement *new_element = NULL;
|
|
||||||
gchar *padname = NULL;
|
|
||||||
gchar *gpadname = NULL;
|
|
||||||
#define AVI_TYPE_VIDEO 1
|
|
||||||
#define AVI_TYPE_AUDIO 2
|
|
||||||
gint media_type = 0;
|
|
||||||
|
|
||||||
GST_DEBUG (0, "avidecoder: new pad for element \"%s\"\n", gst_element_get_name (element));
|
|
||||||
|
|
||||||
caps = gst_pad_get_caps (pad);
|
|
||||||
format = gst_caps_get_string (caps, "format");
|
|
||||||
|
|
||||||
if (!strcmp (format, "strf_vids")) {
|
|
||||||
targetcaps = gst_padtemplate_get_caps (GST_PADTEMPLATE_GET (src_video_templ));
|
|
||||||
media_type = AVI_TYPE_VIDEO;
|
|
||||||
gpadname = g_strdup_printf ("video_%02d", avi_decoder->video_count++);
|
|
||||||
}
|
|
||||||
else if (!strcmp (format, "strf_auds")) {
|
|
||||||
targetcaps = gst_padtemplate_get_caps (GST_PADTEMPLATE_GET (src_audio_templ));
|
|
||||||
media_type = AVI_TYPE_AUDIO;
|
|
||||||
gpadname = g_strdup_printf ("audio_%02d", avi_decoder->audio_count++);
|
|
||||||
}
|
|
||||||
else if (!strcmp (format, "strf_iavs")) {
|
|
||||||
targetcaps = gst_padtemplate_get_caps (GST_PADTEMPLATE_GET (src_video_templ));
|
|
||||||
media_type = AVI_TYPE_VIDEO;
|
|
||||||
gpadname = g_strdup_printf ("video_%02d", avi_decoder->video_count++);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
g_assert_not_reached ();
|
|
||||||
}
|
|
||||||
|
|
||||||
gst_element_set_state (GST_ELEMENT (avi_decoder), GST_STATE_PAUSED);
|
|
||||||
|
|
||||||
type = gst_elementfactory_make ("avitypes",
|
|
||||||
g_strdup_printf ("typeconvert%d", avi_decoder->count));
|
|
||||||
|
|
||||||
gst_element_set_state (type, GST_STATE_READY);
|
|
||||||
|
|
||||||
gst_pad_connect (pad, gst_element_get_pad (type, "sink"));
|
|
||||||
type_found = gst_util_get_bool_arg (G_OBJECT (type), "type_found");
|
|
||||||
|
|
||||||
if (type_found) {
|
|
||||||
|
|
||||||
gst_bin_add (GST_BIN (avi_decoder), type);
|
|
||||||
|
|
||||||
pad = gst_element_get_pad (type, "src");
|
|
||||||
caps = gst_pad_get_caps (pad);
|
|
||||||
|
|
||||||
if (gst_caps_check_compatibility (caps, targetcaps)) {
|
|
||||||
gst_element_add_ghost_pad (GST_ELEMENT (avi_decoder),
|
|
||||||
gst_element_get_pad (type, "src"), gpadname);
|
|
||||||
|
|
||||||
avi_decoder->count++;
|
|
||||||
goto done;
|
|
||||||
}
|
|
||||||
#ifndef GST_DISABLE_AUTOPLUG
|
|
||||||
else {
|
|
||||||
GstAutoplug *autoplug;
|
|
||||||
autoplug = gst_autoplugfactory_make("static");
|
|
||||||
|
|
||||||
new_element = gst_autoplug_to_caps (autoplug, caps, targetcaps, NULL);
|
|
||||||
|
|
||||||
padname = "src_00";
|
|
||||||
}
|
|
||||||
#endif /* GST_DISABLE_AUTOPLUG */
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!new_element && (media_type == AVI_TYPE_VIDEO)) {
|
|
||||||
padname = "src";
|
|
||||||
}
|
|
||||||
else if (!new_element && (media_type == AVI_TYPE_AUDIO)) {
|
|
||||||
/*FIXME */
|
|
||||||
padname = "src";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (new_element) {
|
|
||||||
gst_pad_connect (pad, gst_element_get_pad (new_element, "sink"));
|
|
||||||
gst_element_set_name (new_element, g_strdup_printf ("element%d", avi_decoder->count));
|
|
||||||
gst_bin_add (GST_BIN (avi_decoder), new_element);
|
|
||||||
|
|
||||||
gst_element_add_ghost_pad (GST_ELEMENT (avi_decoder),
|
|
||||||
gst_element_get_pad (new_element, padname), gpadname);
|
|
||||||
|
|
||||||
avi_decoder->count++;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
g_warning ("avidecoder: could not autoplug\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
done:
|
|
||||||
gst_element_set_state (GST_ELEMENT (avi_decoder), GST_STATE_PLAYING);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_decoder_init (GstAviDecoder *avi_decoder)
|
|
||||||
{
|
|
||||||
avi_decoder->demuxer = gst_elementfactory_make ("avidemux", "demux");
|
|
||||||
|
|
||||||
if (avi_decoder->demuxer) {
|
|
||||||
gst_bin_add (GST_BIN (avi_decoder), avi_decoder->demuxer);
|
|
||||||
|
|
||||||
gst_element_add_ghost_pad (GST_ELEMENT (avi_decoder),
|
|
||||||
gst_element_get_pad (avi_decoder->demuxer, "sink"), "sink");
|
|
||||||
|
|
||||||
g_signal_connect (G_OBJECT (avi_decoder->demuxer),"new_pad", G_CALLBACK (gst_avi_decoder_new_pad),
|
|
||||||
avi_decoder);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
g_warning ("wow!, no avi demuxer found. help me\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
avi_decoder->count = 0;
|
|
||||||
avi_decoder->audio_count = 0;
|
|
||||||
avi_decoder->video_count = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static GstCaps*
|
|
||||||
avi_typefind (GstBuffer *buf,
|
|
||||||
gpointer private)
|
|
||||||
{
|
|
||||||
gchar *data = GST_BUFFER_DATA (buf);
|
|
||||||
GstCaps *new;
|
|
||||||
|
|
||||||
GST_DEBUG (0,"avi_decoder: typefind\n");
|
|
||||||
if (strncmp (&data[0], "RIFF", 4)) return NULL;
|
|
||||||
if (strncmp (&data[8], "AVI ", 4)) return NULL;
|
|
||||||
|
|
||||||
new = GST_CAPS_NEW ("avi_typefind",
|
|
||||||
"video/avi",
|
|
||||||
"RIFF", GST_PROPS_STRING ("AVI"));
|
|
||||||
|
|
||||||
return new;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_decoder_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
|
||||||
{
|
|
||||||
GstAviDecoder *src;
|
|
||||||
|
|
||||||
g_return_if_fail (GST_IS_AVI_DECODER (object));
|
|
||||||
|
|
||||||
src = GST_AVI_DECODER (object);
|
|
||||||
|
|
||||||
switch(prop_id) {
|
|
||||||
case ARG_BITRATE:
|
|
||||||
break;
|
|
||||||
case ARG_MEDIA_TIME:
|
|
||||||
g_value_set_long (value, gst_util_get_long_arg (G_OBJECT (src->demuxer), "media_time"));
|
|
||||||
break;
|
|
||||||
case ARG_CURRENT_TIME:
|
|
||||||
g_value_set_long (value, gst_util_get_long_arg (G_OBJECT (src->demuxer), "current_time"));
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static gboolean
|
|
||||||
plugin_init (GModule *module, GstPlugin *plugin)
|
|
||||||
{
|
|
||||||
GstElementFactory *factory;
|
|
||||||
GstTypeFactory *type;
|
|
||||||
|
|
||||||
/* create an elementfactory for the avi_decoder element */
|
|
||||||
factory = gst_elementfactory_new ("avidecoder", GST_TYPE_AVI_DECODER,
|
|
||||||
&gst_avi_decoder_details);
|
|
||||||
g_return_val_if_fail (factory != NULL, FALSE);
|
|
||||||
|
|
||||||
gst_elementfactory_add_padtemplate (factory, GST_PADTEMPLATE_GET (src_audio_templ));
|
|
||||||
gst_elementfactory_add_padtemplate (factory, GST_PADTEMPLATE_GET (src_video_templ));
|
|
||||||
gst_elementfactory_add_padtemplate (factory, GST_PADTEMPLATE_GET (sink_templ));
|
|
||||||
|
|
||||||
type = gst_typefactory_new (&avidefinition);
|
|
||||||
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (type));
|
|
||||||
|
|
||||||
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
GstPluginDesc plugin_desc = {
|
|
||||||
GST_VERSION_MAJOR,
|
|
||||||
GST_VERSION_MINOR,
|
|
||||||
"avidecoder",
|
|
||||||
plugin_init
|
|
||||||
};
|
|
||||||
|
|
|
@ -1,69 +0,0 @@
|
||||||
/* Gnome-Streamer
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __GST_AVI_DECODER_H__
|
|
||||||
#define __GST_AVI_DECODER_H__
|
|
||||||
|
|
||||||
|
|
||||||
#include <config.h>
|
|
||||||
#include <gst/gst.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
#define GST_TYPE_AVI_DECODER \
|
|
||||||
(gst_avi_decoder_get_type())
|
|
||||||
#define GST_AVI_DECODER(obj) \
|
|
||||||
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AVI_DECODER,GstAviDecoder))
|
|
||||||
#define GST_AVI_DECODER_CLASS(klass) \
|
|
||||||
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AVI_DECODER,GstAviDecoder))
|
|
||||||
#define GST_IS_AVI_DECODER(obj) \
|
|
||||||
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AVI_DECODER))
|
|
||||||
#define GST_IS_AVI_DECODER_CLASS(obj) \
|
|
||||||
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AVI_DECODER))
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct _GstAviDecoder GstAviDecoder;
|
|
||||||
typedef struct _GstAviDecoderClass GstAviDecoderClass;
|
|
||||||
|
|
||||||
struct _GstAviDecoder {
|
|
||||||
GstBin element;
|
|
||||||
|
|
||||||
GstElement *demuxer;
|
|
||||||
|
|
||||||
gint audio_count;
|
|
||||||
gint video_count;
|
|
||||||
gint count;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _GstAviDecoderClass {
|
|
||||||
GstBinClass parent_class;
|
|
||||||
};
|
|
||||||
|
|
||||||
GType gst_avi_decoder_get_type (void);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* __GST_AVI_DECODER_H__ */
|
|
|
@ -1,328 +0,0 @@
|
||||||
/* Gnome-Streamer
|
|
||||||
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
||||||
*
|
|
||||||
* This library is free software; you can redistribute it and/or
|
|
||||||
* modify it under the terms of the GNU Library General Public
|
|
||||||
* License as published by the Free Software Foundation; either
|
|
||||||
* version 2 of the License, or (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This library is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Library General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU Library General Public
|
|
||||||
* License along with this library; if not, write to the
|
|
||||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
||||||
* Boston, MA 02111-1307, USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/*#define GST_DEBUG_ENABLED */
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#include "gstavitypes.h"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* elementfactory information */
|
|
||||||
static GstElementDetails gst_avi_types_details = {
|
|
||||||
"avi type converter",
|
|
||||||
"Decoder/Video",
|
|
||||||
"Converts avi types into gstreamer types",
|
|
||||||
VERSION,
|
|
||||||
"Wim Taymans <wim.taymans@tvd.be>",
|
|
||||||
"(C) 1999",
|
|
||||||
};
|
|
||||||
|
|
||||||
/* AviTypes signals and args */
|
|
||||||
enum {
|
|
||||||
/* FILL ME */
|
|
||||||
LAST_SIGNAL
|
|
||||||
};
|
|
||||||
|
|
||||||
enum {
|
|
||||||
ARG_0,
|
|
||||||
ARG_TYPE_FOUND,
|
|
||||||
/* FILL ME */
|
|
||||||
};
|
|
||||||
|
|
||||||
GST_PADTEMPLATE_FACTORY (sink_templ,
|
|
||||||
"sink",
|
|
||||||
GST_PAD_SINK,
|
|
||||||
GST_PAD_ALWAYS,
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"avitypes_sink",
|
|
||||||
"video/avi",
|
|
||||||
"format", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_STRING ("strf_vids"),
|
|
||||||
GST_PROPS_STRING ("strf_auds"),
|
|
||||||
GST_PROPS_STRING ("strf_iavs")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
GST_PADTEMPLATE_FACTORY (src_templ,
|
|
||||||
"video_src",
|
|
||||||
GST_PAD_SRC,
|
|
||||||
GST_PAD_ALWAYS,
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"avitypes_src",
|
|
||||||
"video/raw",
|
|
||||||
"format", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_FOURCC (GST_MAKE_FOURCC ('Y','U','Y','2')),
|
|
||||||
GST_PROPS_FOURCC (GST_MAKE_FOURCC ('R','G','B',' '))
|
|
||||||
),
|
|
||||||
"width", GST_PROPS_INT_RANGE (16, 4096),
|
|
||||||
"height", GST_PROPS_INT_RANGE (16, 4096)
|
|
||||||
),
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"avitypes_src",
|
|
||||||
"video/avi",
|
|
||||||
"format", GST_PROPS_STRING ("strf_vids")
|
|
||||||
),
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"src_audio",
|
|
||||||
"audio/raw",
|
|
||||||
"format", GST_PROPS_STRING ("int"),
|
|
||||||
"law", GST_PROPS_INT (0),
|
|
||||||
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
||||||
"signed", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_BOOLEAN (TRUE),
|
|
||||||
GST_PROPS_BOOLEAN (FALSE)
|
|
||||||
),
|
|
||||||
"width", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_INT (8),
|
|
||||||
GST_PROPS_INT (16)
|
|
||||||
),
|
|
||||||
"depth", GST_PROPS_LIST (
|
|
||||||
GST_PROPS_INT (8),
|
|
||||||
GST_PROPS_INT (16)
|
|
||||||
),
|
|
||||||
"rate", GST_PROPS_INT_RANGE (11025, 44100),
|
|
||||||
"channels", GST_PROPS_INT_RANGE (1, 2)
|
|
||||||
),
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"src_audio",
|
|
||||||
"audio/mp3",
|
|
||||||
NULL
|
|
||||||
),
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"src_video",
|
|
||||||
"video/jpeg",
|
|
||||||
NULL
|
|
||||||
),
|
|
||||||
GST_CAPS_NEW (
|
|
||||||
"src_dv",
|
|
||||||
"video/dv",
|
|
||||||
NULL
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
static void gst_avi_types_class_init (GstAviTypesClass *klass);
|
|
||||||
static void gst_avi_types_init (GstAviTypes *avi_types);
|
|
||||||
|
|
||||||
static void gst_avi_types_chain (GstPad *pad, GstBuffer *buffer);
|
|
||||||
|
|
||||||
static void gst_avi_types_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
|
|
||||||
|
|
||||||
|
|
||||||
static GstElementClass *parent_class = NULL;
|
|
||||||
/*static guint gst_avi_types_signals[LAST_SIGNAL] = { 0 }; */
|
|
||||||
|
|
||||||
GType
|
|
||||||
gst_avi_types_get_type(void)
|
|
||||||
{
|
|
||||||
static GType avi_types_type = 0;
|
|
||||||
|
|
||||||
if (!avi_types_type) {
|
|
||||||
static const GTypeInfo avi_types_info = {
|
|
||||||
sizeof(GstAviTypesClass),
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
(GClassInitFunc)gst_avi_types_class_init,
|
|
||||||
NULL,
|
|
||||||
NULL,
|
|
||||||
sizeof(GstAviTypes),
|
|
||||||
0,
|
|
||||||
(GInstanceInitFunc)gst_avi_types_init,
|
|
||||||
};
|
|
||||||
avi_types_type = g_type_register_static(GST_TYPE_ELEMENT, "GstAviTypes", &avi_types_info, 0);
|
|
||||||
}
|
|
||||||
return avi_types_type;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_types_class_init (GstAviTypesClass *klass)
|
|
||||||
{
|
|
||||||
GObjectClass *gobject_class;
|
|
||||||
GstElementClass *gstelement_class;
|
|
||||||
|
|
||||||
gobject_class = (GObjectClass*)klass;
|
|
||||||
gstelement_class = (GstElementClass*)klass;
|
|
||||||
|
|
||||||
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
|
||||||
|
|
||||||
g_object_class_install_property(G_OBJECT_CLASS(klass), ARG_TYPE_FOUND,
|
|
||||||
g_param_spec_boolean ("type_found","type_found","type_found",
|
|
||||||
FALSE, G_PARAM_READABLE));
|
|
||||||
|
|
||||||
gobject_class->get_property = gst_avi_types_get_property;
|
|
||||||
}
|
|
||||||
|
|
||||||
static GstPadConnectReturn
|
|
||||||
gst_avi_types_sinkconnect (GstPad *pad, GstCaps *caps)
|
|
||||||
{
|
|
||||||
GstAviTypes *avi_types;
|
|
||||||
const gchar *format;
|
|
||||||
GstCaps *newcaps = NULL;
|
|
||||||
|
|
||||||
avi_types = GST_AVI_TYPES (gst_pad_get_parent (pad));
|
|
||||||
|
|
||||||
format = gst_caps_get_string (caps, "format");
|
|
||||||
|
|
||||||
if (!strcmp (format, "strf_vids")) {
|
|
||||||
gulong video_format = gst_caps_get_fourcc_int (caps, "compression");
|
|
||||||
|
|
||||||
switch (video_format) {
|
|
||||||
case GST_MAKE_FOURCC ('M','J','P','G'):
|
|
||||||
newcaps = gst_caps_new ("avi_type_mjpg",
|
|
||||||
"video/jpeg", NULL);
|
|
||||||
break;
|
|
||||||
case GST_MAKE_FOURCC ('d','v','s','d'):
|
|
||||||
newcaps = gst_caps_new ("avi_type_dv",
|
|
||||||
"video/dv",
|
|
||||||
gst_props_new (
|
|
||||||
"format", GST_PROPS_STRING ("NTSC"),
|
|
||||||
NULL));
|
|
||||||
default:
|
|
||||||
/* else we simply don't convert, and hope there is a native decoder
|
|
||||||
* available */
|
|
||||||
newcaps = caps;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (!strcmp (format, "strf_auds")) {
|
|
||||||
gint16 audio_format = gst_caps_get_int (caps, "fmt");
|
|
||||||
gint blockalign = gst_caps_get_int (caps, "blockalign");
|
|
||||||
gint size = gst_caps_get_int (caps, "size");
|
|
||||||
gint channels = gst_caps_get_int (caps, "channels");
|
|
||||||
gint rate = gst_caps_get_int (caps, "rate");
|
|
||||||
gboolean sign = (size == 8 ? FALSE : TRUE);
|
|
||||||
|
|
||||||
GST_DEBUG (GST_CAT_PLUGIN_INFO, "avitypes: new caps with audio format:%04x\n", audio_format);
|
|
||||||
|
|
||||||
switch (audio_format) {
|
|
||||||
case 0x0001:
|
|
||||||
newcaps = gst_caps_new ("avi_type_pcm",
|
|
||||||
"audio/raw",
|
|
||||||
gst_props_new (
|
|
||||||
"format", GST_PROPS_STRING ("int"),
|
|
||||||
"law", GST_PROPS_INT (0),
|
|
||||||
"endianness", GST_PROPS_INT (G_BYTE_ORDER),
|
|
||||||
"signed", GST_PROPS_BOOLEAN (sign),
|
|
||||||
"width", GST_PROPS_INT ((blockalign*8)/channels),
|
|
||||||
"depth", GST_PROPS_INT (size),
|
|
||||||
"rate", GST_PROPS_INT (rate),
|
|
||||||
"channels", GST_PROPS_INT (channels),
|
|
||||||
NULL
|
|
||||||
));
|
|
||||||
break;
|
|
||||||
case 0x0050:
|
|
||||||
case 0x0055:
|
|
||||||
newcaps = gst_caps_new ("avi_type_mp3",
|
|
||||||
"audio/mp3", NULL);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (!strcmp (format, "strf_iavs")) {
|
|
||||||
newcaps = gst_caps_new ("avi_type_dv",
|
|
||||||
"video/dv",
|
|
||||||
gst_props_new (
|
|
||||||
"format", GST_PROPS_STRING ("NTSC"),
|
|
||||||
NULL));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (newcaps) {
|
|
||||||
gst_pad_try_set_caps (avi_types->srcpad, newcaps);
|
|
||||||
avi_types->type_found = TRUE;
|
|
||||||
return GST_PAD_CONNECT_OK;
|
|
||||||
}
|
|
||||||
return GST_PAD_CONNECT_REFUSED;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_types_init (GstAviTypes *avi_types)
|
|
||||||
{
|
|
||||||
avi_types->sinkpad = gst_pad_new_from_template (
|
|
||||||
GST_PADTEMPLATE_GET (sink_templ), "sink");
|
|
||||||
gst_element_add_pad (GST_ELEMENT (avi_types), avi_types->sinkpad);
|
|
||||||
gst_pad_set_connect_function (avi_types->sinkpad, gst_avi_types_sinkconnect);
|
|
||||||
gst_pad_set_chain_function (avi_types->sinkpad, gst_avi_types_chain);
|
|
||||||
|
|
||||||
avi_types->srcpad = gst_pad_new_from_template (
|
|
||||||
GST_PADTEMPLATE_GET (src_templ), "src");
|
|
||||||
gst_element_add_pad (GST_ELEMENT (avi_types), avi_types->srcpad);
|
|
||||||
|
|
||||||
avi_types->type_found = FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_types_chain (GstPad *pad, GstBuffer *buffer)
|
|
||||||
{
|
|
||||||
GstAviTypes *avi_types;
|
|
||||||
|
|
||||||
avi_types = GST_AVI_TYPES (gst_pad_get_parent (pad));
|
|
||||||
|
|
||||||
if (GST_PAD_IS_CONNECTED (avi_types->srcpad))
|
|
||||||
gst_pad_push (avi_types->srcpad, buffer);
|
|
||||||
else
|
|
||||||
gst_buffer_unref (buffer);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
gst_avi_types_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
|
|
||||||
{
|
|
||||||
GstAviTypes *src;
|
|
||||||
|
|
||||||
/* it's not null if we got it, but it might not be ours */
|
|
||||||
g_return_if_fail (GST_IS_AVI_TYPES (object));
|
|
||||||
|
|
||||||
src = GST_AVI_TYPES (object);
|
|
||||||
|
|
||||||
switch (prop_id) {
|
|
||||||
case ARG_TYPE_FOUND:
|
|
||||||
g_value_set_boolean (value, src->type_found);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static gboolean
|
|
||||||
plugin_init (GModule *module, GstPlugin *plugin)
|
|
||||||
{
|
|
||||||
GstElementFactory *factory;
|
|
||||||
|
|
||||||
/* create an elementfactory for the avi_types element */
|
|
||||||
factory = gst_elementfactory_new ("avitypes",GST_TYPE_AVI_TYPES,
|
|
||||||
&gst_avi_types_details);
|
|
||||||
g_return_val_if_fail (factory != NULL, FALSE);
|
|
||||||
|
|
||||||
/*gst_elementfactory_add_padtemplate (factory, GST_PADTEMPLATE_GET (src_templ)); */
|
|
||||||
gst_elementfactory_add_padtemplate (factory, GST_PADTEMPLATE_GET (sink_templ));
|
|
||||||
|
|
||||||
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (factory));
|
|
||||||
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
|
|
||||||
GstPluginDesc plugin_desc = {
|
|
||||||
GST_VERSION_MAJOR,
|
|
||||||
GST_VERSION_MINOR,
|
|
||||||
"avitypes",
|
|
||||||
plugin_init
|
|
||||||
};
|
|
||||||
|
|
|
@ -1,65 +0,0 @@
|
||||||
/* Gnome-Streamer
|
|
||||||
* 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.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef __GST_AVI_TYPES_H__
|
|
||||||
#define __GST_AVI_TYPES_H__
|
|
||||||
|
|
||||||
|
|
||||||
#include <config.h>
|
|
||||||
#include <gst/gst.h>
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
#define GST_TYPE_AVI_TYPES \
|
|
||||||
(gst_avi_types_get_type())
|
|
||||||
#define GST_AVI_TYPES(obj) \
|
|
||||||
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AVI_TYPES,GstAviTypes))
|
|
||||||
#define GST_AVI_TYPES_CLASS(klass) \
|
|
||||||
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AVI_TYPES,GstAviTypes))
|
|
||||||
#define GST_IS_AVI_TYPES(obj) \
|
|
||||||
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AVI_TYPES))
|
|
||||||
#define GST_IS_AVI_TYPES_CLASS(obj) \
|
|
||||||
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AVI_TYPES))
|
|
||||||
|
|
||||||
typedef struct _GstAviTypes GstAviTypes;
|
|
||||||
typedef struct _GstAviTypesClass GstAviTypesClass;
|
|
||||||
|
|
||||||
struct _GstAviTypes {
|
|
||||||
GstElement element;
|
|
||||||
|
|
||||||
GstPad *srcpad, *sinkpad;
|
|
||||||
|
|
||||||
gboolean type_found;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct _GstAviTypesClass {
|
|
||||||
GstElementClass parent_class;
|
|
||||||
};
|
|
||||||
|
|
||||||
GType gst_avi_types_get_type (void);
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif /* __cplusplus */
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* __GST_AVI_TYPES_H__ */
|
|
Loading…
Reference in a new issue