2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-22 23:43:34 +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.
|
|
|
|
*/
|
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2002-04-13 00:46:23 +00:00
|
|
|
#include "audio.h"
|
2001-12-22 23:43:34 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
gst_audio_frame_byte_size (GstPad* pad)
|
|
|
|
{
|
|
|
|
/* calculate byte size of an audio frame
|
|
|
|
* this should be moved closer to the gstreamer core
|
|
|
|
* and be implemented for every mime type IMO
|
2002-07-15 11:06:33 +00:00
|
|
|
* returns -1 if there's an error (to avoid division by zero),
|
|
|
|
* or the byte size if everything's ok
|
2001-12-22 23:43:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
int width = 0;
|
|
|
|
int channels = 0;
|
2003-12-27 19:37:17 +00:00
|
|
|
const GstCaps *caps = NULL;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2001-12-22 23:43:34 +00:00
|
|
|
|
|
|
|
/* get caps of pad */
|
|
|
|
caps = GST_PAD_CAPS (pad);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
if (caps == NULL) {
|
2001-12-22 23:43:34 +00:00
|
|
|
/* ERROR: could not get caps of pad */
|
2002-07-15 11:17:24 +00:00
|
|
|
g_warning ("gstaudio: could not get caps of pad %s:%s\n",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)), GST_PAD_NAME (pad));
|
2001-12-22 23:43:34 +00:00
|
|
|
return 0;
|
2002-07-15 11:06:33 +00:00
|
|
|
}
|
2001-12-22 23:43:34 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
gst_structure_get_int (structure, "width", &width);
|
|
|
|
gst_structure_get_int (structure, "channels", &channels);
|
2001-12-22 23:43:34 +00:00
|
|
|
return (width / 8) * channels;
|
|
|
|
}
|
|
|
|
|
|
|
|
long
|
|
|
|
gst_audio_frame_length (GstPad* pad, GstBuffer* buf)
|
|
|
|
/* calculate length of buffer in frames
|
|
|
|
* this should be moved closer to the gstreamer core
|
|
|
|
* and be implemented for every mime type IMO
|
|
|
|
* returns 0 if there's an error, or the number of frames if everything's ok
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
int frame_byte_size = 0;
|
|
|
|
|
|
|
|
frame_byte_size = gst_audio_frame_byte_size (pad);
|
|
|
|
if (frame_byte_size == 0)
|
|
|
|
/* error */
|
|
|
|
return 0;
|
|
|
|
/* FIXME: this function assumes the buffer size to be a whole multiple
|
|
|
|
* of the frame byte size
|
|
|
|
*/
|
|
|
|
return GST_BUFFER_SIZE (buf) / frame_byte_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
long
|
|
|
|
gst_audio_frame_rate (GstPad *pad)
|
|
|
|
/*
|
|
|
|
* calculate frame rate (based on caps of pad)
|
|
|
|
* returns 0 if failed, rate if success
|
|
|
|
*/
|
|
|
|
{
|
2003-12-27 19:37:17 +00:00
|
|
|
const GstCaps *caps = NULL;
|
2002-03-30 17:06:26 +00:00
|
|
|
gint rate;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2001-12-22 23:43:34 +00:00
|
|
|
|
|
|
|
/* get caps of pad */
|
|
|
|
caps = GST_PAD_CAPS (pad);
|
|
|
|
|
2002-07-15 11:17:24 +00:00
|
|
|
if (caps == NULL) {
|
2001-12-22 23:43:34 +00:00
|
|
|
/* ERROR: could not get caps of pad */
|
2002-07-15 11:17:24 +00:00
|
|
|
g_warning ("gstaudio: could not get caps of pad %s:%s\n",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)), GST_PAD_NAME (pad));
|
2001-12-22 23:43:34 +00:00
|
|
|
return 0;
|
2002-07-15 11:17:24 +00:00
|
|
|
}
|
2002-03-30 17:06:26 +00:00
|
|
|
else {
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
gst_structure_get_int (structure, "rate", &rate);
|
2002-03-30 17:06:26 +00:00
|
|
|
return rate;
|
|
|
|
}
|
2001-12-22 23:43:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
gst_audio_length (GstPad* pad, GstBuffer* buf)
|
|
|
|
{
|
|
|
|
/* calculate length in seconds
|
|
|
|
* of audio buffer buf
|
|
|
|
* based on capabilities of pad
|
|
|
|
*/
|
|
|
|
|
|
|
|
long bytes = 0;
|
|
|
|
int width = 0;
|
|
|
|
int channels = 0;
|
2002-03-30 17:06:26 +00:00
|
|
|
int rate = 0;
|
2001-12-22 23:43:34 +00:00
|
|
|
|
|
|
|
double length;
|
|
|
|
|
2003-12-27 19:37:17 +00:00
|
|
|
const GstCaps *caps = NULL;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2001-12-22 23:43:34 +00:00
|
|
|
|
2002-07-12 21:09:17 +00:00
|
|
|
g_assert (GST_IS_BUFFER (buf));
|
2001-12-22 23:43:34 +00:00
|
|
|
/* get caps of pad */
|
|
|
|
caps = GST_PAD_CAPS (pad);
|
|
|
|
if (caps == NULL)
|
|
|
|
{
|
|
|
|
/* ERROR: could not get caps of pad */
|
2002-07-15 11:17:24 +00:00
|
|
|
g_warning ("gstaudio: could not get caps of pad %s:%s\n",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)), GST_PAD_NAME (pad));
|
2001-12-22 23:43:34 +00:00
|
|
|
length = 0.0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2001-12-22 23:43:34 +00:00
|
|
|
bytes = GST_BUFFER_SIZE (buf);
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_structure_get_int (structure, "width", &width);
|
|
|
|
gst_structure_get_int (structure, "channels", &channels);
|
|
|
|
gst_structure_get_int (structure, "rate", &rate);
|
2001-12-22 23:43:34 +00:00
|
|
|
|
2002-07-12 21:09:17 +00:00
|
|
|
g_assert (bytes != 0);
|
|
|
|
g_assert (width != 0);
|
|
|
|
g_assert (channels != 0);
|
|
|
|
g_assert (rate != 0);
|
2001-12-22 23:43:34 +00:00
|
|
|
length = (bytes * 8.0) / (double) (rate * channels * width);
|
|
|
|
}
|
2002-07-12 21:09:17 +00:00
|
|
|
/* g_print ("DEBUG: audio: returning length of %f\n", length); */
|
2001-12-22 23:43:34 +00:00
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
|
|
|
long
|
|
|
|
gst_audio_highest_sample_value (GstPad* pad)
|
|
|
|
/* calculate highest possible sample value
|
|
|
|
* based on capabilities of pad
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
gboolean is_signed = FALSE;
|
|
|
|
gint width = 0;
|
2003-12-27 19:37:17 +00:00
|
|
|
const GstCaps *caps = NULL;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2001-12-22 23:43:34 +00:00
|
|
|
|
|
|
|
caps = GST_PAD_CAPS (pad);
|
|
|
|
if (caps == NULL)
|
2002-07-15 11:17:24 +00:00
|
|
|
{
|
|
|
|
g_warning ("gstaudio: could not get caps of pad %s:%s\n",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)), GST_PAD_NAME (pad));
|
|
|
|
}
|
2002-03-30 17:06:26 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
gst_structure_get_int (structure, "width", &width);
|
|
|
|
gst_structure_get_boolean (structure, "signed", &is_signed);
|
2002-03-30 17:06:26 +00:00
|
|
|
|
2001-12-22 23:43:34 +00:00
|
|
|
if (is_signed) --width;
|
|
|
|
/* example : 16 bit, signed : samples between -32768 and 32767 */
|
|
|
|
return ((long) (1 << width));
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_audio_is_buffer_framed (GstPad* pad, GstBuffer* buf)
|
|
|
|
/* check if the buffer size is a whole multiple of the frame size */
|
|
|
|
{
|
|
|
|
if (GST_BUFFER_SIZE (buf) % gst_audio_frame_byte_size (pad) == 0)
|
|
|
|
return TRUE;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
2002-03-24 20:55:44 +00:00
|
|
|
|
|
|
|
static gboolean
|
2003-10-31 20:03:29 +00:00
|
|
|
plugin_init (GstPlugin *plugin)
|
2002-03-24 20:55:44 +00:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
GST_PLUGIN_DEFINE (
|
2002-03-24 20:55:44 +00:00
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"gstaudio",
|
2003-10-31 20:03:29 +00:00
|
|
|
"Support services for audio plugins",
|
|
|
|
plugin_init,
|
|
|
|
VERSION,
|
|
|
|
GST_LICENSE,
|
|
|
|
GST_PACKAGE,
|
|
|
|
GST_ORIGIN
|
|
|
|
);
|