]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gst-plugins-ugly0-10.git/blob - ext/lame/gstlamemp3enc.c
lamemp3enc: implement sinkpad get_caps() function to proxy rate and channels restrict...
[glsdk/gst-plugins-ugly0-10.git] / ext / lame / gstlamemp3enc.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2004> Wim Taymans <wim@fluendo.com>
4  * Copyright (C) <2005> Thomas Vander Stichele <thomas at apestaart dot org>
5  * Copyright (C) <2009> Sebastian Dröge <sebastian.droege@collabora.co.uk>
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
23 /**
24  * SECTION:element-lamemp3enc
25  * @see_also: lame, mad, vorbisenc
26  *
27  * This element encodes raw integer audio into an MPEG-1 layer 3 (MP3) stream.
28  * Note that <ulink url="http://en.wikipedia.org/wiki/MP3">MP3</ulink> is not
29  * a free format, there are licensing and patent issues to take into
30  * consideration. See <ulink url="http://www.vorbis.com/">Ogg/Vorbis</ulink>
31  * for a royalty free (and often higher quality) alternative.
32  *
33  * <refsect2>
34  * <title>Output sample rate</title>
35  * If no fixed output sample rate is negotiated on the element's src pad,
36  * the element will choose an optimal sample rate to resample to internally.
37  * For example, a 16-bit 44.1 KHz mono audio stream encoded at 48 kbit will
38  * get resampled to 32 KHz.  Use filter caps on the src pad to force a
39  * particular sample rate.
40  * </refsect2>
41  * <refsect2>
42  * <title>Example pipelines</title>
43  * |[
44  * gst-launch -v audiotestsrc wave=sine num-buffers=100 ! audioconvert ! lamemp3enc ! filesink location=sine.mp3
45  * ]| Encode a test sine signal to MP3.
46  * |[
47  * gst-launch -v alsasrc ! audioconvert ! lamemp3enc target=bitrate bitrate=192 ! filesink location=alsasrc.mp3
48  * ]| Record from a sound card using ALSA and encode to MP3 with an average bitrate of 192kbps
49  * |[
50  * gst-launch -v filesrc location=music.wav ! decodebin ! audioconvert ! audioresample ! lamemp3enc target=quality quality=0 ! id3v2mux ! filesink location=music.mp3
51  * ]| Transcode from a .wav file to MP3 (the id3v2mux element is optional) with best VBR quality
52  * |[
53  * gst-launch -v cdda://5 ! audioconvert ! lamemp3enc target=bitrate cbr=true bitrate=192 ! filesink location=track5.mp3
54  * ]| Encode Audio CD track 5 to MP3 with a constant bitrate of 192kbps
55  * |[
56  * gst-launch -v audiotestsrc num-buffers=10 ! audio/x-raw-int,rate=44100,channels=1 ! lamemp3enc target=bitrate cbr=true bitrate=48 ! filesink location=test.mp3
57  * ]| Encode to a fixed sample rate
58  * </refsect2>
59  *
60  * Since: 0.10.12
61  */
63 #ifdef HAVE_CONFIG_H
64 #include "config.h"
65 #endif
67 #include <string.h>
68 #include "gstlamemp3enc.h"
69 #include <gst/gst-i18n-plugin.h>
71 /* lame < 3.98 */
72 #ifndef HAVE_LAME_SET_VBR_QUALITY
73 #define lame_set_VBR_quality(flags,q) lame_set_VBR_q((flags),(int)(q))
74 #endif
76 GST_DEBUG_CATEGORY_STATIC (debug);
77 #define GST_CAT_DEFAULT debug
79 /* elementfactory information */
81 /* LAMEMP3ENC can do MPEG-1, MPEG-2, and MPEG-2.5, so it has 9 possible
82  * sample rates it supports */
83 static GstStaticPadTemplate gst_lamemp3enc_sink_template =
84 GST_STATIC_PAD_TEMPLATE ("sink",
85     GST_PAD_SINK,
86     GST_PAD_ALWAYS,
87     GST_STATIC_CAPS ("audio/x-raw-int, "
88         "endianness = (int) " G_STRINGIFY (G_BYTE_ORDER) ", "
89         "signed = (boolean) true, "
90         "width = (int) 16, "
91         "depth = (int) 16, "
92         "rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000 }, "
93         "channels = (int) [ 1, 2 ]")
94     );
96 static GstStaticPadTemplate gst_lamemp3enc_src_template =
97 GST_STATIC_PAD_TEMPLATE ("src",
98     GST_PAD_SRC,
99     GST_PAD_ALWAYS,
100     GST_STATIC_CAPS ("audio/mpeg, "
101         "mpegversion = (int) 1, "
102         "layer = (int) 3, "
103         "rate = (int) { 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000 }, "
104         "channels = (int) [ 1, 2 ]")
105     );
107 /********** Define useful types for non-programmatic interfaces **********/
108 enum
110   LAMEMP3ENC_TARGET_QUALITY = 0,
111   LAMEMP3ENC_TARGET_BITRATE
112 };
114 #define GST_TYPE_LAMEMP3ENC_TARGET (gst_lamemp3enc_target_get_type())
115 static GType
116 gst_lamemp3enc_target_get_type (void)
118   static GType lame_target_type = 0;
119   static GEnumValue lame_targets[] = {
120     {LAMEMP3ENC_TARGET_QUALITY, "Quality", "quality"},
121     {LAMEMP3ENC_TARGET_BITRATE, "Bitrate", "bitrate"},
122     {0, NULL, NULL}
123   };
125   if (!lame_target_type) {
126     lame_target_type =
127         g_enum_register_static ("GstLameMP3EncTarget", lame_targets);
128   }
129   return lame_target_type;
132 enum
134   LAMEMP3ENC_ENCODING_ENGINE_QUALITY_FAST = 0,
135   LAMEMP3ENC_ENCODING_ENGINE_QUALITY_STANDARD,
136   LAMEMP3ENC_ENCODING_ENGINE_QUALITY_HIGH
137 };
139 #define GST_TYPE_LAMEMP3ENC_ENCODING_ENGINE_QUALITY (gst_lamemp3enc_encoding_engine_quality_get_type())
140 static GType
141 gst_lamemp3enc_encoding_engine_quality_get_type (void)
143   static GType lame_encoding_engine_quality_type = 0;
144   static GEnumValue lame_encoding_engine_quality[] = {
145     {0, "Fast", "fast"},
146     {1, "Standard", "standard"},
147     {2, "High", "high"},
148     {0, NULL, NULL}
149   };
151   if (!lame_encoding_engine_quality_type) {
152     lame_encoding_engine_quality_type =
153         g_enum_register_static ("GstLameMP3EncEncodingEngineQuality",
154         lame_encoding_engine_quality);
155   }
156   return lame_encoding_engine_quality_type;
159 /********** Standard stuff for signals and arguments **********/
161 enum
163   ARG_0,
164   ARG_TARGET,
165   ARG_BITRATE,
166   ARG_CBR,
167   ARG_QUALITY,
168   ARG_ENCODING_ENGINE_QUALITY,
169   ARG_MONO
170 };
172 #define DEFAULT_TARGET LAMEMP3ENC_TARGET_QUALITY
173 #define DEFAULT_BITRATE 128
174 #define DEFAULT_CBR FALSE
175 #define DEFAULT_QUALITY 4
176 #define DEFAULT_ENCODING_ENGINE_QUALITY LAMEMP3ENC_ENCODING_ENGINE_QUALITY_STANDARD
177 #define DEFAULT_MONO FALSE
179 static void gst_lamemp3enc_base_init (gpointer g_class);
180 static void gst_lamemp3enc_class_init (GstLameMP3EncClass * klass);
181 static void gst_lamemp3enc_init (GstLameMP3Enc * gst_lame);
183 static void gst_lamemp3enc_set_property (GObject * object, guint prop_id,
184     const GValue * value, GParamSpec * pspec);
185 static void gst_lamemp3enc_get_property (GObject * object, guint prop_id,
186     GValue * value, GParamSpec * pspec);
187 static gboolean gst_lamemp3enc_sink_event (GstPad * pad, GstEvent * event);
188 static GstFlowReturn gst_lamemp3enc_chain (GstPad * pad, GstBuffer * buf);
189 static gboolean gst_lamemp3enc_setup (GstLameMP3Enc * lame);
190 static GstStateChangeReturn gst_lamemp3enc_change_state (GstElement * element,
191     GstStateChange transition);
193 static GstElementClass *parent_class = NULL;
195 GType
196 gst_lamemp3enc_get_type (void)
198   static GType gst_lamemp3enc_type = 0;
200   if (!gst_lamemp3enc_type) {
201     static const GTypeInfo gst_lamemp3enc_info = {
202       sizeof (GstLameMP3EncClass),
203       gst_lamemp3enc_base_init,
204       NULL,
205       (GClassInitFunc) gst_lamemp3enc_class_init,
206       NULL,
207       NULL,
208       sizeof (GstLameMP3Enc),
209       0,
210       (GInstanceInitFunc) gst_lamemp3enc_init,
211     };
212     static const GInterfaceInfo preset_info = {
213       NULL,
214       NULL,
215       NULL
216     };
218     gst_lamemp3enc_type =
219         g_type_register_static (GST_TYPE_ELEMENT, "GstLameMP3Enc",
220         &gst_lamemp3enc_info, 0);
221     g_type_add_interface_static (gst_lamemp3enc_type, GST_TYPE_PRESET,
222         &preset_info);
223   }
224   return gst_lamemp3enc_type;
227 static void
228 gst_lamemp3enc_release_memory (GstLameMP3Enc * lame)
230   if (lame->lgf) {
231     lame_close (lame->lgf);
232     lame->lgf = NULL;
233   }
236 static void
237 gst_lamemp3enc_finalize (GObject * obj)
239   gst_lamemp3enc_release_memory (GST_LAMEMP3ENC (obj));
241   G_OBJECT_CLASS (parent_class)->finalize (obj);
244 static void
245 gst_lamemp3enc_base_init (gpointer g_class)
247   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
249   gst_element_class_add_pad_template (element_class,
250       gst_static_pad_template_get (&gst_lamemp3enc_src_template));
251   gst_element_class_add_pad_template (element_class,
252       gst_static_pad_template_get (&gst_lamemp3enc_sink_template));
253   gst_element_class_set_details_simple (element_class, "L.A.M.E. mp3 encoder",
254       "Codec/Encoder/Audio",
255       "High-quality free MP3 encoder",
256       "Sebastian Dröge <sebastian.droege@collabora.co.uk>");
259 static void
260 gst_lamemp3enc_class_init (GstLameMP3EncClass * klass)
262   GObjectClass *gobject_class;
263   GstElementClass *gstelement_class;
265   gobject_class = (GObjectClass *) klass;
266   gstelement_class = (GstElementClass *) klass;
268   parent_class = g_type_class_peek_parent (klass);
270   gobject_class->set_property = gst_lamemp3enc_set_property;
271   gobject_class->get_property = gst_lamemp3enc_get_property;
272   gobject_class->finalize = gst_lamemp3enc_finalize;
274   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_TARGET,
275       g_param_spec_enum ("target", "Target",
276           "Optimize for quality or bitrate", GST_TYPE_LAMEMP3ENC_TARGET,
277           DEFAULT_TARGET, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
278   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_BITRATE,
279       g_param_spec_int ("bitrate", "Bitrate (kb/s)",
280           "Bitrate in kbit/sec (Only valid if target is bitrate, for CBR one "
281           "of 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, "
282           "256 or 320)", 8, 320, DEFAULT_BITRATE,
283           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
284   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_CBR,
285       g_param_spec_boolean ("cbr", "CBR", "Enforce constant bitrate encoding "
286           "(Only valid if target is bitrate)", DEFAULT_CBR,
287           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
288   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_QUALITY,
289       g_param_spec_float ("quality", "Quality",
290           "VBR Quality from 0 to 10, 0 being the best "
291           "(Only valid if target is quality)", 0.0, 9.999,
292           DEFAULT_QUALITY, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
293   g_object_class_install_property (G_OBJECT_CLASS (klass),
294       ARG_ENCODING_ENGINE_QUALITY, g_param_spec_enum ("encoding-engine-quality",
295           "Encoding Engine Quality", "Quality/speed of the encoding engine, "
296           "this does not affect the bitrate!",
297           GST_TYPE_LAMEMP3ENC_ENCODING_ENGINE_QUALITY,
298           DEFAULT_ENCODING_ENGINE_QUALITY,
299           G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
300   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MONO,
301       g_param_spec_boolean ("mono", "Mono", "Enforce mono encoding",
302           DEFAULT_MONO, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
304   gstelement_class->change_state =
305       GST_DEBUG_FUNCPTR (gst_lamemp3enc_change_state);
308 static gboolean
309 gst_lamemp3enc_src_setcaps (GstPad * pad, GstCaps * caps)
311   GST_DEBUG_OBJECT (pad, "caps: %" GST_PTR_FORMAT, caps);
312   return TRUE;
315 static gboolean
316 gst_lamemp3enc_sink_setcaps (GstPad * pad, GstCaps * caps)
318   GstLameMP3Enc *lame;
319   gint out_samplerate;
320   gint version;
321   GstStructure *structure;
322   GstCaps *othercaps;
324   lame = GST_LAMEMP3ENC (GST_PAD_PARENT (pad));
325   structure = gst_caps_get_structure (caps, 0);
327   if (!gst_structure_get_int (structure, "rate", &lame->samplerate))
328     goto no_rate;
329   if (!gst_structure_get_int (structure, "channels", &lame->num_channels))
330     goto no_channels;
332   GST_DEBUG_OBJECT (lame, "setting up lame");
333   if (!gst_lamemp3enc_setup (lame))
334     goto setup_failed;
337   out_samplerate = lame_get_out_samplerate (lame->lgf);
338   if (out_samplerate == 0)
339     goto zero_output_rate;
340   if (out_samplerate != lame->samplerate) {
341     GST_WARNING_OBJECT (lame,
342         "output samplerate %d is different from incoming samplerate %d",
343         out_samplerate, lame->samplerate);
344   }
346   version = lame_get_version (lame->lgf);
347   if (version == 0)
348     version = 2;
349   else if (version == 1)
350     version = 1;
351   else if (version == 2)
352     version = 3;
354   othercaps =
355       gst_caps_new_simple ("audio/mpeg",
356       "mpegversion", G_TYPE_INT, 1,
357       "mpegaudioversion", G_TYPE_INT, version,
358       "layer", G_TYPE_INT, 3,
359       "channels", G_TYPE_INT, lame->mono ? 1 : lame->num_channels,
360       "rate", G_TYPE_INT, out_samplerate, NULL);
362   /* and use these caps */
363   gst_pad_set_caps (lame->srcpad, othercaps);
364   gst_caps_unref (othercaps);
366   return TRUE;
368 no_rate:
369   {
370     GST_ERROR_OBJECT (lame, "input caps have no sample rate field");
371     return FALSE;
372   }
373 no_channels:
374   {
375     GST_ERROR_OBJECT (lame, "input caps have no channels field");
376     return FALSE;
377   }
378 zero_output_rate:
379   {
380     GST_ELEMENT_ERROR (lame, LIBRARY, SETTINGS, (NULL),
381         ("LAMEMP3ENC decided on a zero sample rate"));
382     return FALSE;
383   }
384 setup_failed:
385   {
386     GST_ELEMENT_ERROR (lame, LIBRARY, SETTINGS,
387         (_("Failed to configure LAMEMP3ENC encoder. Check your encoding parameters.")), (NULL));
388     return FALSE;
389   }
392 static GstCaps *
393 gst_lamemp3enc_sink_getcaps (GstPad * pad)
395   const GstCaps *templ_caps;
396   GstLameMP3Enc *lame;
397   GstCaps *allowed = NULL;
398   GstCaps *caps, *filter_caps;
399   gint i, j;
401   lame = GST_LAMEMP3ENC (gst_pad_get_parent (pad));
403   /* we want to be able to communicate to upstream elements like audioconvert
404    * and audioresample any rate/channel restrictions downstream (e.g. muxer
405    * only accepting certain sample rates) */
406   templ_caps = gst_pad_get_pad_template_caps (pad);
407   allowed = gst_pad_get_allowed_caps (lame->srcpad);
408   if (!allowed || gst_caps_is_empty (allowed) || gst_caps_is_any (allowed)) {
409     caps = gst_caps_copy (templ_caps);
410     goto done;
411   }
413   filter_caps = gst_caps_new_empty ();
415   for (i = 0; i < gst_caps_get_size (templ_caps); i++) {
416     GQuark q_name;
418     q_name = gst_structure_get_name_id (gst_caps_get_structure (templ_caps, i));
420     /* pick rate + channel fields from allowed caps */
421     for (j = 0; j < gst_caps_get_size (allowed); j++) {
422       const GstStructure *allowed_s = gst_caps_get_structure (allowed, j);
423       const GValue *val;
424       GstStructure *s;
426       s = gst_structure_id_empty_new (q_name);
427       if ((val = gst_structure_get_value (allowed_s, "rate")))
428         gst_structure_set_value (s, "rate", val);
429       if ((val = gst_structure_get_value (allowed_s, "channels")))
430         gst_structure_set_value (s, "channels", val);
432       gst_caps_merge_structure (filter_caps, s);
433     }
434   }
436   caps = gst_caps_intersect (filter_caps, templ_caps);
437   gst_caps_unref (filter_caps);
439 done:
441   gst_caps_replace (&allowed, NULL);
442   gst_object_unref (lame);
444   return caps;
447 static gint64
448 gst_lamemp3enc_get_latency (GstLameMP3Enc * lame)
450   return gst_util_uint64_scale_int (lame_get_framesize (lame->lgf),
451       GST_SECOND, lame->samplerate);
454 static gboolean
455 gst_lamemp3enc_src_query (GstPad * pad, GstQuery * query)
457   gboolean res = TRUE;
458   GstLameMP3Enc *lame;
459   GstPad *peerpad;
461   lame = GST_LAMEMP3ENC (gst_pad_get_parent (pad));
462   peerpad = gst_pad_get_peer (GST_PAD (lame->sinkpad));
464   switch (GST_QUERY_TYPE (query)) {
465     case GST_QUERY_LATENCY:
466     {
467       if ((res = gst_pad_query (peerpad, query))) {
468         gboolean live;
469         GstClockTime min_latency, max_latency;
470         gint64 latency;
472         if (lame->lgf == NULL)
473           break;
475         gst_query_parse_latency (query, &live, &min_latency, &max_latency);
477         latency = gst_lamemp3enc_get_latency (lame);
479         /* add our latency */
480         min_latency += latency;
481         if (max_latency != -1)
482           max_latency += latency;
484         gst_query_set_latency (query, live, min_latency, max_latency);
485       }
486       break;
487     }
488     default:
489       res = gst_pad_query (peerpad, query);
490       break;
491   }
493   gst_object_unref (peerpad);
494   gst_object_unref (lame);
495   return res;
498 static void
499 gst_lamemp3enc_init (GstLameMP3Enc * lame)
501   GST_DEBUG_OBJECT (lame, "starting initialization");
503   lame->sinkpad =
504       gst_pad_new_from_static_template (&gst_lamemp3enc_sink_template, "sink");
505   gst_pad_set_event_function (lame->sinkpad,
506       GST_DEBUG_FUNCPTR (gst_lamemp3enc_sink_event));
507   gst_pad_set_chain_function (lame->sinkpad,
508       GST_DEBUG_FUNCPTR (gst_lamemp3enc_chain));
509   gst_pad_set_setcaps_function (lame->sinkpad,
510       GST_DEBUG_FUNCPTR (gst_lamemp3enc_sink_setcaps));
511   gst_pad_set_getcaps_function (lame->sinkpad,
512       GST_DEBUG_FUNCPTR (gst_lamemp3enc_sink_getcaps));
513   gst_element_add_pad (GST_ELEMENT (lame), lame->sinkpad);
515   lame->srcpad =
516       gst_pad_new_from_static_template (&gst_lamemp3enc_src_template, "src");
517   gst_pad_set_query_function (lame->srcpad,
518       GST_DEBUG_FUNCPTR (gst_lamemp3enc_src_query));
519   gst_pad_set_setcaps_function (lame->srcpad,
520       GST_DEBUG_FUNCPTR (gst_lamemp3enc_src_setcaps));
521   gst_element_add_pad (GST_ELEMENT (lame), lame->srcpad);
523   lame->samplerate = 44100;
524   lame->num_channels = 2;
525   lame->setup = FALSE;
527   /* Set default settings */
528   lame->target = DEFAULT_TARGET;
529   lame->bitrate = DEFAULT_BITRATE;
530   lame->cbr = DEFAULT_CBR;
531   lame->quality = DEFAULT_QUALITY;
532   lame->encoding_engine_quality = DEFAULT_ENCODING_ENGINE_QUALITY;
533   lame->mono = DEFAULT_MONO;
535   GST_DEBUG_OBJECT (lame, "done initializing");
538 /* <php-emulation-mode>three underscores for ___rate is really really really
539  * private as opposed to one underscore<php-emulation-mode> */
540 /* call this MACRO outside of the NULL state so that we have a higher chance
541  * of actually having a pipeline and bus to get the message through */
543 #define CHECK_AND_FIXUP_BITRATE(obj,param,rate)                           \
544 G_STMT_START {                                                            \
545   gint ___rate = rate;                                                    \
546   gint maxrate = 320;                                                     \
547   gint multiplier = 64;                                                   \
548   if (rate == 0) {                                                        \
549     ___rate = rate;                                                       \
550   } else if (rate <= 64) {                                                \
551     maxrate = 64; multiplier = 8;                                         \
552     if ((rate % 8) != 0) ___rate = GST_ROUND_UP_8 (rate);                 \
553   } else if (rate <= 128) {                                               \
554     maxrate = 128; multiplier = 16;                                       \
555     if ((rate % 16) != 0) ___rate = GST_ROUND_UP_16 (rate);               \
556   } else if (rate <= 256) {                                               \
557     maxrate = 256; multiplier = 32;                                       \
558     if ((rate % 32) != 0) ___rate = GST_ROUND_UP_32 (rate);               \
559   } else if (rate <= 320) {                                               \
560     maxrate = 320; multiplier = 64;                                       \
561     if ((rate % 64) != 0) ___rate = GST_ROUND_UP_64 (rate);               \
562   }                                                                       \
563   if (___rate != rate) {                                                  \
564     GST_ELEMENT_WARNING (obj, LIBRARY, SETTINGS,                          \
565       (_("The requested bitrate %d kbit/s for property '%s' "             \
566        "is not allowed. "                                                 \
567        "The bitrate was changed to %d kbit/s."), rate,                    \
568          param,  ___rate),                                                \
569        ("A bitrate below %d should be a multiple of %d.",                 \
570           maxrate, multiplier));                                          \
571     rate = ___rate;                                                       \
572   }                                                                       \
573 } G_STMT_END
575 static void
576 gst_lamemp3enc_set_property (GObject * object, guint prop_id,
577     const GValue * value, GParamSpec * pspec)
579   GstLameMP3Enc *lame;
581   lame = GST_LAMEMP3ENC (object);
583   switch (prop_id) {
584     case ARG_TARGET:
585       lame->target = g_value_get_enum (value);
586       break;
587     case ARG_BITRATE:
588       lame->bitrate = g_value_get_int (value);
589       break;
590     case ARG_CBR:
591       lame->cbr = g_value_get_boolean (value);
592       break;
593     case ARG_QUALITY:
594       lame->quality = g_value_get_float (value);
595       break;
596     case ARG_ENCODING_ENGINE_QUALITY:
597       lame->encoding_engine_quality = g_value_get_enum (value);
598       break;
599     case ARG_MONO:
600       lame->mono = g_value_get_boolean (value);
601       break;
602     default:
603       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
604       break;
605   }
608 static void
609 gst_lamemp3enc_get_property (GObject * object, guint prop_id, GValue * value,
610     GParamSpec * pspec)
612   GstLameMP3Enc *lame;
614   lame = GST_LAMEMP3ENC (object);
616   switch (prop_id) {
617     case ARG_TARGET:
618       g_value_set_enum (value, lame->target);
619       break;
620     case ARG_BITRATE:
621       g_value_set_int (value, lame->bitrate);
622       break;
623     case ARG_CBR:
624       g_value_set_boolean (value, lame->cbr);
625       break;
626     case ARG_QUALITY:
627       g_value_set_float (value, lame->quality);
628       break;
629     case ARG_ENCODING_ENGINE_QUALITY:
630       g_value_set_enum (value, lame->encoding_engine_quality);
631       break;
632     case ARG_MONO:
633       g_value_set_boolean (value, lame->mono);
634       break;
635     default:
636       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
637       break;
638   }
641 static gboolean
642 gst_lamemp3enc_sink_event (GstPad * pad, GstEvent * event)
644   gboolean ret;
645   GstLameMP3Enc *lame;
647   lame = GST_LAMEMP3ENC (gst_pad_get_parent (pad));
649   switch (GST_EVENT_TYPE (event)) {
650     case GST_EVENT_EOS:{
651       GST_DEBUG_OBJECT (lame, "handling EOS event");
653       if (lame->lgf != NULL) {
654         GstBuffer *buf;
655         gint size;
657         buf = gst_buffer_new_and_alloc (7200);
658         size = lame_encode_flush (lame->lgf, GST_BUFFER_DATA (buf), 7200);
660         if (size > 0 && lame->last_flow == GST_FLOW_OK) {
661           gint64 duration;
663           duration = gst_util_uint64_scale (size, 8 * GST_SECOND,
664               1000 * lame->bitrate);
666           if (lame->last_ts == GST_CLOCK_TIME_NONE) {
667             lame->last_ts = lame->eos_ts;
668             lame->last_duration = duration;
669           } else {
670             lame->last_duration += duration;
671           }
673           GST_BUFFER_TIMESTAMP (buf) = lame->last_ts;
674           GST_BUFFER_DURATION (buf) = lame->last_duration;
675           lame->last_ts = GST_CLOCK_TIME_NONE;
676           GST_BUFFER_SIZE (buf) = size;
677           GST_DEBUG_OBJECT (lame, "pushing final packet of %u bytes", size);
678           gst_buffer_set_caps (buf, GST_PAD_CAPS (lame->srcpad));
679           gst_pad_push (lame->srcpad, buf);
680         } else {
681           GST_DEBUG_OBJECT (lame, "no final packet (size=%d, last_flow=%s)",
682               size, gst_flow_get_name (lame->last_flow));
683           gst_buffer_unref (buf);
684         }
685       }
687       ret = gst_pad_event_default (pad, event);
688       break;
689     }
690     case GST_EVENT_FLUSH_START:
691       GST_DEBUG_OBJECT (lame, "handling FLUSH start event");
692       /* forward event */
693       ret = gst_pad_push_event (lame->srcpad, event);
694       break;
695     case GST_EVENT_FLUSH_STOP:
696     {
697       guchar *mp3_data = NULL;
698       gint mp3_buffer_size;
700       GST_DEBUG_OBJECT (lame, "handling FLUSH stop event");
702       if (lame->lgf) {
703         /* clear buffers if we already have lame set up */
704         mp3_buffer_size = 7200;
705         mp3_data = g_malloc (mp3_buffer_size);
706         lame_encode_flush (lame->lgf, mp3_data, mp3_buffer_size);
707         g_free (mp3_data);
708       }
710       ret = gst_pad_push_event (lame->srcpad, event);
711       break;
712     }
713     case GST_EVENT_TAG:
714       GST_DEBUG_OBJECT (lame, "ignoring TAG event, passing it on");
715       ret = gst_pad_push_event (lame->srcpad, event);
716       break;
717     default:
718       ret = gst_pad_event_default (pad, event);
719       break;
720   }
721   gst_object_unref (lame);
722   return ret;
725 static GstFlowReturn
726 gst_lamemp3enc_chain (GstPad * pad, GstBuffer * buf)
728   GstLameMP3Enc *lame;
729   guchar *mp3_data;
730   gint mp3_buffer_size, mp3_size;
731   gint64 duration;
732   GstFlowReturn result;
733   gint num_samples;
734   guint8 *data;
735   guint size;
737   lame = GST_LAMEMP3ENC (GST_PAD_PARENT (pad));
739   GST_LOG_OBJECT (lame, "entered chain");
741   if (!lame->setup)
742     goto not_setup;
744   data = GST_BUFFER_DATA (buf);
745   size = GST_BUFFER_SIZE (buf);
747   num_samples = size / 2;
749   /* allocate space for output */
750   mp3_buffer_size = 1.25 * num_samples + 7200;
751   mp3_data = g_malloc (mp3_buffer_size);
753   /* lame seems to be too stupid to get mono interleaved going */
754   if (lame->num_channels == 1) {
755     mp3_size = lame_encode_buffer (lame->lgf,
756         (short int *) data,
757         (short int *) data, num_samples, mp3_data, mp3_buffer_size);
758   } else {
759     mp3_size = lame_encode_buffer_interleaved (lame->lgf,
760         (short int *) data,
761         num_samples / lame->num_channels, mp3_data, mp3_buffer_size);
762   }
764   GST_LOG_OBJECT (lame, "encoded %d bytes of audio to %d bytes of mp3",
765       size, mp3_size);
767   duration = gst_util_uint64_scale_int (size, GST_SECOND,
768       2 * lame->samplerate * lame->num_channels);
770   if (GST_BUFFER_DURATION (buf) != GST_CLOCK_TIME_NONE &&
771       GST_BUFFER_DURATION (buf) != duration) {
772     GST_DEBUG_OBJECT (lame, "incoming buffer had incorrect duration %"
773         GST_TIME_FORMAT ", outgoing buffer will have correct duration %"
774         GST_TIME_FORMAT,
775         GST_TIME_ARGS (GST_BUFFER_DURATION (buf)), GST_TIME_ARGS (duration));
776   }
778   if (lame->last_ts == GST_CLOCK_TIME_NONE) {
779     lame->last_ts = GST_BUFFER_TIMESTAMP (buf);
780     lame->last_offs = GST_BUFFER_OFFSET (buf);
781     lame->last_duration = duration;
782   } else {
783     lame->last_duration += duration;
784   }
786   gst_buffer_unref (buf);
788   if (mp3_size < 0) {
789     g_warning ("error %d", mp3_size);
790   }
792   if (mp3_size > 0) {
793     GstBuffer *outbuf;
795     outbuf = gst_buffer_new ();
796     GST_BUFFER_DATA (outbuf) = mp3_data;
797     GST_BUFFER_MALLOCDATA (outbuf) = mp3_data;
798     GST_BUFFER_SIZE (outbuf) = mp3_size;
799     GST_BUFFER_TIMESTAMP (outbuf) = lame->last_ts;
800     GST_BUFFER_OFFSET (outbuf) = lame->last_offs;
801     GST_BUFFER_DURATION (outbuf) = lame->last_duration;
802     gst_buffer_set_caps (outbuf, GST_PAD_CAPS (lame->srcpad));
804     result = gst_pad_push (lame->srcpad, outbuf);
805     lame->last_flow = result;
806     if (result != GST_FLOW_OK) {
807       GST_DEBUG_OBJECT (lame, "flow return: %s", gst_flow_get_name (result));
808     }
810     if (GST_CLOCK_TIME_IS_VALID (lame->last_ts))
811       lame->eos_ts = lame->last_ts + lame->last_duration;
812     else
813       lame->eos_ts = GST_CLOCK_TIME_NONE;
814     lame->last_ts = GST_CLOCK_TIME_NONE;
815   } else {
816     g_free (mp3_data);
817     result = GST_FLOW_OK;
818   }
820   return result;
822   /* ERRORS */
823 not_setup:
824   {
825     gst_buffer_unref (buf);
826     GST_ELEMENT_ERROR (lame, CORE, NEGOTIATION, (NULL),
827         ("encoder not initialized (input is not audio?)"));
828     return GST_FLOW_ERROR;
829   }
832 /* set up the encoder state */
833 static gboolean
834 gst_lamemp3enc_setup (GstLameMP3Enc * lame)
837 #define CHECK_ERROR(command) G_STMT_START {\
838   if ((command) < 0) { \
839     GST_ERROR_OBJECT (lame, "setup failed: " G_STRINGIFY (command)); \
840     return FALSE; \
841   } \
842 }G_STMT_END
844   int retval;
845   GstCaps *allowed_caps;
847   GST_DEBUG_OBJECT (lame, "starting setup");
849   /* check if we're already setup; if we are, we might want to check
850    * if this initialization is compatible with the previous one */
851   /* FIXME: do this */
852   if (lame->setup) {
853     GST_WARNING_OBJECT (lame, "already setup");
854     lame->setup = FALSE;
855   }
857   lame->lgf = lame_init ();
859   if (lame->lgf == NULL)
860     return FALSE;
862   /* post latency message on the bus */
863   gst_element_post_message (GST_ELEMENT (lame),
864       gst_message_new_latency (GST_OBJECT (lame)));
866   /* copy the parameters over */
867   lame_set_in_samplerate (lame->lgf, lame->samplerate);
869   /* let lame choose default samplerate unless outgoing sample rate is fixed */
870   allowed_caps = gst_pad_get_allowed_caps (lame->srcpad);
872   if (allowed_caps != NULL) {
873     GstStructure *structure;
874     gint samplerate;
876     structure = gst_caps_get_structure (allowed_caps, 0);
878     if (gst_structure_get_int (structure, "rate", &samplerate)) {
879       GST_DEBUG_OBJECT (lame, "Setting sample rate to %d as fixed in src caps",
880           samplerate);
881       lame_set_out_samplerate (lame->lgf, samplerate);
882     } else {
883       GST_DEBUG_OBJECT (lame, "Letting lame choose sample rate");
884       lame_set_out_samplerate (lame->lgf, 0);
885     }
886     gst_caps_unref (allowed_caps);
887     allowed_caps = NULL;
888   } else {
889     GST_DEBUG_OBJECT (lame, "No peer yet, letting lame choose sample rate");
890     lame_set_out_samplerate (lame->lgf, 0);
891   }
893   CHECK_ERROR (lame_set_num_channels (lame->lgf, lame->num_channels));
894   CHECK_ERROR (lame_set_bWriteVbrTag (lame->lgf, 0));
896   if (lame->target == LAMEMP3ENC_TARGET_QUALITY) {
897     CHECK_ERROR (lame_set_VBR (lame->lgf, vbr_default));
898     CHECK_ERROR (lame_set_VBR_quality (lame->lgf, lame->quality));
899   } else {
900     if (lame->cbr) {
901       CHECK_AND_FIXUP_BITRATE (lame, "bitrate", lame->bitrate);
902       CHECK_ERROR (lame_set_VBR (lame->lgf, vbr_off));
903       CHECK_ERROR (lame_set_brate (lame->lgf, lame->bitrate));
904     } else {
905       CHECK_ERROR (lame_set_VBR (lame->lgf, vbr_abr));
906       CHECK_ERROR (lame_set_VBR_mean_bitrate_kbps (lame->lgf, lame->bitrate));
907     }
908   }
910   if (lame->encoding_engine_quality == LAMEMP3ENC_ENCODING_ENGINE_QUALITY_FAST)
911     CHECK_ERROR (lame_set_quality (lame->lgf, 7));
912   else if (lame->encoding_engine_quality ==
913       LAMEMP3ENC_ENCODING_ENGINE_QUALITY_HIGH)
914     CHECK_ERROR (lame_set_quality (lame->lgf, 2));
915   /* else default */
917   if (lame->mono)
918     CHECK_ERROR (lame_set_mode (lame->lgf, MONO));
920   /* initialize the lame encoder */
921   if ((retval = lame_init_params (lame->lgf)) >= 0) {
922     lame->setup = TRUE;
923     /* FIXME: it would be nice to print out the mode here */
924     GST_INFO
925         ("lame encoder setup (target %s, quality %f, bitrate %d, %d Hz, %d channels)",
926         (lame->target == LAMEMP3ENC_TARGET_QUALITY) ? "quality" : "bitrate",
927         lame->quality, lame->bitrate, lame->samplerate, lame->num_channels);
928   } else {
929     GST_ERROR_OBJECT (lame, "lame_init_params returned %d", retval);
930   }
932   GST_DEBUG_OBJECT (lame, "done with setup");
934   return lame->setup;
935 #undef CHECK_ERROR
938 static GstStateChangeReturn
939 gst_lamemp3enc_change_state (GstElement * element, GstStateChange transition)
941   GstLameMP3Enc *lame;
942   GstStateChangeReturn result;
944   lame = GST_LAMEMP3ENC (element);
946   switch (transition) {
947     case GST_STATE_CHANGE_READY_TO_PAUSED:
948       lame->last_flow = GST_FLOW_OK;
949       lame->last_ts = GST_CLOCK_TIME_NONE;
950       lame->eos_ts = GST_CLOCK_TIME_NONE;
951       break;
952     default:
953       break;
954   }
956   result = GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
958   switch (transition) {
959     case GST_STATE_CHANGE_READY_TO_NULL:
960       gst_lamemp3enc_release_memory (lame);
961       break;
962     default:
963       break;
964   }
966   return result;
969 gboolean
970 gst_lamemp3enc_register (GstPlugin * plugin)
972   GST_DEBUG_CATEGORY_INIT (debug, "lamemp3enc", 0, "lame mp3 encoder");
974   if (!gst_element_register (plugin, "lamemp3enc", GST_RANK_PRIMARY,
975           GST_TYPE_LAMEMP3ENC))
976     return FALSE;
978   return TRUE;