2002-03-20 21:45:03 +00:00
|
|
|
/* GStreamer
|
2001-12-20 23:48:55 +00:00
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
2011-09-27 16:15:00 +00:00
|
|
|
* Copyright (C) <2004> Wim Taymans <wim.taymans@gmail.com>
|
2005-09-16 16:04:28 +00:00
|
|
|
* Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
|
2001-12-20 23:48:55 +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.
|
|
|
|
*/
|
|
|
|
|
2006-10-13 14:19:24 +00:00
|
|
|
/**
|
|
|
|
* SECTION:element-lame
|
2011-09-23 13:26:48 +00:00
|
|
|
* @see_also: lame, mad, vorbisenc
|
2006-10-13 14:19:24 +00:00
|
|
|
*
|
|
|
|
* This element encodes raw integer audio into an MPEG-1 layer 3 (MP3) stream.
|
|
|
|
* Note that <ulink url="http://en.wikipedia.org/wiki/MP3">MP3</ulink> is not
|
|
|
|
* a free format, there are licensing and patent issues to take into
|
|
|
|
* consideration. See <ulink url="http://www.vorbis.com/">Ogg/Vorbis</ulink>
|
|
|
|
* for a royalty free (and often higher quality) alternative.
|
2008-06-13 06:57:21 +00:00
|
|
|
*
|
|
|
|
* <refsect2>
|
2009-04-29 17:01:44 +00:00
|
|
|
* <title>Note</title>
|
2011-09-23 13:26:48 +00:00
|
|
|
* This element is deprecated, use the lame element instead
|
2009-04-29 17:01:44 +00:00
|
|
|
* which provides a much simpler interface and results in better MP3 files.
|
|
|
|
* </refsect2>
|
|
|
|
*
|
|
|
|
* <refsect2>
|
2007-09-24 10:26:21 +00:00
|
|
|
* <title>Output sample rate</title>
|
|
|
|
* If no fixed output sample rate is negotiated on the element's src pad,
|
|
|
|
* the element will choose an optimal sample rate to resample to internally.
|
|
|
|
* For example, a 16-bit 44.1 KHz mono audio stream encoded at 48 kbit will
|
|
|
|
* get resampled to 32 KHz. Use filter caps on the src pad to force a
|
|
|
|
* particular sample rate.
|
2008-06-13 06:57:21 +00:00
|
|
|
* </refsect2>
|
|
|
|
* <refsect2>
|
2006-10-13 14:19:24 +00:00
|
|
|
* <title>Writing metadata (tags)</title>
|
|
|
|
* Whilst the lame encoder element does claim to implement the GstTagSetter
|
|
|
|
* interface, it does so only for backwards compatibility reasons. Tag writing
|
|
|
|
* has been removed from lame. Use external elements like id3v2mux or apev2mux
|
|
|
|
* to add tags to your MP3 streams. The same goes for XING headers: use the
|
|
|
|
* xingmux element to add XING headers to your VBR mp3 file.
|
2008-06-13 06:57:21 +00:00
|
|
|
* </refsect2>
|
|
|
|
* <refsect2>
|
2006-10-13 14:19:24 +00:00
|
|
|
* <title>Example pipelines</title>
|
2008-06-13 06:57:21 +00:00
|
|
|
* |[
|
2006-10-13 14:19:24 +00:00
|
|
|
* gst-launch -v audiotestsrc wave=sine num-buffers=100 ! audioconvert ! lame ! filesink location=sine.mp3
|
2008-06-13 06:57:21 +00:00
|
|
|
* ]| Encode a test sine signal to MP3.
|
|
|
|
* |[
|
2006-10-13 14:19:24 +00:00
|
|
|
* gst-launch -v alsasrc ! audioconvert ! lame bitrate=192 ! filesink location=alsasrc.mp3
|
2008-06-13 06:57:21 +00:00
|
|
|
* ]| Record from a sound card using ALSA and encode to MP3
|
|
|
|
* |[
|
2006-10-13 14:19:24 +00:00
|
|
|
* gst-launch -v filesrc location=music.wav ! decodebin ! audioconvert ! audioresample ! lame bitrate=192 ! id3v2mux ! filesink location=music.mp3
|
2008-06-13 06:57:21 +00:00
|
|
|
* ]| Transcode from a .wav file to MP3 (the id3v2mux element is optional)
|
|
|
|
* |[
|
2006-10-13 14:19:24 +00:00
|
|
|
* gst-launch -v cdda://5 ! audioconvert ! lame bitrate=192 ! filesink location=track5.mp3
|
2008-06-13 06:57:21 +00:00
|
|
|
* ]| Encode Audio CD track 5 to MP3
|
|
|
|
* |[
|
2011-09-27 16:19:50 +00:00
|
|
|
* gst-launch -v audiotestsrc num-buffers=10 ! audio/x-raw,rate=44100,channels=1 ! lame bitrate=48 mode=3 ! filesink location=test.mp3
|
2008-06-13 06:57:21 +00:00
|
|
|
* ]| Encode to a fixed sample rate
|
2006-10-13 14:19:24 +00:00
|
|
|
* </refsect2>
|
|
|
|
*
|
2007-09-24 10:26:21 +00:00
|
|
|
* Last reviewed on 2007-07-24 (0.10.7)
|
2006-10-13 14:19:24 +00:00
|
|
|
*/
|
|
|
|
|
2008-07-29 16:57:16 +00:00
|
|
|
/* FIXME 0.11: Remove all properties except the useful ones. Nobody knows what most
|
|
|
|
* properties are doing and they're intended for LAME developers only.
|
|
|
|
*/
|
|
|
|
|
2003-06-29 19:46:09 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2006-10-13 10:00:27 +00:00
|
|
|
|
2003-07-05 22:48:58 +00:00
|
|
|
#include "string.h"
|
2001-12-20 23:48:55 +00:00
|
|
|
#include "gstlame.h"
|
2006-10-13 10:00:27 +00:00
|
|
|
#include "gst/gst-i18n-plugin.h"
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2004-08-19 22:44:50 +00:00
|
|
|
#ifdef lame_set_preset
|
|
|
|
#define GST_LAME_PRESET
|
|
|
|
#endif
|
|
|
|
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (debug);
|
|
|
|
#define GST_CAT_DEFAULT debug
|
|
|
|
|
2004-06-14 10:52:35 +00:00
|
|
|
/* LAME can do MPEG-1, MPEG-2, and MPEG-2.5, so it has 9 possible
|
|
|
|
* sample rates it supports */
|
2003-12-22 01:47:08 +00:00
|
|
|
static GstStaticPadTemplate gst_lame_sink_template =
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2011-09-27 16:19:50 +00:00
|
|
|
GST_STATIC_CAPS ("audio/x-raw, "
|
|
|
|
"format = (string) " GST_AUDIO_NE (S16) ", "
|
2004-03-15 19:32:25 +00:00
|
|
|
"rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000 }, "
|
|
|
|
"channels = (int) [ 1, 2 ]")
|
2004-03-14 22:34:30 +00:00
|
|
|
);
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2003-12-22 01:47:08 +00:00
|
|
|
static GstStaticPadTemplate gst_lame_src_template =
|
2004-03-14 22:34:30 +00:00
|
|
|
GST_STATIC_PAD_TEMPLATE ("src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS ("audio/mpeg, "
|
2004-03-15 19:32:25 +00:00
|
|
|
"mpegversion = (int) 1, "
|
|
|
|
"layer = (int) 3, "
|
|
|
|
"rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000 }, "
|
|
|
|
"channels = (int) [ 1, 2 ]")
|
2004-03-14 22:34:30 +00:00
|
|
|
);
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2008-07-29 16:57:16 +00:00
|
|
|
static struct
|
|
|
|
{
|
|
|
|
gint bitrate;
|
|
|
|
gfloat compression_ratio;
|
|
|
|
gint quality;
|
|
|
|
gint mode;
|
|
|
|
gboolean force_ms;
|
|
|
|
gboolean free_format;
|
|
|
|
gboolean copyright;
|
|
|
|
gboolean original;
|
|
|
|
gboolean error_protection;
|
|
|
|
gboolean extension;
|
|
|
|
gboolean strict_iso;
|
|
|
|
gboolean disable_reservoir;
|
|
|
|
gint vbr;
|
|
|
|
gint vbr_quality;
|
|
|
|
gint vbr_mean_bitrate;
|
|
|
|
gint vbr_min_bitrate;
|
|
|
|
gint vbr_max_bitrate;
|
|
|
|
gint vbr_hard_min;
|
|
|
|
gint lowpass_freq;
|
|
|
|
gint lowpass_width;
|
|
|
|
gint highpass_freq;
|
|
|
|
gint highpass_width;
|
|
|
|
gboolean ath_only;
|
|
|
|
gboolean ath_short;
|
|
|
|
gboolean no_ath;
|
|
|
|
gint ath_type;
|
|
|
|
gint ath_lower;
|
|
|
|
gboolean allow_diff_short;
|
|
|
|
gboolean no_short_blocks;
|
|
|
|
gboolean emphasis;
|
|
|
|
gint preset;
|
|
|
|
} gst_lame_default_settings;
|
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
/********** Define useful types for non-programmatic interfaces **********/
|
|
|
|
#define GST_TYPE_LAME_MODE (gst_lame_mode_get_type())
|
|
|
|
static GType
|
|
|
|
gst_lame_mode_get_type (void)
|
|
|
|
{
|
|
|
|
static GType lame_mode_type = 0;
|
|
|
|
static GEnumValue lame_modes[] = {
|
2005-11-22 17:04:38 +00:00
|
|
|
{0, "Stereo", "stereo"},
|
|
|
|
{1, "Joint Stereo", "joint"},
|
|
|
|
{2, "Dual Channel", "dual"},
|
|
|
|
{3, "Mono", "mono"},
|
|
|
|
{4, "Auto", "auto"},
|
2004-08-13 15:22:49 +00:00
|
|
|
{0, NULL, NULL}
|
2001-12-20 23:48:55 +00:00
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
if (!lame_mode_type) {
|
|
|
|
lame_mode_type = g_enum_register_static ("GstLameMode", lame_modes);
|
|
|
|
}
|
|
|
|
return lame_mode_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GST_TYPE_LAME_QUALITY (gst_lame_quality_get_type())
|
|
|
|
static GType
|
|
|
|
gst_lame_quality_get_type (void)
|
|
|
|
{
|
|
|
|
static GType lame_quality_type = 0;
|
|
|
|
static GEnumValue lame_quality[] = {
|
2005-11-22 17:15:25 +00:00
|
|
|
{0, "0 - Best", "0"},
|
2004-03-14 22:34:30 +00:00
|
|
|
{1, "1", "1"},
|
|
|
|
{2, "2", "2"},
|
|
|
|
{3, "3", "3"},
|
|
|
|
{4, "4", "4"},
|
2005-11-22 17:15:25 +00:00
|
|
|
{5, "5 - Default", "5"},
|
2004-03-14 22:34:30 +00:00
|
|
|
{6, "6", "6"},
|
|
|
|
{7, "7", "7"},
|
|
|
|
{8, "8", "8"},
|
2005-11-22 17:15:25 +00:00
|
|
|
{9, "9 - Worst", "9"},
|
2004-08-13 15:22:49 +00:00
|
|
|
{0, NULL, NULL}
|
2001-12-20 23:48:55 +00:00
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
if (!lame_quality_type) {
|
|
|
|
lame_quality_type = g_enum_register_static ("GstLameQuality", lame_quality);
|
|
|
|
}
|
|
|
|
return lame_quality_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GST_TYPE_LAME_PADDING (gst_lame_padding_get_type())
|
|
|
|
static GType
|
|
|
|
gst_lame_padding_get_type (void)
|
|
|
|
{
|
|
|
|
static GType lame_padding_type = 0;
|
|
|
|
static GEnumValue lame_padding[] = {
|
2005-11-22 17:04:38 +00:00
|
|
|
{0, "No Padding", "never"},
|
|
|
|
{1, "Always Pad", "always"},
|
|
|
|
{2, "Adjust Padding", "adjust"},
|
2004-08-13 15:22:49 +00:00
|
|
|
{0, NULL, NULL}
|
2001-12-20 23:48:55 +00:00
|
|
|
};
|
2004-03-15 19:32:25 +00:00
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
if (!lame_padding_type) {
|
|
|
|
lame_padding_type = g_enum_register_static ("GstLamePadding", lame_padding);
|
|
|
|
}
|
|
|
|
return lame_padding_type;
|
|
|
|
}
|
|
|
|
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
#define GST_TYPE_LAME_VBRMODE (gst_lame_vbrmode_get_type())
|
|
|
|
static GType
|
|
|
|
gst_lame_vbrmode_get_type (void)
|
|
|
|
{
|
|
|
|
static GType lame_vbrmode_type = 0;
|
|
|
|
static GEnumValue lame_vbrmode[] = {
|
2005-11-22 17:04:38 +00:00
|
|
|
{vbr_off, "No VBR (Constant Bitrate)", "none"},
|
|
|
|
{vbr_rh, "Lame's old VBR algorithm", "old"},
|
|
|
|
{vbr_abr, "VBR Average Bitrate", "abr"},
|
|
|
|
{vbr_mtrh, "Lame's new VBR algorithm", "new"},
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
{0, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!lame_vbrmode_type) {
|
|
|
|
lame_vbrmode_type = g_enum_register_static ("GstLameVbrmode", lame_vbrmode);
|
|
|
|
}
|
|
|
|
|
|
|
|
return lame_vbrmode_type;
|
|
|
|
}
|
|
|
|
|
2004-08-19 22:44:50 +00:00
|
|
|
#ifdef GSTLAME_PRESET
|
2004-08-13 15:22:49 +00:00
|
|
|
#define GST_TYPE_LAME_PRESET (gst_lame_preset_get_type())
|
|
|
|
static GType
|
|
|
|
gst_lame_preset_get_type (void)
|
|
|
|
{
|
|
|
|
static GType gst_lame_preset = 0;
|
|
|
|
static GEnumValue gst_lame_presets[] = {
|
2005-11-22 17:04:38 +00:00
|
|
|
{0, "None", "none"},
|
|
|
|
{MEDIUM, "Medium", "medium"},
|
|
|
|
{STANDARD, "Standard", "standard"},
|
|
|
|
{EXTREME, "Extreme", "extreme"},
|
|
|
|
{INSANE, "Insane", "insane"},
|
2004-08-13 15:22:49 +00:00
|
|
|
{0, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!gst_lame_preset) {
|
|
|
|
gst_lame_preset =
|
|
|
|
g_enum_register_static ("GstLamePreset", gst_lame_presets);
|
|
|
|
}
|
|
|
|
|
|
|
|
return gst_lame_preset;
|
|
|
|
}
|
2004-08-19 22:44:50 +00:00
|
|
|
#endif
|
2004-08-13 15:22:49 +00:00
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
/********** Standard stuff for signals and arguments **********/
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
enum
|
|
|
|
{
|
2001-12-20 23:48:55 +00:00
|
|
|
ARG_0,
|
|
|
|
ARG_BITRATE,
|
|
|
|
ARG_COMPRESSION_RATIO,
|
|
|
|
ARG_QUALITY,
|
|
|
|
ARG_MODE,
|
|
|
|
ARG_FORCE_MS,
|
|
|
|
ARG_FREE_FORMAT,
|
|
|
|
ARG_COPYRIGHT,
|
|
|
|
ARG_ORIGINAL,
|
|
|
|
ARG_ERROR_PROTECTION,
|
2008-07-22 18:25:08 +00:00
|
|
|
ARG_PADDING_TYPE, /* FIXME: remove in 0.11 */
|
2001-12-20 23:48:55 +00:00
|
|
|
ARG_EXTENSION,
|
|
|
|
ARG_STRICT_ISO,
|
|
|
|
ARG_DISABLE_RESERVOIR,
|
|
|
|
ARG_VBR,
|
|
|
|
ARG_VBR_MEAN_BITRATE,
|
|
|
|
ARG_VBR_MIN_BITRATE,
|
|
|
|
ARG_VBR_MAX_BITRATE,
|
|
|
|
ARG_VBR_HARD_MIN,
|
|
|
|
ARG_LOWPASS_FREQ,
|
|
|
|
ARG_LOWPASS_WIDTH,
|
|
|
|
ARG_HIGHPASS_FREQ,
|
|
|
|
ARG_HIGHPASS_WIDTH,
|
|
|
|
ARG_ATH_ONLY,
|
|
|
|
ARG_ATH_SHORT,
|
|
|
|
ARG_NO_ATH,
|
|
|
|
ARG_ATH_LOWER,
|
2008-07-22 18:25:08 +00:00
|
|
|
ARG_CWLIMIT, /* FIXME: remove in 0.11 */
|
2001-12-20 23:48:55 +00:00
|
|
|
ARG_ALLOW_DIFF_SHORT,
|
|
|
|
ARG_NO_SHORT_BLOCKS,
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
ARG_EMPHASIS,
|
|
|
|
ARG_VBR_QUALITY,
|
2004-08-19 22:44:50 +00:00
|
|
|
#ifdef GSTLAME_PRESET
|
2006-03-28 16:06:05 +00:00
|
|
|
ARG_XINGHEADER, /* FIXME: remove in 0.11 */
|
2004-08-13 15:22:49 +00:00
|
|
|
ARG_PRESET
|
2004-08-19 22:44:50 +00:00
|
|
|
#else
|
2006-03-28 16:06:05 +00:00
|
|
|
ARG_XINGHEADER /* FIXME: remove in 0.11 */
|
2004-08-19 22:44:50 +00:00
|
|
|
#endif
|
2001-12-20 23:48:55 +00:00
|
|
|
};
|
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
static gboolean gst_lame_start (GstAudioEncoder * enc);
|
|
|
|
static gboolean gst_lame_stop (GstAudioEncoder * enc);
|
|
|
|
static gboolean gst_lame_set_format (GstAudioEncoder * enc,
|
|
|
|
GstAudioInfo * info);
|
|
|
|
static GstFlowReturn gst_lame_handle_frame (GstAudioEncoder * enc,
|
|
|
|
GstBuffer * in_buf);
|
|
|
|
static void gst_lame_flush (GstAudioEncoder * enc);
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
static void gst_lame_set_property (GObject * object, guint prop_id,
|
|
|
|
const GValue * value, GParamSpec * pspec);
|
|
|
|
static void gst_lame_get_property (GObject * object, guint prop_id,
|
|
|
|
GValue * value, GParamSpec * pspec);
|
|
|
|
static gboolean gst_lame_setup (GstLame * lame);
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2011-09-27 16:15:00 +00:00
|
|
|
#define gst_lame_parent_class parent_class
|
|
|
|
G_DEFINE_TYPE (GstLame, gst_lame, GST_TYPE_AUDIO_ENCODER);
|
2011-09-23 13:32:01 +00:00
|
|
|
|
2006-01-23 18:37:16 +00:00
|
|
|
static void
|
2006-03-15 13:43:42 +00:00
|
|
|
gst_lame_release_memory (GstLame * lame)
|
2006-01-23 18:37:16 +00:00
|
|
|
{
|
2006-03-15 13:43:42 +00:00
|
|
|
if (lame->lgf) {
|
|
|
|
lame_close (lame->lgf);
|
|
|
|
lame->lgf = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_lame_finalize (GObject * obj)
|
|
|
|
{
|
|
|
|
gst_lame_release_memory (GST_LAME (obj));
|
|
|
|
|
2006-01-23 18:37:16 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (obj);
|
|
|
|
}
|
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_lame_class_init (GstLameClass * klass)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
2011-09-27 16:15:00 +00:00
|
|
|
GstElementClass *gstelement_class;
|
2011-09-23 13:26:48 +00:00
|
|
|
GstAudioEncoderClass *base_class;
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
gobject_class = (GObjectClass *) klass;
|
2011-09-27 16:15:00 +00:00
|
|
|
gstelement_class = (GstElementClass *) klass;
|
2011-09-23 13:26:48 +00:00
|
|
|
base_class = (GstAudioEncoderClass *) klass;
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
gobject_class->set_property = gst_lame_set_property;
|
|
|
|
gobject_class->get_property = gst_lame_get_property;
|
2006-01-23 18:37:16 +00:00
|
|
|
gobject_class->finalize = gst_lame_finalize;
|
2005-08-16 16:12:15 +00:00
|
|
|
|
2011-09-27 16:15:00 +00:00
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&gst_lame_src_template));
|
|
|
|
gst_element_class_add_pad_template (gstelement_class,
|
|
|
|
gst_static_pad_template_get (&gst_lame_sink_template));
|
|
|
|
|
|
|
|
gst_element_class_set_details_simple (gstelement_class,
|
|
|
|
"L.A.M.E. mp3 encoder", "Codec/Encoder/Audio",
|
|
|
|
"High-quality free MP3 encoder (deprecated)",
|
|
|
|
"Erik Walthinsen <omega@cse.ogi.edu>, "
|
|
|
|
"Wim Taymans <wim.taymans@gmail.com>");
|
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
base_class->start = GST_DEBUG_FUNCPTR (gst_lame_start);
|
|
|
|
base_class->stop = GST_DEBUG_FUNCPTR (gst_lame_stop);
|
|
|
|
base_class->set_format = GST_DEBUG_FUNCPTR (gst_lame_set_format);
|
|
|
|
base_class->handle_frame = GST_DEBUG_FUNCPTR (gst_lame_handle_frame);
|
|
|
|
base_class->flush = GST_DEBUG_FUNCPTR (gst_lame_flush);
|
|
|
|
|
2002-09-01 15:40:39 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BITRATE,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("bitrate", "Bitrate (kb/s)",
|
|
|
|
"Bitrate in kbit/sec (8, 16, 24, 32, 40, 48, 56, 64, 80, 96, "
|
|
|
|
"112, 128, 160, 192, 224, 256 or 320)",
|
2010-10-19 07:06:33 +00:00
|
|
|
0, 320, gst_lame_default_settings.bitrate,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2004-08-12 15:48:50 +00:00
|
|
|
/* compression ratio set to 0.0 by default otherwise it overrides the bitrate setting */
|
2004-03-14 22:34:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
2010-10-19 09:20:40 +00:00
|
|
|
ARG_COMPRESSION_RATIO, g_param_spec_float ("compression-ratio",
|
2004-03-15 19:32:25 +00:00
|
|
|
"Compression Ratio",
|
2004-08-12 15:48:50 +00:00
|
|
|
"let lame choose bitrate to achieve selected compression ratio", 0.0,
|
2008-07-29 16:57:16 +00:00
|
|
|
200.0, gst_lame_default_settings.compression_ratio,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_QUALITY,
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
g_param_spec_enum ("quality", "Quality",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Quality of algorithm used for encoding", GST_TYPE_LAME_QUALITY,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.quality,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MODE,
|
2008-07-29 16:57:16 +00:00
|
|
|
g_param_spec_enum ("mode", "Mode", "Encoding mode", GST_TYPE_LAME_MODE,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.mode,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FORCE_MS,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("force-ms", "Force ms",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Force ms_stereo on all frames", gst_lame_default_settings.force_ms,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FREE_FORMAT,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("free-format", "Free format",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Produce a free format bitstream",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.free_format,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_COPYRIGHT,
|
2008-07-29 16:57:16 +00:00
|
|
|
g_param_spec_boolean ("copyright", "Copyright", "Mark as copyright",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.copyright,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2004-03-14 22:34:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ORIGINAL,
|
2008-07-29 16:57:16 +00:00
|
|
|
g_param_spec_boolean ("original", "Original", "Mark as original",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.original,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ERROR_PROTECTION,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("error-protection", "Error protection",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Adds 16 bit checksum to every frame",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.error_protection,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_PADDING_TYPE,
|
2008-07-29 16:57:16 +00:00
|
|
|
g_param_spec_enum ("padding-type", "Padding type",
|
|
|
|
"Padding type " "(DEPRECATED: this setting has no effect)",
|
2010-10-19 07:06:33 +00:00
|
|
|
GST_TYPE_LAME_PADDING, FALSE,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_EXTENSION,
|
2008-07-29 16:57:16 +00:00
|
|
|
g_param_spec_boolean ("extension", "Extension", "Extension",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.extension,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_STRICT_ISO,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("strict-iso", "Strict ISO",
|
2004-03-15 19:32:25 +00:00
|
|
|
"Comply as much as possible to ISO MPEG spec", TRUE,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2004-03-14 22:34:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass),
|
2006-10-13 14:19:24 +00:00
|
|
|
ARG_DISABLE_RESERVOIR, g_param_spec_boolean ("disable-reservoir",
|
2004-03-15 19:32:25 +00:00
|
|
|
"Disable reservoir", "Disable the bit reservoir", TRUE,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VBR,
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
g_param_spec_enum ("vbr", "VBR", "Specify bitrate mode",
|
2008-07-29 16:57:16 +00:00
|
|
|
GST_TYPE_LAME_VBRMODE, gst_lame_default_settings.vbr,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VBR_QUALITY,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_enum ("vbr-quality", "VBR Quality", "VBR Quality",
|
2008-07-29 16:57:16 +00:00
|
|
|
GST_TYPE_LAME_QUALITY, gst_lame_default_settings.vbr_quality,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VBR_MEAN_BITRATE,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("vbr-mean-bitrate", "VBR mean bitrate",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Specify mean VBR bitrate", 0, 320,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.vbr_mean_bitrate,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VBR_MIN_BITRATE,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("vbr-min-bitrate", "VBR min bitrate",
|
|
|
|
"Specify minimum VBR bitrate (8, 16, 24, 32, 40, 48, 56, 64, 80, 96, "
|
2008-07-29 16:57:16 +00:00
|
|
|
"112, 128, 160, 192, 224, 256 or 320)", 0, 320,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.vbr_min_bitrate,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2004-03-14 22:34:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VBR_MAX_BITRATE,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("vbr-max-bitrate", "VBR max bitrate",
|
|
|
|
"Specify maximum VBR bitrate (8, 16, 24, 32, 40, 48, 56, 64, 80, 96, "
|
2008-07-29 16:57:16 +00:00
|
|
|
"112, 128, 160, 192, 224, 256 or 320)", 0, 320,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.vbr_max_bitrate,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2004-03-14 22:34:30 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_VBR_HARD_MIN,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("vbr-hard-min", "VBR hard min",
|
2007-02-28 18:41:38 +00:00
|
|
|
"Specify whether min VBR bitrate is a hard limit. Normally, "
|
2008-07-29 16:57:16 +00:00
|
|
|
"it can be violated for silence", 0, 1,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.vbr_hard_min,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LOWPASS_FREQ,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("lowpass-freq", "Lowpass freq",
|
2008-07-29 16:57:16 +00:00
|
|
|
"frequency(kHz), lowpass filter cutoff above freq", 0, 50000,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.lowpass_freq,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LOWPASS_WIDTH,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("lowpass-width", "Lowpass width",
|
2008-07-29 16:57:16 +00:00
|
|
|
"frequency(kHz) - default 15% of lowpass freq", -1, G_MAXINT,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.lowpass_width,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_HIGHPASS_FREQ,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("highpass-freq", "Highpass freq",
|
2008-07-29 16:57:16 +00:00
|
|
|
"frequency(kHz), highpass filter cutoff below freq", 0, 50000,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.highpass_freq,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_HIGHPASS_WIDTH,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("highpass-width", "Highpass width",
|
2008-07-29 16:57:16 +00:00
|
|
|
"frequency(kHz) - default 15% of highpass freq", -1, G_MAXINT,
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.highpass_width,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ATH_ONLY,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("ath-only", "ATH only",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Ignore GPSYCHO completely, use ATH only",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.ath_only,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ATH_SHORT,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("ath-short", "ATH short",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Ignore GPSYCHO for short blocks, use ATH only",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.ath_short,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_NO_ATH,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("no-ath", "No ath",
|
2008-07-29 16:57:16 +00:00
|
|
|
"turns ATH down to a flat noise floor",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.no_ath,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ATH_LOWER,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_int ("ath-lower", "ATH lower", "lowers ATH by x dB",
|
2008-07-29 16:57:16 +00:00
|
|
|
G_MININT, G_MAXINT, gst_lame_default_settings.ath_lower,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CWLIMIT,
|
2004-03-14 22:34:30 +00:00
|
|
|
g_param_spec_int ("cwlimit", "Cwlimit",
|
2008-07-22 18:25:08 +00:00
|
|
|
"Compute tonality up to freq (in kHz) default 8.8717 "
|
|
|
|
"(DEPRECATED: this setting has no effect)", 0, 50000, 0,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_ALLOW_DIFF_SHORT,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("allow-diff-short", "Allow diff short",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Allow diff short", gst_lame_default_settings.allow_diff_short,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2002-12-08 02:44:00 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_NO_SHORT_BLOCKS,
|
2006-10-13 14:19:24 +00:00
|
|
|
g_param_spec_boolean ("no-short-blocks", "No short blocks",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Do not use short blocks", gst_lame_default_settings.no_short_blocks,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2008-07-29 16:57:16 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_EMPHASIS,
|
|
|
|
g_param_spec_boolean ("emphasis", "Emphasis", "Emphasis",
|
2010-10-19 07:06:33 +00:00
|
|
|
gst_lame_default_settings.emphasis,
|
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_XINGHEADER,
|
|
|
|
g_param_spec_boolean ("xingheader", "Output Xing Header",
|
2008-07-29 16:57:16 +00:00
|
|
|
"Output Xing Header (BROKEN, use xingmux instead)", FALSE,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2004-08-19 22:44:50 +00:00
|
|
|
#ifdef GSTLAME_PRESET
|
2004-08-13 15:22:49 +00:00
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_PRESET,
|
|
|
|
g_param_spec_enum ("preset", "Lame Preset", "Lame Preset",
|
2008-07-29 16:57:16 +00:00
|
|
|
GST_TYPE_LAME_PRESET, gst_lame_default_settings.preset,
|
2010-10-19 07:06:33 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
2004-08-19 22:44:50 +00:00
|
|
|
#endif
|
2007-09-24 10:26:21 +00:00
|
|
|
}
|
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
static gboolean
|
2011-09-23 13:26:48 +00:00
|
|
|
gst_lame_set_format (GstAudioEncoder * enc, GstAudioInfo * info)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
|
|
|
GstLame *lame;
|
2003-09-30 19:48:39 +00:00
|
|
|
gint out_samplerate;
|
2008-07-27 11:01:12 +00:00
|
|
|
gint version;
|
2003-12-22 01:47:08 +00:00
|
|
|
GstCaps *othercaps;
|
2011-09-23 13:26:48 +00:00
|
|
|
GstClockTime latency;
|
|
|
|
|
|
|
|
lame = GST_LAME (enc);
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
/* parameters already parsed for us */
|
|
|
|
lame->samplerate = GST_AUDIO_INFO_RATE (info);
|
|
|
|
lame->num_channels = GST_AUDIO_INFO_CHANNELS (info);
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
/* but we might be asked to reconfigure, so reset */
|
|
|
|
gst_lame_release_memory (lame);
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2006-10-13 10:00:27 +00:00
|
|
|
GST_DEBUG_OBJECT (lame, "setting up lame");
|
2005-08-16 16:12:15 +00:00
|
|
|
if (!gst_lame_setup (lame))
|
|
|
|
goto setup_failed;
|
2002-01-13 22:27:24 +00:00
|
|
|
|
2003-09-30 19:48:39 +00:00
|
|
|
out_samplerate = lame_get_out_samplerate (lame->lgf);
|
2005-09-16 16:04:28 +00:00
|
|
|
if (out_samplerate == 0)
|
|
|
|
goto zero_output_rate;
|
2006-12-30 20:01:35 +00:00
|
|
|
if (out_samplerate != lame->samplerate) {
|
|
|
|
GST_WARNING_OBJECT (lame,
|
|
|
|
"output samplerate %d is different from incoming samplerate %d",
|
|
|
|
out_samplerate, lame->samplerate);
|
|
|
|
}
|
2005-09-16 16:04:28 +00:00
|
|
|
|
2008-07-27 11:01:12 +00:00
|
|
|
version = lame_get_version (lame->lgf);
|
|
|
|
if (version == 0)
|
|
|
|
version = 2;
|
|
|
|
else if (version == 1)
|
|
|
|
version = 1;
|
|
|
|
else if (version == 2)
|
|
|
|
version = 3;
|
|
|
|
|
2004-03-14 22:34:30 +00:00
|
|
|
othercaps =
|
|
|
|
gst_caps_new_simple ("audio/mpeg",
|
|
|
|
"mpegversion", G_TYPE_INT, 1,
|
2008-07-27 11:01:12 +00:00
|
|
|
"mpegaudioversion", G_TYPE_INT, version,
|
2004-03-14 22:34:30 +00:00
|
|
|
"layer", G_TYPE_INT, 3,
|
2008-01-14 09:17:47 +00:00
|
|
|
"channels", G_TYPE_INT, lame->mode == MONO ? 1 : lame->num_channels,
|
2004-03-14 22:34:30 +00:00
|
|
|
"rate", G_TYPE_INT, out_samplerate, NULL);
|
2003-12-22 01:47:08 +00:00
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
/* and use these caps */
|
2011-09-23 13:26:48 +00:00
|
|
|
gst_pad_set_caps (GST_AUDIO_ENCODER_SRC_PAD (lame), othercaps);
|
2005-08-16 16:12:15 +00:00
|
|
|
gst_caps_unref (othercaps);
|
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
/* base class feedback:
|
|
|
|
* - we will handle buffers, just hand us all available
|
|
|
|
* - report latency */
|
|
|
|
latency = gst_util_uint64_scale_int (lame_get_framesize (lame->lgf),
|
|
|
|
GST_SECOND, lame->samplerate);
|
|
|
|
gst_audio_encoder_set_latency (enc, latency, latency);
|
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2005-09-16 16:04:28 +00:00
|
|
|
zero_output_rate:
|
|
|
|
{
|
2006-10-13 10:00:27 +00:00
|
|
|
GST_ELEMENT_ERROR (lame, LIBRARY, SETTINGS, (NULL),
|
|
|
|
("LAME decided on a zero sample rate"));
|
2005-09-16 16:04:28 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2005-08-16 16:12:15 +00:00
|
|
|
setup_failed:
|
|
|
|
{
|
2006-10-13 10:00:27 +00:00
|
|
|
GST_ELEMENT_ERROR (lame, LIBRARY, SETTINGS,
|
2008-02-22 14:55:57 +00:00
|
|
|
(_("Failed to configure LAME encoder. Check your encoding parameters.")), (NULL));
|
2005-08-16 16:12:15 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2001-12-20 23:48:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-09-27 16:15:00 +00:00
|
|
|
gst_lame_init (GstLame * lame)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
2003-06-29 19:46:09 +00:00
|
|
|
GST_DEBUG_OBJECT (lame, "starting initialization");
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2008-07-29 16:57:16 +00:00
|
|
|
/* Set default settings */
|
|
|
|
lame->bitrate = gst_lame_default_settings.bitrate;
|
|
|
|
lame->compression_ratio = gst_lame_default_settings.compression_ratio;
|
|
|
|
lame->quality = gst_lame_default_settings.quality;
|
|
|
|
lame->mode = gst_lame_default_settings.mode;
|
2008-01-17 17:26:48 +00:00
|
|
|
lame->requested_mode = lame->mode;
|
2008-07-29 16:57:16 +00:00
|
|
|
lame->force_ms = gst_lame_default_settings.force_ms;
|
|
|
|
lame->free_format = gst_lame_default_settings.free_format;
|
|
|
|
lame->copyright = gst_lame_default_settings.copyright;
|
|
|
|
lame->original = gst_lame_default_settings.original;
|
|
|
|
lame->error_protection = gst_lame_default_settings.error_protection;
|
|
|
|
lame->extension = gst_lame_default_settings.extension;
|
|
|
|
lame->strict_iso = gst_lame_default_settings.strict_iso;
|
|
|
|
lame->disable_reservoir = gst_lame_default_settings.disable_reservoir;
|
|
|
|
lame->vbr = gst_lame_default_settings.vbr;
|
|
|
|
lame->vbr_quality = gst_lame_default_settings.vbr_quality;
|
|
|
|
lame->vbr_mean_bitrate = gst_lame_default_settings.vbr_mean_bitrate;
|
|
|
|
lame->vbr_min_bitrate = gst_lame_default_settings.vbr_min_bitrate;
|
|
|
|
lame->vbr_max_bitrate = gst_lame_default_settings.vbr_max_bitrate;
|
|
|
|
lame->vbr_hard_min = gst_lame_default_settings.vbr_hard_min;
|
|
|
|
lame->lowpass_freq = gst_lame_default_settings.lowpass_freq;
|
|
|
|
lame->lowpass_width = gst_lame_default_settings.lowpass_width;
|
|
|
|
lame->highpass_freq = gst_lame_default_settings.highpass_freq;
|
|
|
|
lame->highpass_width = gst_lame_default_settings.highpass_width;
|
|
|
|
lame->ath_only = gst_lame_default_settings.ath_only;
|
|
|
|
lame->ath_short = gst_lame_default_settings.ath_short;
|
|
|
|
lame->no_ath = gst_lame_default_settings.no_ath;
|
|
|
|
lame->ath_lower = gst_lame_default_settings.ath_lower;
|
|
|
|
lame->allow_diff_short = gst_lame_default_settings.allow_diff_short;
|
|
|
|
lame->no_short_blocks = gst_lame_default_settings.no_short_blocks;
|
|
|
|
lame->emphasis = gst_lame_default_settings.emphasis;
|
|
|
|
lame->preset = gst_lame_default_settings.preset;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2003-06-29 19:46:09 +00:00
|
|
|
GST_DEBUG_OBJECT (lame, "done initializing");
|
2001-12-20 23:48:55 +00:00
|
|
|
}
|
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
static gboolean
|
|
|
|
gst_lame_start (GstAudioEncoder * enc)
|
|
|
|
{
|
|
|
|
GstLame *lame = GST_LAME (enc);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (lame, "start");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_lame_stop (GstAudioEncoder * enc)
|
|
|
|
{
|
|
|
|
GstLame *lame = GST_LAME (enc);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (lame, "stop");
|
|
|
|
|
|
|
|
gst_lame_release_memory (lame);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-21 16:02:33 +00:00
|
|
|
/* <php-emulation-mode>three underscores for ___rate is really really really
|
|
|
|
* private as opposed to one underscore<php-emulation-mode> */
|
|
|
|
/* call this MACRO outside of the NULL state so that we have a higher chance
|
|
|
|
* of actually having a pipeline and bus to get the message through */
|
|
|
|
|
2007-03-21 12:53:57 +00:00
|
|
|
#define CHECK_AND_FIXUP_BITRATE(obj,param,rate,free_format) \
|
2006-10-13 14:45:11 +00:00
|
|
|
G_STMT_START { \
|
|
|
|
gint ___rate = rate; \
|
2007-02-28 16:01:08 +00:00
|
|
|
gint maxrate = 320; \
|
|
|
|
gint multiplier = 64; \
|
2007-03-21 12:53:57 +00:00
|
|
|
if (!free_format) { \
|
2008-07-29 16:57:16 +00:00
|
|
|
if (rate == 0) { \
|
|
|
|
___rate = rate; \
|
|
|
|
} else if (rate <= 64) { \
|
2007-03-21 12:53:57 +00:00
|
|
|
maxrate = 64; multiplier = 8; \
|
|
|
|
if ((rate % 8) != 0) ___rate = GST_ROUND_UP_8 (rate); \
|
|
|
|
} else if (rate <= 128) { \
|
|
|
|
maxrate = 128; multiplier = 16; \
|
|
|
|
if ((rate % 16) != 0) ___rate = GST_ROUND_UP_16 (rate); \
|
|
|
|
} else if (rate <= 256) { \
|
|
|
|
maxrate = 256; multiplier = 32; \
|
|
|
|
if ((rate % 32) != 0) ___rate = GST_ROUND_UP_32 (rate); \
|
|
|
|
} else if (rate <= 320) { \
|
|
|
|
maxrate = 320; multiplier = 64; \
|
|
|
|
if ((rate % 64) != 0) ___rate = GST_ROUND_UP_64 (rate); \
|
|
|
|
} \
|
|
|
|
if (___rate != rate) { \
|
|
|
|
GST_ELEMENT_WARNING (obj, LIBRARY, SETTINGS, \
|
|
|
|
(_("The requested bitrate %d kbit/s for property '%s' " \
|
|
|
|
"is not allowed. " \
|
|
|
|
"The bitrate was changed to %d kbit/s."), rate, \
|
|
|
|
param, ___rate), \
|
|
|
|
("A bitrate below %d should be a multiple of %d.", \
|
|
|
|
maxrate, multiplier)); \
|
|
|
|
rate = ___rate; \
|
|
|
|
} \
|
2006-10-13 14:45:11 +00:00
|
|
|
} \
|
|
|
|
} G_STMT_END
|
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_lame_set_property (GObject * object, guint prop_id, const GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
|
|
|
GstLame *lame;
|
|
|
|
|
|
|
|
lame = GST_LAME (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_BITRATE:
|
|
|
|
lame->bitrate = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_COMPRESSION_RATIO:
|
|
|
|
lame->compression_ratio = g_value_get_float (value);
|
|
|
|
break;
|
|
|
|
case ARG_QUALITY:
|
2002-03-27 04:02:38 +00:00
|
|
|
lame->quality = g_value_get_enum (value);
|
2001-12-20 23:48:55 +00:00
|
|
|
break;
|
|
|
|
case ARG_MODE:
|
2008-01-17 17:26:48 +00:00
|
|
|
lame->requested_mode = g_value_get_enum (value);
|
2001-12-20 23:48:55 +00:00
|
|
|
break;
|
|
|
|
case ARG_FORCE_MS:
|
|
|
|
lame->force_ms = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_FREE_FORMAT:
|
|
|
|
lame->free_format = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_COPYRIGHT:
|
|
|
|
lame->copyright = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_ORIGINAL:
|
|
|
|
lame->original = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_ERROR_PROTECTION:
|
|
|
|
lame->error_protection = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_PADDING_TYPE:
|
|
|
|
break;
|
|
|
|
case ARG_EXTENSION:
|
|
|
|
lame->extension = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_STRICT_ISO:
|
|
|
|
lame->strict_iso = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_DISABLE_RESERVOIR:
|
|
|
|
lame->disable_reservoir = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_VBR:
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
lame->vbr = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_QUALITY:
|
|
|
|
lame->vbr_quality = g_value_get_enum (value);
|
2001-12-20 23:48:55 +00:00
|
|
|
break;
|
|
|
|
case ARG_VBR_MEAN_BITRATE:
|
|
|
|
lame->vbr_mean_bitrate = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_MIN_BITRATE:
|
|
|
|
lame->vbr_min_bitrate = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_MAX_BITRATE:
|
|
|
|
lame->vbr_max_bitrate = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_HARD_MIN:
|
|
|
|
lame->vbr_hard_min = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_LOWPASS_FREQ:
|
|
|
|
lame->lowpass_freq = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_LOWPASS_WIDTH:
|
|
|
|
lame->lowpass_width = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_HIGHPASS_FREQ:
|
|
|
|
lame->highpass_freq = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_HIGHPASS_WIDTH:
|
|
|
|
lame->highpass_width = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_ATH_ONLY:
|
|
|
|
lame->ath_only = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_ATH_SHORT:
|
|
|
|
lame->ath_short = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_NO_ATH:
|
|
|
|
lame->no_ath = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_ATH_LOWER:
|
|
|
|
lame->ath_lower = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case ARG_CWLIMIT:
|
|
|
|
break;
|
|
|
|
case ARG_ALLOW_DIFF_SHORT:
|
|
|
|
lame->allow_diff_short = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_NO_SHORT_BLOCKS:
|
|
|
|
lame->no_short_blocks = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
case ARG_EMPHASIS:
|
|
|
|
lame->emphasis = g_value_get_boolean (value);
|
|
|
|
break;
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
case ARG_XINGHEADER:
|
|
|
|
break;
|
2004-08-19 22:44:50 +00:00
|
|
|
#ifdef GSTLAME_PRESET
|
2004-08-13 15:22:49 +00:00
|
|
|
case ARG_PRESET:
|
|
|
|
lame->preset = g_value_get_enum (value);
|
|
|
|
break;
|
2004-08-19 22:44:50 +00:00
|
|
|
#endif
|
2001-12-20 23:48:55 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_lame_get_property (GObject * object, guint prop_id, GValue * value,
|
|
|
|
GParamSpec * pspec)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
|
|
|
GstLame *lame;
|
|
|
|
|
|
|
|
lame = GST_LAME (object);
|
|
|
|
|
|
|
|
switch (prop_id) {
|
|
|
|
case ARG_BITRATE:
|
|
|
|
g_value_set_int (value, lame->bitrate);
|
|
|
|
break;
|
|
|
|
case ARG_COMPRESSION_RATIO:
|
|
|
|
g_value_set_float (value, lame->compression_ratio);
|
|
|
|
break;
|
|
|
|
case ARG_QUALITY:
|
|
|
|
g_value_set_enum (value, lame->quality);
|
|
|
|
break;
|
|
|
|
case ARG_MODE:
|
2008-01-17 17:26:48 +00:00
|
|
|
g_value_set_enum (value, lame->requested_mode);
|
2001-12-20 23:48:55 +00:00
|
|
|
break;
|
|
|
|
case ARG_FORCE_MS:
|
|
|
|
g_value_set_boolean (value, lame->force_ms);
|
|
|
|
break;
|
|
|
|
case ARG_FREE_FORMAT:
|
|
|
|
g_value_set_boolean (value, lame->free_format);
|
|
|
|
break;
|
|
|
|
case ARG_COPYRIGHT:
|
|
|
|
g_value_set_boolean (value, lame->copyright);
|
|
|
|
break;
|
|
|
|
case ARG_ORIGINAL:
|
|
|
|
g_value_set_boolean (value, lame->original);
|
|
|
|
break;
|
|
|
|
case ARG_ERROR_PROTECTION:
|
|
|
|
g_value_set_boolean (value, lame->error_protection);
|
|
|
|
break;
|
|
|
|
case ARG_PADDING_TYPE:
|
|
|
|
break;
|
|
|
|
case ARG_EXTENSION:
|
|
|
|
g_value_set_boolean (value, lame->extension);
|
|
|
|
break;
|
|
|
|
case ARG_STRICT_ISO:
|
|
|
|
g_value_set_boolean (value, lame->strict_iso);
|
|
|
|
break;
|
|
|
|
case ARG_DISABLE_RESERVOIR:
|
|
|
|
g_value_set_boolean (value, lame->disable_reservoir);
|
|
|
|
break;
|
|
|
|
case ARG_VBR:
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
g_value_set_enum (value, lame->vbr);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_QUALITY:
|
|
|
|
g_value_set_enum (value, lame->vbr_quality);
|
2001-12-20 23:48:55 +00:00
|
|
|
break;
|
|
|
|
case ARG_VBR_MEAN_BITRATE:
|
|
|
|
g_value_set_int (value, lame->vbr_mean_bitrate);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_MIN_BITRATE:
|
|
|
|
g_value_set_int (value, lame->vbr_min_bitrate);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_MAX_BITRATE:
|
|
|
|
g_value_set_int (value, lame->vbr_max_bitrate);
|
|
|
|
break;
|
|
|
|
case ARG_VBR_HARD_MIN:
|
|
|
|
g_value_set_int (value, lame->vbr_hard_min);
|
|
|
|
break;
|
|
|
|
case ARG_LOWPASS_FREQ:
|
|
|
|
g_value_set_int (value, lame->lowpass_freq);
|
|
|
|
break;
|
|
|
|
case ARG_LOWPASS_WIDTH:
|
|
|
|
g_value_set_int (value, lame->lowpass_width);
|
|
|
|
break;
|
|
|
|
case ARG_HIGHPASS_FREQ:
|
|
|
|
g_value_set_int (value, lame->highpass_freq);
|
|
|
|
break;
|
|
|
|
case ARG_HIGHPASS_WIDTH:
|
|
|
|
g_value_set_int (value, lame->highpass_width);
|
|
|
|
break;
|
|
|
|
case ARG_ATH_ONLY:
|
|
|
|
g_value_set_boolean (value, lame->ath_only);
|
|
|
|
break;
|
|
|
|
case ARG_ATH_SHORT:
|
|
|
|
g_value_set_boolean (value, lame->ath_short);
|
|
|
|
break;
|
|
|
|
case ARG_NO_ATH:
|
|
|
|
g_value_set_boolean (value, lame->no_ath);
|
|
|
|
break;
|
|
|
|
case ARG_ATH_LOWER:
|
|
|
|
g_value_set_int (value, lame->ath_lower);
|
|
|
|
break;
|
|
|
|
case ARG_CWLIMIT:
|
|
|
|
break;
|
|
|
|
case ARG_ALLOW_DIFF_SHORT:
|
|
|
|
g_value_set_boolean (value, lame->allow_diff_short);
|
|
|
|
break;
|
|
|
|
case ARG_NO_SHORT_BLOCKS:
|
|
|
|
g_value_set_boolean (value, lame->no_short_blocks);
|
|
|
|
break;
|
|
|
|
case ARG_EMPHASIS:
|
|
|
|
g_value_set_boolean (value, lame->emphasis);
|
|
|
|
break;
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
case ARG_XINGHEADER:
|
2004-08-13 14:55:27 +00:00
|
|
|
break;
|
2004-08-19 22:44:50 +00:00
|
|
|
#ifdef GSTLAME_PRESET
|
2004-08-13 15:22:49 +00:00
|
|
|
case ARG_PRESET:
|
|
|
|
g_value_set_enum (value, lame->preset);
|
|
|
|
break;
|
2004-08-19 22:44:50 +00:00
|
|
|
#endif
|
2001-12-20 23:48:55 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
static GstFlowReturn
|
|
|
|
gst_lame_flush_full (GstLame * lame, gboolean push)
|
2005-08-16 16:12:15 +00:00
|
|
|
{
|
2011-09-23 13:26:48 +00:00
|
|
|
GstBuffer *buf;
|
2011-09-27 16:15:00 +00:00
|
|
|
guint8 *data;
|
2011-09-23 13:26:48 +00:00
|
|
|
gint size;
|
|
|
|
GstFlowReturn result = GST_FLOW_OK;
|
2005-08-16 16:12:15 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
if (!lame->lgf)
|
|
|
|
return GST_FLOW_OK;
|
2005-08-16 16:12:15 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
buf = gst_buffer_new_and_alloc (7200);
|
2011-09-27 16:15:00 +00:00
|
|
|
data = gst_buffer_map (buf, NULL, NULL, GST_MAP_WRITE);
|
|
|
|
size = lame_encode_flush (lame->lgf, data, 7200);
|
|
|
|
gst_buffer_unmap (buf, data, size);
|
2005-08-16 16:12:15 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
if (size > 0 && push) {
|
|
|
|
GST_DEBUG_OBJECT (lame, "pushing final packet of %u bytes", size);
|
|
|
|
result = gst_audio_encoder_finish_frame (GST_AUDIO_ENCODER (lame), buf, -1);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (lame, "no final packet (size=%d, push=%d)", size, push);
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
result = GST_FLOW_OK;
|
2005-08-16 16:12:15 +00:00
|
|
|
}
|
2011-09-23 13:26:48 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_lame_flush (GstAudioEncoder * enc)
|
|
|
|
{
|
|
|
|
gst_lame_flush_full (GST_LAME (enc), FALSE);
|
2005-08-16 16:12:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2011-09-23 13:26:48 +00:00
|
|
|
gst_lame_handle_frame (GstAudioEncoder * enc, GstBuffer * buf)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
|
|
|
GstLame *lame;
|
2005-08-17 19:05:51 +00:00
|
|
|
guchar *mp3_data;
|
2011-09-23 13:26:48 +00:00
|
|
|
GstBuffer *mp3_buf;
|
2005-08-17 19:05:51 +00:00
|
|
|
gint mp3_buffer_size, mp3_size;
|
2005-08-16 16:12:15 +00:00
|
|
|
GstFlowReturn result;
|
2005-08-17 19:05:51 +00:00
|
|
|
gint num_samples;
|
2006-02-16 17:16:06 +00:00
|
|
|
guint8 *data;
|
2011-09-27 16:15:00 +00:00
|
|
|
gsize size;
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
lame = GST_LAME (enc);
|
2001-12-21 12:47:09 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
/* squeeze remaining and push */
|
|
|
|
if (G_UNLIKELY (buf == NULL))
|
|
|
|
return gst_lame_flush_full (lame, TRUE);
|
2005-08-16 16:12:15 +00:00
|
|
|
|
2011-09-27 16:15:00 +00:00
|
|
|
data = gst_buffer_map (buf, &size, NULL, GST_MAP_READ);
|
2006-02-16 17:16:06 +00:00
|
|
|
|
|
|
|
num_samples = size / 2;
|
2005-08-17 19:05:51 +00:00
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
/* allocate space for output */
|
2005-08-17 19:05:51 +00:00
|
|
|
mp3_buffer_size = 1.25 * num_samples + 7200;
|
2011-09-27 16:15:00 +00:00
|
|
|
mp3_buf = gst_buffer_new_allocate (NULL, mp3_buffer_size, 0);
|
|
|
|
mp3_data = gst_buffer_map (mp3_buf, NULL, NULL, GST_MAP_WRITE);
|
2005-08-16 16:12:15 +00:00
|
|
|
|
|
|
|
/* lame seems to be too stupid to get mono interleaved going */
|
|
|
|
if (lame->num_channels == 1) {
|
|
|
|
mp3_size = lame_encode_buffer (lame->lgf,
|
2006-02-16 17:16:06 +00:00
|
|
|
(short int *) data,
|
|
|
|
(short int *) data, num_samples, mp3_data, mp3_buffer_size);
|
2004-03-14 22:34:30 +00:00
|
|
|
} else {
|
2005-08-16 16:12:15 +00:00
|
|
|
mp3_size = lame_encode_buffer_interleaved (lame->lgf,
|
2006-02-16 17:16:06 +00:00
|
|
|
(short int *) data,
|
2005-08-17 19:05:51 +00:00
|
|
|
num_samples / lame->num_channels, mp3_data, mp3_buffer_size);
|
2005-08-16 16:12:15 +00:00
|
|
|
}
|
2011-09-27 16:15:00 +00:00
|
|
|
gst_buffer_unmap (buf, data, size);
|
2003-06-07 00:34:51 +00:00
|
|
|
|
2005-08-16 16:12:15 +00:00
|
|
|
GST_LOG_OBJECT (lame, "encoded %d bytes of audio to %d bytes of mp3",
|
2006-12-30 20:01:35 +00:00
|
|
|
size, mp3_size);
|
2002-07-07 14:06:38 +00:00
|
|
|
|
2011-09-23 13:26:48 +00:00
|
|
|
if (G_LIKELY (mp3_size > 0)) {
|
2011-09-27 16:15:00 +00:00
|
|
|
gst_buffer_unmap (mp3_buf, mp3_data, mp3_size);
|
2011-09-23 13:26:48 +00:00
|
|
|
result = gst_audio_encoder_finish_frame (enc, mp3_buf, -1);
|
2004-03-14 22:34:30 +00:00
|
|
|
} else {
|
2011-09-27 16:15:00 +00:00
|
|
|
gst_buffer_unmap (mp3_buf, mp3_data, 0);
|
2011-09-23 13:26:48 +00:00
|
|
|
if (mp3_size < 0) {
|
|
|
|
/* eat error ? */
|
|
|
|
g_warning ("error %d", mp3_size);
|
|
|
|
}
|
2005-08-16 16:12:15 +00:00
|
|
|
result = GST_FLOW_OK;
|
2011-09-23 13:26:48 +00:00
|
|
|
gst_buffer_unref (mp3_buf);
|
2001-12-20 23:48:55 +00:00
|
|
|
}
|
2005-08-16 16:12:15 +00:00
|
|
|
return result;
|
2001-12-20 23:48:55 +00:00
|
|
|
}
|
|
|
|
|
2005-09-16 16:04:28 +00:00
|
|
|
/* set up the encoder state */
|
2001-12-20 23:48:55 +00:00
|
|
|
static gboolean
|
2004-03-14 22:34:30 +00:00
|
|
|
gst_lame_setup (GstLame * lame)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
2007-09-24 10:26:21 +00:00
|
|
|
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
#define CHECK_ERROR(command) G_STMT_START {\
|
|
|
|
if ((command) < 0) { \
|
|
|
|
GST_ERROR_OBJECT (lame, "setup failed: " G_STRINGIFY (command)); \
|
|
|
|
return FALSE; \
|
|
|
|
} \
|
|
|
|
}G_STMT_END
|
2007-09-24 10:26:21 +00:00
|
|
|
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
int retval;
|
2007-09-26 13:40:35 +00:00
|
|
|
GstCaps *allowed_caps;
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
|
2003-06-29 19:46:09 +00:00
|
|
|
GST_DEBUG_OBJECT (lame, "starting setup");
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2005-09-16 16:04:28 +00:00
|
|
|
/* check if we're already setup; if we are, we might want to check
|
2002-10-02 08:04:00 +00:00
|
|
|
* if this initialization is compatible with the previous one */
|
|
|
|
/* FIXME: do this */
|
2005-09-16 16:04:28 +00:00
|
|
|
if (lame->setup) {
|
|
|
|
GST_WARNING_OBJECT (lame, "already setup");
|
|
|
|
lame->setup = FALSE;
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
}
|
2002-02-19 12:55:16 +00:00
|
|
|
|
2005-09-16 16:04:28 +00:00
|
|
|
lame->lgf = lame_init ();
|
|
|
|
|
2006-12-14 10:15:24 +00:00
|
|
|
if (lame->lgf == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2001-12-21 12:47:09 +00:00
|
|
|
/* copy the parameters over */
|
|
|
|
lame_set_in_samplerate (lame->lgf, lame->samplerate);
|
2002-02-19 12:55:16 +00:00
|
|
|
|
2007-09-24 10:26:21 +00:00
|
|
|
/* let lame choose default samplerate unless outgoing sample rate is fixed */
|
2011-09-23 13:26:48 +00:00
|
|
|
allowed_caps = gst_pad_get_allowed_caps (GST_AUDIO_ENCODER_SRC_PAD (lame));
|
2007-09-26 13:40:35 +00:00
|
|
|
|
|
|
|
if (allowed_caps != NULL) {
|
|
|
|
GstStructure *structure;
|
|
|
|
gint samplerate;
|
2007-09-24 10:26:21 +00:00
|
|
|
|
2007-09-26 13:40:35 +00:00
|
|
|
structure = gst_caps_get_structure (allowed_caps, 0);
|
|
|
|
|
|
|
|
if (gst_structure_get_int (structure, "rate", &samplerate)) {
|
|
|
|
GST_DEBUG_OBJECT (lame, "Setting sample rate to %d as fixed in src caps",
|
|
|
|
samplerate);
|
|
|
|
lame_set_out_samplerate (lame->lgf, samplerate);
|
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (lame, "Letting lame choose sample rate");
|
|
|
|
lame_set_out_samplerate (lame->lgf, 0);
|
|
|
|
}
|
2008-02-11 09:13:33 +00:00
|
|
|
gst_caps_unref (allowed_caps);
|
|
|
|
allowed_caps = NULL;
|
2007-09-24 10:26:21 +00:00
|
|
|
} else {
|
2007-09-26 13:40:35 +00:00
|
|
|
GST_DEBUG_OBJECT (lame, "No peer yet, letting lame choose sample rate");
|
2007-09-24 10:26:21 +00:00
|
|
|
lame_set_out_samplerate (lame->lgf, 0);
|
|
|
|
}
|
|
|
|
|
2001-12-21 12:47:09 +00:00
|
|
|
/* force mono encoding if we only have one channel */
|
2004-03-14 22:34:30 +00:00
|
|
|
if (lame->num_channels == 1)
|
2001-12-20 23:48:55 +00:00
|
|
|
lame->mode = 3;
|
2008-01-17 17:26:48 +00:00
|
|
|
else
|
|
|
|
lame->mode = lame->requested_mode;
|
2001-12-20 23:48:55 +00:00
|
|
|
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
CHECK_ERROR (lame_set_num_channels (lame->lgf, lame->num_channels));
|
2007-03-21 12:53:57 +00:00
|
|
|
CHECK_AND_FIXUP_BITRATE (lame, "bitrate", lame->bitrate, lame->free_format);
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
CHECK_ERROR (lame_set_brate (lame->lgf, lame->bitrate));
|
|
|
|
CHECK_ERROR (lame_set_compression_ratio (lame->lgf, lame->compression_ratio));
|
|
|
|
CHECK_ERROR (lame_set_quality (lame->lgf, lame->quality));
|
|
|
|
CHECK_ERROR (lame_set_mode (lame->lgf, lame->mode));
|
|
|
|
CHECK_ERROR (lame_set_force_ms (lame->lgf, lame->force_ms));
|
|
|
|
CHECK_ERROR (lame_set_free_format (lame->lgf, lame->free_format));
|
|
|
|
CHECK_ERROR (lame_set_copyright (lame->lgf, lame->copyright));
|
|
|
|
CHECK_ERROR (lame_set_original (lame->lgf, lame->original));
|
|
|
|
CHECK_ERROR (lame_set_error_protection (lame->lgf, lame->error_protection));
|
|
|
|
CHECK_ERROR (lame_set_extension (lame->lgf, lame->extension));
|
|
|
|
CHECK_ERROR (lame_set_strict_ISO (lame->lgf, lame->strict_iso));
|
|
|
|
CHECK_ERROR (lame_set_disable_reservoir (lame->lgf, lame->disable_reservoir));
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
CHECK_ERROR (lame_set_VBR (lame->lgf, lame->vbr));
|
|
|
|
CHECK_ERROR (lame_set_VBR_q (lame->lgf, lame->vbr_quality));
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
CHECK_ERROR (lame_set_VBR_mean_bitrate_kbps (lame->lgf,
|
|
|
|
lame->vbr_mean_bitrate));
|
2007-03-21 12:53:57 +00:00
|
|
|
CHECK_AND_FIXUP_BITRATE (lame, "vbr-min-bitrate", lame->vbr_min_bitrate,
|
|
|
|
lame->free_format);
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
CHECK_ERROR (lame_set_VBR_min_bitrate_kbps (lame->lgf,
|
|
|
|
lame->vbr_min_bitrate));
|
2007-03-21 12:53:57 +00:00
|
|
|
CHECK_AND_FIXUP_BITRATE (lame, "vbr-max-bitrate", lame->vbr_max_bitrate,
|
|
|
|
lame->free_format);
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
CHECK_ERROR (lame_set_VBR_max_bitrate_kbps (lame->lgf,
|
|
|
|
lame->vbr_max_bitrate));
|
|
|
|
CHECK_ERROR (lame_set_VBR_hard_min (lame->lgf, lame->vbr_hard_min));
|
|
|
|
CHECK_ERROR (lame_set_lowpassfreq (lame->lgf, lame->lowpass_freq));
|
|
|
|
CHECK_ERROR (lame_set_lowpasswidth (lame->lgf, lame->lowpass_width));
|
|
|
|
CHECK_ERROR (lame_set_highpassfreq (lame->lgf, lame->highpass_freq));
|
|
|
|
CHECK_ERROR (lame_set_highpasswidth (lame->lgf, lame->highpass_width));
|
|
|
|
CHECK_ERROR (lame_set_ATHonly (lame->lgf, lame->ath_only));
|
|
|
|
CHECK_ERROR (lame_set_ATHshort (lame->lgf, lame->ath_short));
|
|
|
|
CHECK_ERROR (lame_set_noATH (lame->lgf, lame->no_ath));
|
|
|
|
CHECK_ERROR (lame_set_ATHlower (lame->lgf, lame->ath_lower));
|
|
|
|
CHECK_ERROR (lame_set_allow_diff_short (lame->lgf, lame->allow_diff_short));
|
|
|
|
CHECK_ERROR (lame_set_no_short_blocks (lame->lgf, lame->no_short_blocks));
|
|
|
|
CHECK_ERROR (lame_set_emphasis (lame->lgf, lame->emphasis));
|
2006-07-26 17:09:04 +00:00
|
|
|
CHECK_ERROR (lame_set_bWriteVbrTag (lame->lgf, 0));
|
2004-08-19 22:44:50 +00:00
|
|
|
#ifdef GSTLAME_PRESET
|
2004-08-13 15:22:49 +00:00
|
|
|
if (lame->preset > 0) {
|
|
|
|
CHECK_ERROR (lame_set_preset (lame->lgf, lame->preset));
|
|
|
|
}
|
2004-08-19 22:44:50 +00:00
|
|
|
#endif
|
2003-07-05 22:48:58 +00:00
|
|
|
|
2001-12-21 12:47:09 +00:00
|
|
|
/* initialize the lame encoder */
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
if ((retval = lame_init_params (lame->lgf)) >= 0) {
|
2005-09-16 16:04:28 +00:00
|
|
|
lame->setup = TRUE;
|
2002-02-21 17:20:35 +00:00
|
|
|
/* FIXME: it would be nice to print out the mode here */
|
2005-09-16 16:04:28 +00:00
|
|
|
GST_INFO ("lame encoder setup (%d kbit/s, %d Hz, %d channels)",
|
2004-03-15 19:32:25 +00:00
|
|
|
lame->bitrate, lame->samplerate, lame->num_channels);
|
ext/lame/gstlame.*: fix lame's broken vbr stuff, allow it to resample if need be, and also make xing header optional
Original commit message from CVS:
2004-08-13 Zaheer Abbas Merali <zaheerabbas at merali dot org>
* ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
(gst_lame_class_init), (gst_lame_src_getcaps),
(gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
(gst_lame_get_property), (gst_lame_setup):
* ext/lame/gstlame.h:
fix lame's broken vbr stuff, allow it to resample if need be, and also
make xing header optional
2004-08-13 14:41:02 +00:00
|
|
|
} else {
|
|
|
|
GST_ERROR_OBJECT (lame, "lame_init_params returned %d", retval);
|
2001-12-20 23:48:55 +00:00
|
|
|
}
|
|
|
|
|
2003-06-29 19:46:09 +00:00
|
|
|
GST_DEBUG_OBJECT (lame, "done with setup");
|
2001-12-20 23:48:55 +00:00
|
|
|
|
2005-09-16 16:04:28 +00:00
|
|
|
return lame->setup;
|
ext/lame/gstlame.c: add debugging category, add error checks like checking return values of setup calls, make sure it...
Original commit message from CVS:
* ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
(gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
(plugin_init):
add debugging category, add error checks like checking return values
of setup calls, make sure it still works after
PLAYING=>NULL=>PLAYING, fix encoding of mono streams
2004-07-26 15:42:18 +00:00
|
|
|
#undef CHECK_ERROR
|
2001-12-20 23:48:55 +00:00
|
|
|
}
|
|
|
|
|
2008-07-29 16:57:16 +00:00
|
|
|
static gboolean
|
|
|
|
gst_lame_get_default_settings (void)
|
|
|
|
{
|
|
|
|
lame_global_flags *lgf = NULL;
|
|
|
|
|
|
|
|
lgf = lame_init ();
|
|
|
|
if (lgf == NULL) {
|
|
|
|
GST_ERROR ("Error initializing LAME");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lame_init_params (lgf) < 0) {
|
|
|
|
GST_ERROR ("Error getting default settings");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_lame_default_settings.bitrate = lame_get_brate (lgf);
|
|
|
|
gst_lame_default_settings.compression_ratio = 0.0; /* lame_get_compression_ratio (lgf); */
|
|
|
|
gst_lame_default_settings.quality = lame_get_quality (lgf);
|
|
|
|
gst_lame_default_settings.mode = lame_get_mode (lgf);
|
|
|
|
gst_lame_default_settings.force_ms = lame_get_force_ms (lgf);
|
|
|
|
gst_lame_default_settings.free_format = lame_get_free_format (lgf);
|
|
|
|
gst_lame_default_settings.copyright = lame_get_copyright (lgf);
|
|
|
|
gst_lame_default_settings.original = lame_get_original (lgf);
|
|
|
|
gst_lame_default_settings.error_protection = lame_get_error_protection (lgf);
|
|
|
|
gst_lame_default_settings.extension = lame_get_extension (lgf);
|
2008-07-31 14:24:27 +00:00
|
|
|
gst_lame_default_settings.strict_iso = lame_get_strict_ISO (lgf);
|
2008-07-29 16:57:16 +00:00
|
|
|
gst_lame_default_settings.disable_reservoir =
|
|
|
|
lame_get_disable_reservoir (lgf);
|
|
|
|
gst_lame_default_settings.vbr = lame_get_VBR (lgf);
|
|
|
|
gst_lame_default_settings.vbr_quality = lame_get_VBR_q (lgf);
|
|
|
|
gst_lame_default_settings.vbr_mean_bitrate =
|
|
|
|
lame_get_VBR_mean_bitrate_kbps (lgf);
|
|
|
|
gst_lame_default_settings.vbr_min_bitrate =
|
|
|
|
lame_get_VBR_min_bitrate_kbps (lgf);
|
|
|
|
gst_lame_default_settings.vbr_max_bitrate =
|
|
|
|
lame_get_VBR_max_bitrate_kbps (lgf);
|
|
|
|
gst_lame_default_settings.vbr_hard_min = lame_get_VBR_hard_min (lgf);
|
|
|
|
gst_lame_default_settings.lowpass_freq = lame_get_lowpassfreq (lgf);
|
|
|
|
gst_lame_default_settings.lowpass_width = lame_get_lowpasswidth (lgf);
|
|
|
|
gst_lame_default_settings.highpass_freq = lame_get_highpassfreq (lgf);
|
|
|
|
gst_lame_default_settings.highpass_width = lame_get_highpasswidth (lgf);
|
|
|
|
gst_lame_default_settings.ath_only = lame_get_ATHonly (lgf);
|
|
|
|
gst_lame_default_settings.ath_short = lame_get_ATHshort (lgf);
|
|
|
|
gst_lame_default_settings.no_ath = lame_get_noATH (lgf);
|
|
|
|
gst_lame_default_settings.ath_type = lame_get_ATHtype (lgf);
|
|
|
|
gst_lame_default_settings.ath_lower = lame_get_ATHlower (lgf);
|
|
|
|
gst_lame_default_settings.allow_diff_short = lame_get_allow_diff_short (lgf);
|
|
|
|
gst_lame_default_settings.no_short_blocks = lame_get_no_short_blocks (lgf);
|
|
|
|
gst_lame_default_settings.emphasis = lame_get_emphasis (lgf);
|
|
|
|
gst_lame_default_settings.preset = 0;
|
|
|
|
|
|
|
|
lame_close (lgf);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2009-04-29 17:01:44 +00:00
|
|
|
gboolean
|
|
|
|
gst_lame_register (GstPlugin * plugin)
|
2001-12-20 23:48:55 +00:00
|
|
|
{
|
2006-10-13 10:00:27 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (debug, "lame", 0, "lame mp3 encoder");
|
|
|
|
|
2008-07-29 16:57:16 +00:00
|
|
|
if (!gst_lame_get_default_settings ())
|
|
|
|
return FALSE;
|
|
|
|
|
2009-05-07 16:59:52 +00:00
|
|
|
if (!gst_element_register (plugin, "lame", GST_RANK_MARGINAL, GST_TYPE_LAME))
|
2003-11-02 00:13:26 +00:00
|
|
|
return FALSE;
|
2004-03-14 22:34:30 +00:00
|
|
|
|
2001-12-20 23:48:55 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|