2003-07-29 17:46:14 +00:00
|
|
|
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2 -*- */
|
2002-10-21 17:06:53 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2002> Iain Holmes <iain@prettypeople.org>
|
2002-10-22 11:52:18 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2002-10-21 17:06:53 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2002-10-21 17:06:53 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <gstwavenc.h>
|
2003-10-29 23:48:13 +00:00
|
|
|
#include <riff.h>
|
2002-10-21 17:06:53 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static void gst_wavenc_base_init (gpointer g_class);
|
|
|
|
static void gst_wavenc_class_init (GstWavEncClass * klass);
|
|
|
|
static void gst_wavenc_init (GstWavEnc * wavenc);
|
|
|
|
static void gst_wavenc_chain (GstPad * pad, GstData * _data);
|
2002-10-21 17:06:53 +00:00
|
|
|
|
|
|
|
#define WAVE_FORMAT_PCM 0x0001
|
|
|
|
|
|
|
|
#define WRITE_U32(buf, x) *(buf) = (unsigned char) (x&0xff);\
|
|
|
|
*((buf)+1) = (unsigned char)((x>>8)&0xff);\
|
|
|
|
*((buf)+2) = (unsigned char)((x>>16)&0xff);\
|
|
|
|
*((buf)+3) = (unsigned char)((x>>24)&0xff);
|
|
|
|
|
|
|
|
#define WRITE_U16(buf, x) *(buf) = (unsigned char) (x&0xff);\
|
|
|
|
*((buf)+1) = (unsigned char)((x>>8)&0xff);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct riff_struct
|
|
|
|
{
|
2004-03-15 19:32:27 +00:00
|
|
|
guint8 id[4]; /* RIFF */
|
2004-03-14 22:34:33 +00:00
|
|
|
guint32 len;
|
2004-03-15 19:32:27 +00:00
|
|
|
guint8 wav_id[4]; /* WAVE */
|
2002-10-21 17:06:53 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct chunk_struct
|
|
|
|
{
|
|
|
|
guint8 id[4];
|
|
|
|
guint32 len;
|
2002-10-21 17:06:53 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct common_struct
|
|
|
|
{
|
|
|
|
guint16 wFormatTag;
|
|
|
|
guint16 wChannels;
|
|
|
|
guint32 dwSamplesPerSec;
|
|
|
|
guint32 dwAvgBytesPerSec;
|
|
|
|
guint16 wBlockAlign;
|
2004-03-15 19:32:27 +00:00
|
|
|
guint16 wBitsPerSample; /* Only for PCM */
|
2002-10-21 17:06:53 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct wave_header
|
|
|
|
{
|
|
|
|
struct riff_struct riff;
|
|
|
|
struct chunk_struct format;
|
|
|
|
struct common_struct common;
|
|
|
|
struct chunk_struct data;
|
2002-10-21 17:06:53 +00:00
|
|
|
};
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
static GstElementDetails gst_wavenc_details =
|
|
|
|
GST_ELEMENT_DETAILS ("WAV encoder",
|
2004-05-13 21:27:14 +00:00
|
|
|
"Codec/Muxer/Audio",
|
2004-03-14 22:34:33 +00:00
|
|
|
"Encode raw audio into WAV",
|
|
|
|
"Iain Holmes <iain@prettypeople.org>");
|
|
|
|
|
|
|
|
static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/x-raw-int, "
|
2004-03-15 19:32:27 +00:00
|
|
|
"rate = (int) [ 1, MAX ], "
|
|
|
|
"channels = (int) [ 1, MAX ], "
|
|
|
|
"endianness = (int) LITTLE_ENDIAN, "
|
|
|
|
"width = (int) { 8, 16 }, "
|
|
|
|
"depth = (int) { 8, 16 }, " "signed = (boolean) true")
|
2004-03-14 22:34:33 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/x-wav")
|
|
|
|
);
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
2004-05-21 22:39:30 +00:00
|
|
|
PROP_0
|
2003-10-29 23:48:13 +00:00
|
|
|
};
|
|
|
|
|
2002-10-21 17:06:53 +00:00
|
|
|
static GstElementClass *parent_class = NULL;
|
|
|
|
|
2002-12-27 16:35:09 +00:00
|
|
|
static GType
|
2002-10-21 17:06:53 +00:00
|
|
|
gst_wavenc_get_type (void)
|
|
|
|
{
|
|
|
|
static GType type = 0;
|
|
|
|
|
|
|
|
if (type == 0) {
|
|
|
|
static const GTypeInfo info = {
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstWavEncClass),
|
|
|
|
gst_wavenc_base_init,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_wavenc_class_init,
|
2002-12-27 16:35:09 +00:00
|
|
|
NULL,
|
|
|
|
NULL,
|
2004-03-14 22:34:33 +00:00
|
|
|
sizeof (GstWavEnc),
|
|
|
|
0,
|
2002-12-27 16:35:09 +00:00
|
|
|
(GInstanceInitFunc) gst_wavenc_init
|
2002-10-21 17:06:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
type = g_type_register_static (GST_TYPE_ELEMENT, "GstWavEnc", &info, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElementStateReturn
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_wavenc_change_state (GstElement * element)
|
2002-10-21 17:06:53 +00:00
|
|
|
{
|
|
|
|
GstWavEnc *wavenc = GST_WAVENC (element);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-10-21 17:06:53 +00:00
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
2002-12-27 16:35:09 +00:00
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
|
|
|
wavenc->setup = FALSE;
|
|
|
|
wavenc->flush_header = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2002-10-21 17:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (parent_class->change_state) {
|
|
|
|
return parent_class->change_state (element);
|
|
|
|
}
|
|
|
|
|
|
|
|
return GST_STATE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2003-10-29 23:48:13 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
set_property (GObject * object,
|
|
|
|
guint prop_id, const GValue * value, GParamSpec * pspec)
|
2003-10-29 23:48:13 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
GstWavEnc *enc;
|
|
|
|
|
|
|
|
enc = GST_WAVENC (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2003-10-29 23:48:13 +00:00
|
|
|
}
|
|
|
|
|
2003-11-02 19:28:08 +00:00
|
|
|
static void
|
|
|
|
gst_wavenc_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
|
|
|
gst_element_class_set_details (element_class, &gst_wavenc_details);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&src_factory));
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
|
|
|
gst_static_pad_template_get (&sink_factory));
|
2003-11-02 19:28:08 +00:00
|
|
|
}
|
2002-10-21 17:06:53 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_wavenc_class_init (GstWavEncClass * klass)
|
2002-10-21 17:06:53 +00:00
|
|
|
{
|
|
|
|
GstElementClass *element_class;
|
2003-12-22 01:47:09 +00:00
|
|
|
GObjectClass *object_class;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-10-21 17:06:53 +00:00
|
|
|
element_class = (GstElementClass *) klass;
|
2003-12-22 01:47:09 +00:00
|
|
|
object_class = (GObjectClass *) klass;
|
|
|
|
object_class->set_property = set_property;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2002-10-21 17:06:53 +00:00
|
|
|
element_class->change_state = gst_wavenc_change_state;
|
|
|
|
|
|
|
|
parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_wavenc_setup (GstWavEnc * wavenc)
|
2002-10-21 17:06:53 +00:00
|
|
|
{
|
|
|
|
struct wave_header wave;
|
2004-03-15 19:32:27 +00:00
|
|
|
gint size = 0x7fffffff; /* Use a bogus size initially */
|
2002-10-21 17:06:53 +00:00
|
|
|
|
|
|
|
wave.common.wChannels = wavenc->channels;
|
|
|
|
wave.common.wBitsPerSample = wavenc->bits;
|
|
|
|
wave.common.dwSamplesPerSec = wavenc->rate;
|
|
|
|
|
|
|
|
memset (wavenc->header, 0, WAV_HEADER_LEN);
|
|
|
|
|
|
|
|
/* Fill out our wav-header with some information */
|
|
|
|
strncpy (wave.riff.id, "RIFF", 4);
|
|
|
|
wave.riff.len = size - 8;
|
|
|
|
strncpy (wave.riff.wav_id, "WAVE", 4);
|
|
|
|
|
|
|
|
strncpy (wave.format.id, "fmt ", 4);
|
|
|
|
wave.format.len = 16;
|
|
|
|
|
|
|
|
wave.common.wFormatTag = WAVE_FORMAT_PCM;
|
2004-03-14 22:34:33 +00:00
|
|
|
wave.common.dwAvgBytesPerSec =
|
|
|
|
wave.common.wChannels * wave.common.dwSamplesPerSec *
|
|
|
|
(wave.common.wBitsPerSample >> 3);
|
|
|
|
wave.common.wBlockAlign =
|
|
|
|
wave.common.wChannels * (wave.common.wBitsPerSample >> 3);
|
2002-10-21 17:06:53 +00:00
|
|
|
|
|
|
|
strncpy (wave.data.id, "data", 4);
|
|
|
|
wave.data.len = size - 44;
|
|
|
|
|
|
|
|
strncpy (wavenc->header, wave.riff.id, 4);
|
|
|
|
WRITE_U32 (wavenc->header + 4, wave.riff.len);
|
|
|
|
strncpy (wavenc->header + 8, wave.riff.wav_id, 4);
|
|
|
|
strncpy (wavenc->header + 12, wave.format.id, 4);
|
|
|
|
WRITE_U32 (wavenc->header + 16, wave.format.len);
|
|
|
|
WRITE_U16 (wavenc->header + 20, wave.common.wFormatTag);
|
|
|
|
WRITE_U16 (wavenc->header + 22, wave.common.wChannels);
|
|
|
|
WRITE_U32 (wavenc->header + 24, wave.common.dwSamplesPerSec);
|
|
|
|
WRITE_U32 (wavenc->header + 28, wave.common.dwAvgBytesPerSec);
|
|
|
|
WRITE_U16 (wavenc->header + 32, wave.common.wBlockAlign);
|
|
|
|
WRITE_U16 (wavenc->header + 34, wave.common.wBitsPerSample);
|
|
|
|
strncpy (wavenc->header + 36, wave.data.id, 4);
|
|
|
|
WRITE_U32 (wavenc->header + 40, wave.data.len);
|
|
|
|
|
|
|
|
wavenc->setup = TRUE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2002-12-26 16:31:19 +00:00
|
|
|
|
2003-01-10 13:38:32 +00:00
|
|
|
static GstPadLinkReturn
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_wavenc_sinkconnect (GstPad * pad, const GstCaps * caps)
|
2002-10-21 17:06:53 +00:00
|
|
|
{
|
|
|
|
GstWavEnc *wavenc;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2002-10-21 17:06:53 +00:00
|
|
|
|
|
|
|
wavenc = GST_WAVENC (gst_pad_get_parent (pad));
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2002-10-21 17:06:53 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_structure_get_int (structure, "channels", &wavenc->channels);
|
|
|
|
gst_structure_get_int (structure, "rate", &wavenc->rate);
|
|
|
|
gst_structure_get_int (structure, "depth", &wavenc->bits);
|
2002-10-21 17:06:53 +00:00
|
|
|
|
|
|
|
gst_wavenc_setup (wavenc);
|
|
|
|
|
|
|
|
if (wavenc->setup) {
|
2003-01-10 10:22:25 +00:00
|
|
|
return GST_PAD_LINK_OK;
|
2002-10-21 17:06:53 +00:00
|
|
|
}
|
|
|
|
|
2003-01-10 10:22:25 +00:00
|
|
|
return GST_PAD_LINK_REFUSED;
|
2002-10-21 17:06:53 +00:00
|
|
|
}
|
|
|
|
|
2003-07-29 17:46:14 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_wavenc_stop_file (GstWavEnc * wavenc)
|
2003-07-29 17:46:14 +00:00
|
|
|
{
|
|
|
|
GstEvent *event;
|
|
|
|
GstBuffer *outbuf;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
event = gst_event_new_seek (GST_FORMAT_BYTES | GST_SEEK_METHOD_SET, 0);
|
2003-07-29 17:46:14 +00:00
|
|
|
gst_pad_send_event (GST_PAD_PEER (wavenc->srcpad), event);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-07-29 17:46:14 +00:00
|
|
|
outbuf = gst_buffer_new_and_alloc (WAV_HEADER_LEN);
|
|
|
|
WRITE_U32 (wavenc->header + 4, wavenc->length);
|
|
|
|
memcpy (GST_BUFFER_DATA (outbuf), wavenc->header, WAV_HEADER_LEN);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-10-08 16:08:18 +00:00
|
|
|
gst_pad_push (wavenc->srcpad, GST_DATA (outbuf));
|
2003-07-29 17:46:14 +00:00
|
|
|
}
|
|
|
|
|
2002-10-21 17:06:53 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_wavenc_init (GstWavEnc * wavenc)
|
2002-10-21 17:06:53 +00:00
|
|
|
{
|
2004-01-04 12:14:37 +00:00
|
|
|
GstElementClass *klass = GST_ELEMENT_GET_CLASS (wavenc);
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
wavenc->sinkpad =
|
|
|
|
gst_pad_new_from_template (gst_element_class_get_pad_template (klass,
|
2004-03-15 19:32:27 +00:00
|
|
|
"sink"), "sink");
|
2002-10-21 17:06:53 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (wavenc), wavenc->sinkpad);
|
|
|
|
gst_pad_set_chain_function (wavenc->sinkpad, gst_wavenc_chain);
|
2003-01-10 10:22:25 +00:00
|
|
|
gst_pad_set_link_function (wavenc->sinkpad, gst_wavenc_sinkconnect);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
wavenc->srcpad =
|
|
|
|
gst_pad_new_from_template (gst_element_class_get_pad_template (klass,
|
2004-03-15 19:32:27 +00:00
|
|
|
"src"), "src");
|
2002-10-21 17:06:53 +00:00
|
|
|
gst_element_add_pad (GST_ELEMENT (wavenc), wavenc->srcpad);
|
|
|
|
|
|
|
|
wavenc->setup = FALSE;
|
|
|
|
wavenc->flush_header = TRUE;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
GST_FLAG_SET (wavenc, GST_ELEMENT_EVENT_AWARE);
|
2002-10-21 17:06:53 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
struct _maps
|
|
|
|
{
|
|
|
|
guint32 id;
|
|
|
|
char *name;
|
2004-03-15 19:32:27 +00:00
|
|
|
}
|
|
|
|
maps[] =
|
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
{
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_RIFF_INFO_IARL, "Location"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_IART, "Artist"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_ICMS, "Commissioner"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_ICMT, "Comment"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_ICOP, "Copyright"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_ICRD, "Creation Date"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_IENG, "Engineer"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_IGNR, "Genre"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_IKEY, "Keywords"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_INAM, "Title"}
|
|
|
|
, /* Name */
|
2004-03-14 22:34:33 +00:00
|
|
|
{
|
2004-03-15 19:32:27 +00:00
|
|
|
GST_RIFF_INFO_IPRD, "Product"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_ISBJ, "Subject"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_ISFT, "Software"}
|
|
|
|
, {
|
|
|
|
GST_RIFF_INFO_ITCH, "Technician"}
|
|
|
|
, {
|
2004-03-14 22:34:33 +00:00
|
|
|
0, NULL}
|
2003-10-29 23:48:13 +00:00
|
|
|
};
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
#if 0
|
2003-10-29 23:48:13 +00:00
|
|
|
static guint32
|
|
|
|
get_id_from_name (const char *name)
|
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
int i;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
for (i = 0; maps[i].name; i++) {
|
|
|
|
if (strcasecmp (maps[i].name, name) == 0) {
|
|
|
|
return maps[i].id;
|
|
|
|
}
|
|
|
|
}
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
return 0;
|
2003-10-29 23:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
write_metadata (GstWavEnc * wavenc)
|
2003-10-29 23:48:13 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
GString *info_str;
|
|
|
|
GList *props;
|
|
|
|
int total = 4;
|
|
|
|
gboolean need_to_write = FALSE;
|
|
|
|
|
|
|
|
info_str = g_string_new ("LIST INFO");
|
|
|
|
|
|
|
|
for (props = wavenc->metadata->properties->properties; props;
|
|
|
|
props = props->next) {
|
|
|
|
GstPropsEntry *entry = props->data;
|
|
|
|
const char *name;
|
|
|
|
guint32 id;
|
|
|
|
|
|
|
|
name = gst_props_entry_get_name (entry);
|
|
|
|
id = get_id_from_name (name);
|
|
|
|
if (id != 0) {
|
|
|
|
const char *text;
|
|
|
|
char *tmp;
|
|
|
|
int len, req, i;
|
|
|
|
|
2004-03-15 19:32:27 +00:00
|
|
|
need_to_write = TRUE; /* We've got at least one entry */
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
gst_props_entry_get_string (entry, &text);
|
2004-03-15 19:32:27 +00:00
|
|
|
len = strlen (text) + 1; /* The length in the file includes the \0 */
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
tmp = g_strdup_printf (GST_FOURCC_FORMAT "%d%s", GST_FOURCC_ARGS (id),
|
2004-03-15 19:32:27 +00:00
|
|
|
GUINT32_TO_LE (len), text);
|
2004-03-14 22:34:33 +00:00
|
|
|
g_string_append (info_str, tmp);
|
|
|
|
g_free (tmp);
|
|
|
|
|
|
|
|
/* Check that we end on an even boundary */
|
|
|
|
req = ((len + 8) + 1) & ~1;
|
|
|
|
for (i = 0; i < req - len; i++) {
|
2004-03-15 19:32:27 +00:00
|
|
|
g_string_append_printf (info_str, "%c", 0);
|
2004-03-14 22:34:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
total += req;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (need_to_write) {
|
|
|
|
GstBuffer *buf;
|
|
|
|
|
|
|
|
/* Now we've got all the strings together, we can write our length in */
|
|
|
|
info_str->str[4] = GUINT32_TO_LE (total);
|
|
|
|
|
|
|
|
buf = gst_buffer_new ();
|
|
|
|
gst_buffer_set_data (buf, info_str->str, info_str->len);
|
|
|
|
|
|
|
|
gst_pad_push (wavenc->srcpad, GST_DATA (buf));
|
|
|
|
g_string_free (info_str, FALSE);
|
|
|
|
}
|
2003-10-29 23:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
write_cues (GstWavEnc * wavenc)
|
2003-10-29 23:48:13 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
GString *cue_string, *point_string;
|
|
|
|
GstBuffer *buf;
|
|
|
|
GList *cue_list, *c;
|
|
|
|
int num_cues, total = 4;
|
|
|
|
|
|
|
|
if (gst_props_get (wavenc->metadata->properties,
|
2004-03-15 19:32:27 +00:00
|
|
|
"cues", &cue_list, NULL) == FALSE) {
|
2004-03-14 22:34:33 +00:00
|
|
|
/* No cues, move along please, nothing to see here */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Space for 'cue ', chunk size and number of cuepoints */
|
|
|
|
cue_string = g_string_new ("cue ");
|
2003-10-29 23:48:13 +00:00
|
|
|
#define CUEPOINT_SIZE 24
|
2004-03-14 22:34:33 +00:00
|
|
|
point_string = g_string_sized_new (CUEPOINT_SIZE);
|
|
|
|
|
|
|
|
for (c = cue_list, num_cues = 0; c; c = c->next, num_cues++) {
|
|
|
|
GstCaps *cue_caps = c->data;
|
|
|
|
guint32 pos;
|
|
|
|
|
|
|
|
gst_props_get (cue_caps->properties, "position", &pos, NULL);
|
|
|
|
|
|
|
|
point_string->str[0] = GUINT32_TO_LE (num_cues + 1);
|
|
|
|
point_string->str[4] = GUINT32_TO_LE (0);
|
|
|
|
/* Fixme: There is probably a macro for this */
|
|
|
|
point_string->str[8] = 'd';
|
|
|
|
point_string->str[9] = 'a';
|
|
|
|
point_string->str[10] = 't';
|
|
|
|
point_string->str[11] = 'a';
|
|
|
|
point_string->str[12] = GUINT32_TO_LE (0);
|
|
|
|
point_string->str[16] = GUINT32_TO_LE (0);
|
|
|
|
point_string->str[20] = GUINT32_TO_LE (pos);
|
|
|
|
|
|
|
|
total += CUEPOINT_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the length and chunk size */
|
|
|
|
cue_string->str[4] = GUINT32_TO_LE (total);
|
|
|
|
cue_string->str[8] = GUINT32_TO_LE (num_cues);
|
|
|
|
/* Stick the cue points on the end */
|
|
|
|
g_string_append (cue_string, point_string->str);
|
|
|
|
g_string_free (point_string, TRUE);
|
|
|
|
|
|
|
|
buf = gst_buffer_new ();
|
|
|
|
gst_buffer_set_data (buf, cue_string->str, cue_string->len);
|
|
|
|
|
|
|
|
gst_pad_push (wavenc->srcpad, GST_DATA (buf));
|
|
|
|
g_string_free (cue_string, FALSE);
|
2003-10-29 23:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
write_labels (GstWavEnc * wavenc)
|
2003-10-29 23:48:13 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
GstBuffer *buf;
|
|
|
|
GString *info_str;
|
|
|
|
int total = 4;
|
|
|
|
GList *caps;
|
|
|
|
|
|
|
|
info_str = g_string_new ("LIST adtl");
|
|
|
|
if (gst_props_get (wavenc->metadata->properties, "ltxts", &caps, NULL)) {
|
|
|
|
GList *p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (p = caps, i = 1; p; p = p->next, i++) {
|
|
|
|
GstCaps *ltxt_caps = p->data;
|
|
|
|
GString *ltxt;
|
|
|
|
char *label = NULL;
|
|
|
|
int len, req, j;
|
|
|
|
|
|
|
|
gst_props_get (ltxt_caps->properties, "name", &label, NULL);
|
|
|
|
len = strlen (label);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
|
|
|
#define LTXT_SIZE 28
|
2004-03-14 22:34:33 +00:00
|
|
|
ltxt = g_string_new ("ltxt ");
|
2004-03-15 19:32:27 +00:00
|
|
|
ltxt->str[8] = GUINT32_TO_LE (i); /* Identifier */
|
|
|
|
ltxt->str[12] = GUINT32_TO_LE (0); /* Sample Length */
|
|
|
|
ltxt->str[16] = GUINT32_TO_LE (0); /* FIXME: Don't save the purpose yet */
|
|
|
|
ltxt->str[20] = GUINT16_TO_LE (0); /* Country */
|
|
|
|
ltxt->str[22] = GUINT16_TO_LE (0); /* Language */
|
|
|
|
ltxt->str[24] = GUINT16_TO_LE (0); /* Dialect */
|
|
|
|
ltxt->str[26] = GUINT16_TO_LE (0); /* Code Page */
|
2004-03-14 22:34:33 +00:00
|
|
|
g_string_append (ltxt, label);
|
|
|
|
g_free (label);
|
|
|
|
|
|
|
|
len += LTXT_SIZE;
|
|
|
|
|
|
|
|
ltxt->str[4] = GUINT32_TO_LE (len);
|
|
|
|
|
|
|
|
/* Check that we end on an even boundary */
|
|
|
|
req = ((len + 8) + 1) & ~1;
|
|
|
|
for (j = 0; j < req - len; j++) {
|
2004-03-15 19:32:27 +00:00
|
|
|
g_string_append_printf (ltxt, "%c", 0);
|
2004-03-14 22:34:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
total += req;
|
|
|
|
|
|
|
|
g_string_append (info_str, ltxt->str);
|
|
|
|
g_string_free (ltxt, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gst_props_get (wavenc->metadata->properties, "labels", &caps, NULL)) {
|
|
|
|
GList *p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (p = caps, i = 1; p; p = p->next, i++) {
|
|
|
|
GstCaps *labl_caps = p->data;
|
|
|
|
GString *labl;
|
|
|
|
char *label = NULL;
|
|
|
|
int len, req, j;
|
|
|
|
|
|
|
|
gst_props_get (labl_caps->properties, "name", &label, NULL);
|
|
|
|
len = strlen (label);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
|
|
|
#define LABL_SIZE 4
|
2004-03-14 22:34:33 +00:00
|
|
|
labl = g_string_new ("labl ");
|
|
|
|
labl->str[8] = GUINT32_TO_LE (i);
|
|
|
|
g_string_append (labl, label);
|
|
|
|
g_free (label);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
len += LABL_SIZE;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
labl->str[4] = GUINT32_TO_LE (len);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
/* Check our size */
|
|
|
|
req = ((len + 8) + 1) & ~1;
|
|
|
|
for (j = 0; j < req - len; j++) {
|
2004-03-15 19:32:27 +00:00
|
|
|
g_string_append_printf (labl, "%c", 0);
|
2004-03-14 22:34:33 +00:00
|
|
|
}
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
total += req;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_string_append (info_str, labl->str);
|
|
|
|
g_string_free (labl, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gst_props_get (wavenc->metadata->properties, "notes", &caps, NULL)) {
|
|
|
|
GList *p;
|
|
|
|
int i;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
for (p = caps, i = 1; p; p = p->next, i++) {
|
|
|
|
GstCaps *note_caps = p->data;
|
|
|
|
GString *note;
|
|
|
|
char *label = NULL;
|
|
|
|
int len, req, j;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_props_get (note_caps->properties, "name", &label, NULL);
|
|
|
|
len = strlen (label);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
|
|
|
#define NOTE_SIZE 4
|
2004-03-14 22:34:33 +00:00
|
|
|
note = g_string_new ("note ");
|
|
|
|
note->str[8] = GUINT32_TO_LE (i);
|
|
|
|
g_string_append (note, label);
|
|
|
|
g_free (label);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
len += NOTE_SIZE;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
note->str[4] = GUINT32_TO_LE (len);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
/* Size check */
|
|
|
|
req = ((len + 8) + 1) & ~1;
|
|
|
|
for (j = 0; j < req - len; j++) {
|
2004-03-15 19:32:27 +00:00
|
|
|
g_string_append_printf (note, "%c", 0);
|
2004-03-14 22:34:33 +00:00
|
|
|
}
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
total += req;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
g_string_append (info_str, note->str);
|
|
|
|
g_string_free (note, TRUE);
|
|
|
|
}
|
|
|
|
}
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
info_str->str[4] = GUINT32_TO_LE (total);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
buf = gst_buffer_new ();
|
|
|
|
gst_buffer_set_data (buf, info_str->str, info_str->len);
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_pad_push (wavenc->srcpad, GST_DATA (buf));
|
|
|
|
g_string_free (info_str, FALSE);
|
2003-10-29 23:48:13 +00:00
|
|
|
}
|
2003-12-22 01:47:09 +00:00
|
|
|
#endif
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2002-10-21 17:06:53 +00:00
|
|
|
static void
|
2004-03-14 22:34:33 +00:00
|
|
|
gst_wavenc_chain (GstPad * pad, GstData * _data)
|
2002-10-21 17:06:53 +00:00
|
|
|
{
|
2003-10-08 16:08:18 +00:00
|
|
|
GstBuffer *buf = GST_BUFFER (_data);
|
2002-10-21 17:06:53 +00:00
|
|
|
GstWavEnc *wavenc;
|
|
|
|
|
|
|
|
wavenc = GST_WAVENC (gst_pad_get_parent (pad));
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
if (GST_IS_EVENT (buf)) {
|
|
|
|
if (GST_EVENT_TYPE (buf) == GST_EVENT_EOS) {
|
|
|
|
wavenc->pad_eos = TRUE;
|
2003-10-29 23:48:13 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
#if 0
|
2004-03-14 22:34:33 +00:00
|
|
|
/* Write our metadata if we have any */
|
|
|
|
if (wavenc->metadata) {
|
2004-03-15 19:32:27 +00:00
|
|
|
write_metadata (wavenc);
|
|
|
|
write_cues (wavenc);
|
|
|
|
write_labels (wavenc);
|
2004-03-14 22:34:33 +00:00
|
|
|
}
|
2003-12-22 01:47:09 +00:00
|
|
|
#endif
|
2004-03-14 22:34:33 +00:00
|
|
|
|
|
|
|
gst_wavenc_stop_file (wavenc);
|
|
|
|
gst_pad_push (wavenc->srcpad, GST_DATA (gst_event_new (GST_EVENT_EOS)));
|
|
|
|
gst_element_set_eos (GST_ELEMENT (wavenc));
|
|
|
|
} else {
|
|
|
|
gst_pad_event_default (wavenc->srcpad, GST_EVENT (buf));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2003-09-30 12:47:48 +00:00
|
|
|
|
2004-05-06 09:14:29 +00:00
|
|
|
if (!wavenc->setup) {
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
GST_ELEMENT_ERROR (wavenc, CORE, NEGOTIATION, (NULL),
|
|
|
|
("encoder not initialised (input is not audio?)"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-07-29 17:46:14 +00:00
|
|
|
if (GST_PAD_IS_USABLE (wavenc->srcpad)) {
|
|
|
|
if (wavenc->flush_header) {
|
|
|
|
GstBuffer *outbuf;
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-07-29 17:46:14 +00:00
|
|
|
outbuf = gst_buffer_new_and_alloc (WAV_HEADER_LEN);
|
|
|
|
memcpy (GST_BUFFER_DATA (outbuf), wavenc->header, WAV_HEADER_LEN);
|
|
|
|
GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
|
2004-03-14 22:34:33 +00:00
|
|
|
|
2003-10-08 16:08:18 +00:00
|
|
|
gst_pad_push (wavenc->srcpad, GST_DATA (outbuf));
|
2003-07-29 17:46:14 +00:00
|
|
|
wavenc->flush_header = FALSE;
|
2002-12-27 16:35:09 +00:00
|
|
|
}
|
2003-07-29 17:46:14 +00:00
|
|
|
|
|
|
|
wavenc->length += GST_BUFFER_SIZE (buf);
|
2003-10-08 16:08:18 +00:00
|
|
|
gst_pad_push (wavenc->srcpad, GST_DATA (buf));
|
2002-10-21 17:06:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2004-03-14 22:34:33 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2002-10-21 17:06:53 +00:00
|
|
|
{
|
2004-03-14 22:34:33 +00:00
|
|
|
return gst_element_register (plugin, "wavenc", GST_RANK_NONE,
|
|
|
|
GST_TYPE_WAVENC);
|
2002-10-21 17:06:53 +00:00
|
|
|
}
|
|
|
|
|
2004-03-14 22:34:33 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"wavenc",
|
|
|
|
"Encode raw audio into WAV",
|
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
|