1 /* -*- mOde: C; tab-width: 2; indent-tabs-mode: t; c-basic-offset: 2 -*- */
2 /* GStreamer .wav encoder
3 * Copyright (C) <2002> Iain Holmes <iain@prettypeople.org>
4 * Copyright (C) <2006> Tim-Philipp Müller <tim centricular net>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public
17 * License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
23 * SECTION:element-wavenc
25 * Format a audio stream into the wav format.
33 #include "gstwavenc.h"
35 #include <gst/riff/riff-media.h>
37 GST_DEBUG_CATEGORY_STATIC (wavenc_debug);
38 #define GST_CAT_DEFAULT wavenc_debug
42 guint8 id[4]; /* RIFF */
44 guint8 wav_id[4]; /* WAVE */
57 guint32 dwSamplesPerSec;
58 guint32 dwAvgBytesPerSec;
60 guint16 wBitsPerSample; /* Only for PCM */
65 struct riff_struct riff;
66 struct chunk_struct format;
67 struct common_struct common;
68 struct chunk_struct data;
71 /* FIXME: mono doesn't produce correct files it seems, at least mplayer xruns */
72 /* Max. of two channels, more channels need WAVFORMATEX with
73 * channel layout, which we do not support yet */
76 "rate = (int) [ 1, MAX ], " \
77 "channels = (int) [ 1, 2 ], " \
78 "endianness = (int) LITTLE_ENDIAN, " \
79 "width = (int) 32, " \
80 "depth = (int) 32, " \
81 "signed = (boolean) true" \
84 "rate = (int) [ 1, MAX ], " \
85 "channels = (int) [ 1, 2 ], " \
86 "endianness = (int) LITTLE_ENDIAN, " \
87 "width = (int) 24, " \
88 "depth = (int) 24, " \
89 "signed = (boolean) true" \
92 "rate = (int) [ 1, MAX ], " \
93 "channels = (int) [ 1, 2 ], " \
94 "endianness = (int) LITTLE_ENDIAN, " \
95 "width = (int) 16, " \
96 "depth = (int) 16, " \
97 "signed = (boolean) true" \
100 "rate = (int) [ 1, MAX ], " \
101 "channels = (int) [ 1, 2 ], " \
102 "width = (int) 8, " \
103 "depth = (int) 8, " \
104 "signed = (boolean) false" \
106 "audio/x-raw-float, " \
107 "rate = (int) [ 1, MAX ], " \
108 "channels = (int) [ 1, 2 ], " \
109 "endianness = (int) LITTLE_ENDIAN, " \
110 "width = (int) { 32, 64 }; " \
112 "rate = (int) [ 8000, 192000 ], " \
113 "channels = (int) [ 1, 2 ], " \
114 "width = (int) 8, " \
115 "depth = (int) 8, " \
116 "signed = (boolean) false; " \
118 "rate = (int) [ 8000, 192000 ], " \
119 "channels = (int) [ 1, 2 ], " \
120 "width = (int) 8, " \
121 "depth = (int) 8, " \
122 "signed = (boolean) false"
125 static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
128 GST_STATIC_CAPS (SINK_CAPS)
131 static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
134 GST_STATIC_CAPS ("audio/x-wav")
137 GST_BOILERPLATE (GstWavEnc, gst_wavenc, GstElement, GST_TYPE_ELEMENT);
139 static GstFlowReturn gst_wavenc_chain (GstPad * pad, GstBuffer * buf);
140 static gboolean gst_wavenc_event (GstPad * pad, GstEvent * event);
141 static GstStateChangeReturn gst_wavenc_change_state (GstElement * element,
142 GstStateChange transition);
143 static gboolean gst_wavenc_sink_setcaps (GstPad * pad, GstCaps * caps);
146 gst_wavenc_base_init (gpointer g_class)
148 GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
150 gst_element_class_set_details_simple (element_class, "WAV audio muxer",
152 "Encode raw audio into WAV", "Iain Holmes <iain@prettypeople.org>");
154 gst_element_class_add_pad_template (element_class,
155 gst_static_pad_template_get (&src_factory));
156 gst_element_class_add_pad_template (element_class,
157 gst_static_pad_template_get (&sink_factory));
159 GST_DEBUG_CATEGORY_INIT (wavenc_debug, "wavenc", 0, "WAV encoder element");
163 gst_wavenc_class_init (GstWavEncClass * klass)
165 GstElementClass *element_class;
167 element_class = (GstElementClass *) klass;
169 element_class->change_state = GST_DEBUG_FUNCPTR (gst_wavenc_change_state);
173 gst_wavenc_init (GstWavEnc * wavenc, GstWavEncClass * klass)
175 wavenc->sinkpad = gst_pad_new_from_static_template (&sink_factory, "sink");
176 gst_pad_set_chain_function (wavenc->sinkpad,
177 GST_DEBUG_FUNCPTR (gst_wavenc_chain));
178 gst_pad_set_event_function (wavenc->sinkpad,
179 GST_DEBUG_FUNCPTR (gst_wavenc_event));
180 gst_pad_set_setcaps_function (wavenc->sinkpad,
181 GST_DEBUG_FUNCPTR (gst_wavenc_sink_setcaps));
182 gst_pad_use_fixed_caps (wavenc->sinkpad);
183 gst_element_add_pad (GST_ELEMENT (wavenc), wavenc->sinkpad);
185 wavenc->srcpad = gst_pad_new_from_static_template (&src_factory, "src");
186 gst_pad_use_fixed_caps (wavenc->srcpad);
187 gst_pad_set_caps (wavenc->srcpad,
188 gst_static_pad_template_get_caps (&src_factory));
189 gst_element_add_pad (GST_ELEMENT (wavenc), wavenc->srcpad);
192 #define WAV_HEADER_LEN 44
195 gst_wavenc_create_header_buf (GstWavEnc * wavenc, guint audio_data_size)
197 struct wave_header wave;
201 buf = gst_buffer_new_and_alloc (WAV_HEADER_LEN);
202 header = GST_BUFFER_DATA (buf);
203 memset (header, 0, WAV_HEADER_LEN);
205 wave.common.wChannels = wavenc->channels;
206 wave.common.wBitsPerSample = wavenc->width;
207 wave.common.dwSamplesPerSec = wavenc->rate;
209 /* Fill out our wav-header with some information */
210 memcpy (wave.riff.id, "RIFF", 4);
211 wave.riff.len = audio_data_size + WAV_HEADER_LEN - 8;
212 memcpy (wave.riff.wav_id, "WAVE", 4);
214 memcpy (wave.format.id, "fmt ", 4);
215 wave.format.len = 16;
217 wave.common.wFormatTag = wavenc->format;
218 wave.common.wBlockAlign = (wavenc->width / 8) * wave.common.wChannels;
219 wave.common.dwAvgBytesPerSec =
220 wave.common.wBlockAlign * wave.common.dwSamplesPerSec;
222 memcpy (wave.data.id, "data", 4);
223 wave.data.len = audio_data_size;
225 memcpy (header, (char *) wave.riff.id, 4);
226 GST_WRITE_UINT32_LE (header + 4, wave.riff.len);
227 memcpy (header + 8, (char *) wave.riff.wav_id, 4);
228 memcpy (header + 12, (char *) wave.format.id, 4);
229 GST_WRITE_UINT32_LE (header + 16, wave.format.len);
230 GST_WRITE_UINT16_LE (header + 20, wave.common.wFormatTag);
231 GST_WRITE_UINT16_LE (header + 22, wave.common.wChannels);
232 GST_WRITE_UINT32_LE (header + 24, wave.common.dwSamplesPerSec);
233 GST_WRITE_UINT32_LE (header + 28, wave.common.dwAvgBytesPerSec);
234 GST_WRITE_UINT16_LE (header + 32, wave.common.wBlockAlign);
235 GST_WRITE_UINT16_LE (header + 34, wave.common.wBitsPerSample);
236 memcpy (header + 36, (char *) wave.data.id, 4);
237 GST_WRITE_UINT32_LE (header + 40, wave.data.len);
239 gst_buffer_set_caps (buf, GST_PAD_CAPS (wavenc->srcpad));
245 gst_wavenc_push_header (GstWavEnc * wavenc, guint audio_data_size)
250 /* seek to beginning of file */
251 gst_pad_push_event (wavenc->srcpad,
252 gst_event_new_new_segment (FALSE, 1.0, GST_FORMAT_BYTES, 0, -1, 0));
254 GST_DEBUG_OBJECT (wavenc, "writing header with datasize=%u", audio_data_size);
256 outbuf = gst_wavenc_create_header_buf (wavenc, audio_data_size);
257 GST_BUFFER_OFFSET (outbuf) = 0;
259 ret = gst_pad_push (wavenc->srcpad, outbuf);
261 if (ret != GST_FLOW_OK) {
262 GST_WARNING_OBJECT (wavenc, "push header failed: flow = %s",
263 gst_flow_get_name (ret));
270 gst_wavenc_sink_setcaps (GstPad * pad, GstCaps * caps)
273 GstStructure *structure;
275 gint chans, rate, width;
277 wavenc = GST_WAVENC (gst_pad_get_parent (pad));
279 if (wavenc->sent_header && !gst_caps_can_intersect (caps, GST_PAD_CAPS (pad))) {
280 GST_WARNING_OBJECT (wavenc, "cannot change format in middle of stream");
284 GST_DEBUG_OBJECT (wavenc, "got caps: %" GST_PTR_FORMAT, caps);
286 structure = gst_caps_get_structure (caps, 0);
287 name = gst_structure_get_name (structure);
289 if (!gst_structure_get_int (structure, "channels", &chans) ||
290 !gst_structure_get_int (structure, "rate", &rate)) {
291 GST_WARNING_OBJECT (wavenc, "caps incomplete");
295 if (strcmp (name, "audio/x-raw-int") == 0) {
296 if (!gst_structure_get_int (structure, "width", &width)) {
297 GST_WARNING_OBJECT (wavenc, "caps incomplete");
300 wavenc->format = GST_RIFF_WAVE_FORMAT_PCM;
301 wavenc->width = width;
302 } else if (strcmp (name, "audio/x-raw-float") == 0) {
303 if (!gst_structure_get_int (structure, "width", &width)) {
304 GST_WARNING_OBJECT (wavenc, "caps incomplete");
307 wavenc->format = GST_RIFF_WAVE_FORMAT_IEEE_FLOAT;
308 wavenc->width = width;
309 } else if (strcmp (name, "audio/x-alaw") == 0) {
310 wavenc->format = GST_RIFF_WAVE_FORMAT_ALAW;
312 } else if (strcmp (name, "audio/x-mulaw") == 0) {
313 wavenc->format = GST_RIFF_WAVE_FORMAT_MULAW;
316 GST_WARNING_OBJECT (wavenc, "Unsupported format %s", name);
320 wavenc->channels = chans;
323 GST_LOG_OBJECT (wavenc,
324 "accepted caps: format=0x%04x chans=%u width=%u rate=%u",
325 wavenc->format, wavenc->channels, wavenc->width, wavenc->rate);
327 gst_object_unref (wavenc);
331 gst_object_unref (wavenc);
342 GST_RIFF_INFO_IARL, "Location"}, {
343 GST_RIFF_INFO_IART, "Artist"}, {
344 GST_RIFF_INFO_ICMS, "Commissioner"}, {
345 GST_RIFF_INFO_ICMT, "Comment"}, {
346 GST_RIFF_INFO_ICOP, "Copyright"}, {
347 GST_RIFF_INFO_ICRD, "Creation Date"}, {
348 GST_RIFF_INFO_IENG, "Engineer"}, {
349 GST_RIFF_INFO_IGNR, "Genre"}, {
350 GST_RIFF_INFO_IKEY, "Keywords"}, {
351 GST_RIFF_INFO_INAM, "Title"}, {
352 GST_RIFF_INFO_IPRD, "Product"}, {
353 GST_RIFF_INFO_ISBJ, "Subject"}, {
354 GST_RIFF_INFO_ISFT, "Software"}, {
355 GST_RIFF_INFO_ITCH, "Technician"}
359 get_id_from_name (const char *name)
363 for (i = 0; i < G_N_ELEMENTS (maps); i++) {
364 if (strcasecmp (maps[i].name, name) == 0) {
373 write_metadata (GstWavEnc * wavenc)
378 gboolean need_to_write = FALSE;
380 info_str = g_string_new ("LIST INFO");
382 for (props = wavenc->metadata->properties->properties; props;
383 props = props->next) {
384 GstPropsEntry *entry = props->data;
388 name = gst_props_entry_get_name (entry);
389 id = get_id_from_name (name);
395 need_to_write = TRUE; /* We've got at least one entry */
397 gst_props_entry_get_string (entry, &text);
398 len = strlen (text) + 1; /* The length in the file includes the \0 */
400 tmp = g_strdup_printf ("%" GST_FOURCC_FORMAT "%d%s", GST_FOURCC_ARGS (id),
401 GUINT32_TO_LE (len), text);
402 g_string_append (info_str, tmp);
405 /* Check that we end on an even boundary */
406 req = ((len + 8) + 1) & ~1;
407 for (i = 0; i < req - len; i++) {
408 g_string_append_printf (info_str, "%c", 0);
418 /* Now we've got all the strings together, we can write our length in */
419 info_str->str[4] = GUINT32_TO_LE (total);
421 buf = gst_buffer_new ();
422 gst_buffer_set_data (buf, info_str->str, info_str->len);
424 gst_pad_push (wavenc->srcpad, GST_DATA (buf));
425 g_string_free (info_str, FALSE);
430 write_cues (GstWavEnc * wavenc)
432 GString *cue_string, *point_string;
435 int num_cues, total = 4;
437 if (gst_props_get (wavenc->metadata->properties,
438 "cues", &cue_list, NULL) == FALSE) {
439 /* No cues, move along please, nothing to see here */
443 /* Space for 'cue ', chunk size and number of cuepoints */
444 cue_string = g_string_new ("cue ");
445 #define CUEPOINT_SIZE 24
446 point_string = g_string_sized_new (CUEPOINT_SIZE);
448 for (c = cue_list, num_cues = 0; c; c = c->next, num_cues++) {
449 GstCaps *cue_caps = c->data;
452 gst_props_get (cue_caps->properties, "position", &pos, NULL);
454 point_string->str[0] = GUINT32_TO_LE (num_cues + 1);
455 point_string->str[4] = GUINT32_TO_LE (0);
456 /* Fixme: There is probably a macro for this */
457 point_string->str[8] = 'd';
458 point_string->str[9] = 'a';
459 point_string->str[10] = 't';
460 point_string->str[11] = 'a';
461 point_string->str[12] = GUINT32_TO_LE (0);
462 point_string->str[16] = GUINT32_TO_LE (0);
463 point_string->str[20] = GUINT32_TO_LE (pos);
465 total += CUEPOINT_SIZE;
468 /* Set the length and chunk size */
469 cue_string->str[4] = GUINT32_TO_LE (total);
470 cue_string->str[8] = GUINT32_TO_LE (num_cues);
471 /* Stick the cue points on the end */
472 g_string_append (cue_string, point_string->str);
473 g_string_free (point_string, TRUE);
475 buf = gst_buffer_new ();
476 gst_buffer_set_data (buf, cue_string->str, cue_string->len);
478 gst_pad_push (wavenc->srcpad, GST_DATA (buf));
479 g_string_free (cue_string, FALSE);
483 write_labels (GstWavEnc * wavenc)
490 info_str = g_string_new ("LIST adtl");
491 if (gst_props_get (wavenc->metadata->properties, "ltxts", &caps, NULL)) {
495 for (p = caps, i = 1; p; p = p->next, i++) {
496 GstCaps *ltxt_caps = p->data;
501 gst_props_get (ltxt_caps->properties, "name", &label, NULL);
502 len = strlen (label);
505 ltxt = g_string_new ("ltxt ");
506 ltxt->str[8] = GUINT32_TO_LE (i); /* Identifier */
507 ltxt->str[12] = GUINT32_TO_LE (0); /* Sample Length */
508 ltxt->str[16] = GUINT32_TO_LE (0); /* FIXME: Don't save the purpose yet */
509 ltxt->str[20] = GUINT16_TO_LE (0); /* Country */
510 ltxt->str[22] = GUINT16_TO_LE (0); /* Language */
511 ltxt->str[24] = GUINT16_TO_LE (0); /* Dialect */
512 ltxt->str[26] = GUINT16_TO_LE (0); /* Code Page */
513 g_string_append (ltxt, label);
518 ltxt->str[4] = GUINT32_TO_LE (len);
520 /* Check that we end on an even boundary */
521 req = ((len + 8) + 1) & ~1;
522 for (j = 0; j < req - len; j++) {
523 g_string_append_printf (ltxt, "%c", 0);
528 g_string_append (info_str, ltxt->str);
529 g_string_free (ltxt, TRUE);
533 if (gst_props_get (wavenc->metadata->properties, "labels", &caps, NULL)) {
537 for (p = caps, i = 1; p; p = p->next, i++) {
538 GstCaps *labl_caps = p->data;
543 gst_props_get (labl_caps->properties, "name", &label, NULL);
544 len = strlen (label);
547 labl = g_string_new ("labl ");
548 labl->str[8] = GUINT32_TO_LE (i);
549 g_string_append (labl, label);
554 labl->str[4] = GUINT32_TO_LE (len);
557 req = ((len + 8) + 1) & ~1;
558 for (j = 0; j < req - len; j++) {
559 g_string_append_printf (labl, "%c", 0);
564 g_string_append (info_str, labl->str);
565 g_string_free (labl, TRUE);
569 if (gst_props_get (wavenc->metadata->properties, "notes", &caps, NULL)) {
573 for (p = caps, i = 1; p; p = p->next, i++) {
574 GstCaps *note_caps = p->data;
579 gst_props_get (note_caps->properties, "name", &label, NULL);
580 len = strlen (label);
583 note = g_string_new ("note ");
584 note->str[8] = GUINT32_TO_LE (i);
585 g_string_append (note, label);
590 note->str[4] = GUINT32_TO_LE (len);
593 req = ((len + 8) + 1) & ~1;
594 for (j = 0; j < req - len; j++) {
595 g_string_append_printf (note, "%c", 0);
600 g_string_append (info_str, note->str);
601 g_string_free (note, TRUE);
605 info_str->str[4] = GUINT32_TO_LE (total);
607 buf = gst_buffer_new ();
608 gst_buffer_set_data (buf, info_str->str, info_str->len);
610 gst_pad_push (wavenc->srcpad, GST_DATA (buf));
611 g_string_free (info_str, FALSE);
616 gst_wavenc_event (GstPad * pad, GstEvent * event)
621 wavenc = GST_WAVENC (gst_pad_get_parent (pad));
623 switch (GST_EVENT_TYPE (event)) {
625 GST_DEBUG_OBJECT (wavenc, "got EOS");
627 /* Write our metadata if we have any */
628 if (wavenc->metadata) {
629 write_metadata (wavenc);
631 write_labels (wavenc);
634 /* write header with correct length values */
635 gst_wavenc_push_header (wavenc, wavenc->length);
637 /* we're done with this file */
638 wavenc->finished_properly = TRUE;
640 /* and forward the EOS event */
641 res = gst_pad_event_default (pad, event);
644 case GST_EVENT_NEWSEGMENT:
645 /* Just drop it, it's probably in TIME format
646 * anyway. We'll send our own newsegment event */
647 gst_event_unref (event);
650 res = gst_pad_event_default (pad, event);
654 gst_object_unref (wavenc);
659 gst_wavenc_chain (GstPad * pad, GstBuffer * buf)
661 GstWavEnc *wavenc = GST_WAVENC (GST_PAD_PARENT (pad));
662 GstFlowReturn flow = GST_FLOW_OK;
664 g_return_val_if_fail (wavenc->channels > 0, GST_FLOW_WRONG_STATE);
666 if (!wavenc->sent_header) {
667 /* use bogus size initially, we'll write the real
668 * header when we get EOS and know the exact length */
669 flow = gst_wavenc_push_header (wavenc, 0x7FFF0000);
671 /* starting a file, means we have to finish it properly */
672 wavenc->finished_properly = FALSE;
674 if (flow != GST_FLOW_OK)
677 GST_DEBUG_OBJECT (wavenc, "wrote dummy header");
678 wavenc->sent_header = TRUE;
681 GST_LOG_OBJECT (wavenc, "pushing %u bytes raw audio, ts=%" GST_TIME_FORMAT,
682 GST_BUFFER_SIZE (buf), GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (buf)));
684 buf = gst_buffer_make_metadata_writable (buf);
686 gst_buffer_set_caps (buf, GST_PAD_CAPS (wavenc->srcpad));
687 GST_BUFFER_OFFSET (buf) = WAV_HEADER_LEN + wavenc->length;
688 GST_BUFFER_OFFSET_END (buf) = GST_BUFFER_OFFSET_NONE;
690 wavenc->length += GST_BUFFER_SIZE (buf);
692 flow = gst_pad_push (wavenc->srcpad, buf);
697 static GstStateChangeReturn
698 gst_wavenc_change_state (GstElement * element, GstStateChange transition)
700 GstStateChangeReturn ret = GST_STATE_CHANGE_SUCCESS;
701 GstWavEnc *wavenc = GST_WAVENC (element);
703 switch (transition) {
704 case GST_STATE_CHANGE_NULL_TO_READY:
706 wavenc->channels = 0;
710 wavenc->sent_header = FALSE;
711 /* its true because we haven't writen anything */
712 wavenc->finished_properly = TRUE;
718 ret = parent_class->change_state (element, transition);
719 if (ret != GST_STATE_CHANGE_SUCCESS)
722 switch (transition) {
723 case GST_STATE_CHANGE_PAUSED_TO_READY:
724 if (!wavenc->finished_properly) {
725 GST_ELEMENT_WARNING (wavenc, STREAM, MUX,
726 ("Wav stream not finished properly"),
727 ("Wav stream not finished properly, no EOS received "
739 plugin_init (GstPlugin * plugin)
741 return gst_element_register (plugin, "wavenc", GST_RANK_PRIMARY,
745 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
748 "Encode raw audio into WAV",
749 plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)