2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-23 14:15:30 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "gstflacenc.h"
|
|
|
|
#include "gstflacdec.h"
|
|
|
|
|
|
|
|
extern GstElementDetails flacenc_details;
|
|
|
|
extern GstElementDetails flacdec_details;
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
static GstCaps* flac_type_find (GstBuffer *buf, gpointer private);
|
2001-12-23 14:15:30 +00:00
|
|
|
|
2002-07-28 19:48:26 +00:00
|
|
|
GstPadTemplate *gst_flacdec_src_template, *gst_flacdec_sink_template;
|
|
|
|
GstPadTemplate *gst_flacenc_src_template, *gst_flacenc_sink_template;
|
2001-12-23 14:15:30 +00:00
|
|
|
|
|
|
|
static GstCaps*
|
|
|
|
flac_caps_factory (void)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
gst_caps_new (
|
|
|
|
"flac_flac",
|
|
|
|
"audio/x-flac",
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps*
|
|
|
|
raw_caps_factory (void)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
gst_caps_new (
|
|
|
|
"flac_raw",
|
|
|
|
"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 (TRUE),
|
|
|
|
"width", GST_PROPS_INT (16),
|
|
|
|
"depth", GST_PROPS_INT (16),
|
|
|
|
"rate", GST_PROPS_INT_RANGE (11025, 48000),
|
|
|
|
"channels", GST_PROPS_INT_RANGE (1, 2),
|
|
|
|
NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstTypeDefinition flacdefinition = {
|
|
|
|
"flac_audio/x-flac",
|
|
|
|
"audio/x-flac",
|
|
|
|
".flac",
|
2002-04-11 20:42:25 +00:00
|
|
|
flac_type_find,
|
2001-12-23 14:15:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static GstCaps*
|
2002-04-11 20:42:25 +00:00
|
|
|
flac_type_find (GstBuffer *buf, gpointer private)
|
2001-12-23 14:15:30 +00:00
|
|
|
{
|
|
|
|
gulong head = GULONG_FROM_BE (*((gulong *)GST_BUFFER_DATA (buf)));
|
|
|
|
|
|
|
|
if (head != 0x664C6143)
|
|
|
|
return NULL;
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
return gst_caps_new ("flac_type_find", "audio/x-flac", NULL);
|
2001-12-23 14:15:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GModule *module, GstPlugin *plugin)
|
|
|
|
{
|
|
|
|
GstElementFactory *enc, *dec;
|
|
|
|
GstTypeFactory *type;
|
|
|
|
GstCaps *raw_caps, *flac_caps;
|
|
|
|
|
2002-06-07 20:09:05 +00:00
|
|
|
/* this filter needs the bytestream package */
|
|
|
|
if (!gst_library_load ("gstbytestream")) {
|
|
|
|
gst_info ("vorbis:: could not load support library: 'gstbytestream'\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-12-23 14:15:30 +00:00
|
|
|
gst_plugin_set_longname (plugin, "The FLAC Lossless compressor Codec");
|
|
|
|
|
|
|
|
/* create an elementfactory for the flacenc element */
|
2002-04-11 20:42:25 +00:00
|
|
|
enc = gst_element_factory_new ("flacenc", GST_TYPE_FLACENC,
|
2001-12-23 14:15:30 +00:00
|
|
|
&flacenc_details);
|
|
|
|
g_return_val_if_fail (enc != NULL, FALSE);
|
|
|
|
|
|
|
|
raw_caps = raw_caps_factory ();
|
|
|
|
flac_caps = flac_caps_factory ();
|
|
|
|
|
|
|
|
/* register sink pads */
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_flacenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
2001-12-23 14:15:30 +00:00
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
raw_caps, NULL);
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_element_factory_add_pad_template (enc, gst_flacenc_sink_template);
|
2001-12-23 14:15:30 +00:00
|
|
|
|
|
|
|
/* register src pads */
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_flacenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
2001-12-23 14:15:30 +00:00
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
flac_caps, NULL);
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_element_factory_add_pad_template (enc, gst_flacenc_src_template);
|
2001-12-23 14:15:30 +00:00
|
|
|
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (enc));
|
|
|
|
|
|
|
|
/* create an elementfactory for the flacdec element */
|
2002-04-11 20:42:25 +00:00
|
|
|
dec = gst_element_factory_new("flacdec",GST_TYPE_FLACDEC,
|
2001-12-23 14:15:30 +00:00
|
|
|
&flacdec_details);
|
|
|
|
g_return_val_if_fail(dec != NULL, FALSE);
|
2002-05-31 08:24:31 +00:00
|
|
|
gst_element_factory_set_rank (dec, GST_ELEMENT_RANK_PRIMARY);
|
2001-12-23 14:15:30 +00:00
|
|
|
|
|
|
|
/* register sink pads */
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_flacdec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK,
|
2001-12-23 14:15:30 +00:00
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
flac_caps, NULL);
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_element_factory_add_pad_template (dec, gst_flacdec_sink_template);
|
2001-12-23 14:15:30 +00:00
|
|
|
|
|
|
|
/* register src pads */
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_flacdec_src_template = gst_pad_template_new ("src", GST_PAD_SRC,
|
2001-12-23 14:15:30 +00:00
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
raw_caps, NULL);
|
2002-07-28 19:48:26 +00:00
|
|
|
gst_element_factory_add_pad_template (dec, gst_flacdec_src_template);
|
2001-12-23 14:15:30 +00:00
|
|
|
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (dec));
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
type = gst_type_factory_new (&flacdefinition);
|
2001-12-23 14:15:30 +00:00
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (type));
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstPluginDesc plugin_desc = {
|
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"flac",
|
|
|
|
plugin_init
|
|
|
|
};
|