3 /* note: this requires gstreamer 0.10.x and a big list of plugins. */
4 /* it's currently hardcoded to use a big-endian alsasink as sink. */
5 #include <lib/base/eerror.h>
6 #include <lib/base/object.h>
7 #include <lib/base/ebase.h>
9 #include <lib/service/servicemp3.h>
10 #include <lib/service/service.h>
11 #include <lib/base/init_num.h>
12 #include <lib/base/init.h>
17 eServiceFactoryMP3::eServiceFactoryMP3()
19 ePtr<eServiceCenter> sc;
21 eServiceCenter::getPrivInstance(sc);
23 sc->addServiceFactory(eServiceFactoryMP3::id, this);
25 m_service_info = new eStaticServiceMP3Info();
28 eServiceFactoryMP3::~eServiceFactoryMP3()
30 ePtr<eServiceCenter> sc;
32 eServiceCenter::getPrivInstance(sc);
34 sc->removeServiceFactory(eServiceFactoryMP3::id);
37 DEFINE_REF(eServiceFactoryMP3)
40 RESULT eServiceFactoryMP3::play(const eServiceReference &ref, ePtr<iPlayableService> &ptr)
43 ptr = new eServiceMP3(ref.path.c_str());
47 RESULT eServiceFactoryMP3::record(const eServiceReference &ref, ePtr<iRecordableService> &ptr)
53 RESULT eServiceFactoryMP3::list(const eServiceReference &, ePtr<iListableService> &ptr)
59 RESULT eServiceFactoryMP3::info(const eServiceReference &ref, ePtr<iStaticServiceInformation> &ptr)
65 RESULT eServiceFactoryMP3::offlineOperations(const eServiceReference &, ePtr<iServiceOfflineOperations> &ptr)
72 // eStaticServiceMP3Info
75 // eStaticServiceMP3Info is seperated from eServiceMP3 to give information
76 // about unopened files.
78 // probably eServiceMP3 should use this class as well, and eStaticServiceMP3Info
79 // should have a database backend where ID3-files etc. are cached.
80 // this would allow listing the mp3 database based on certain filters.
82 DEFINE_REF(eStaticServiceMP3Info)
84 eStaticServiceMP3Info::eStaticServiceMP3Info()
88 RESULT eStaticServiceMP3Info::getName(const eServiceReference &ref, std::string &name)
90 size_t last = ref.path.rfind('/');
91 if (last != std::string::npos)
92 name = ref.path.substr(last+1);
98 int eStaticServiceMP3Info::getLength(const eServiceReference &ref)
105 eServiceMP3::eServiceMP3(const char *filename): m_filename(filename), m_pump(eApp, 1)
108 CONNECT(m_pump.recv_msg, eServiceMP3::gstPoll);
109 GstElement *source = 0;
111 GstElement *decoder = 0, *conv = 0, *flt = 0, *sink = 0; /* for audio */
113 GstElement *audio = 0, *queue_audio = 0, *video = 0, *queue_video = 0, *mpegdemux = 0;
116 eDebug("SERVICEMP3 construct!");
119 /* FIXME: currently, decodebin isn't possible for
120 video streams. in that case, make a manual pipeline. */
122 int is_video = !!strstr(filename, "mpg"); /* fixme */
124 int use_decodebin = !is_video;
128 m_gst_pipeline = gst_pipeline_new ("audio-player");
130 eWarning("failed to create pipeline");
132 source = gst_element_factory_make ("filesrc", "file-source");
134 eWarning("failed to create filesrc");
138 /* filesrc -> decodebin -> audioconvert -> capsfilter -> alsasink */
140 decoder = gst_element_factory_make ("decodebin", "decoder");
142 eWarning("failed to create decodebin decoder");
144 conv = gst_element_factory_make ("audioconvert", "converter");
146 eWarning("failed to create audioconvert");
148 flt = gst_element_factory_make ("capsfilter", "flt");
150 eWarning("failed to create capsfilter");
152 /* for some reasons, we need to set the sample format to depth/width=16, because auto negotiation doesn't work. */
153 /* endianness, however, is not required to be set anymore. */
156 GstCaps *caps = gst_caps_new_simple("audio/x-raw-int", /* "endianness", G_TYPE_INT, 4321, */ "depth", G_TYPE_INT, 16, "width", G_TYPE_INT, 16, (char*)0);
157 g_object_set (G_OBJECT (flt), "caps", caps, (char*)0);
158 gst_caps_unref(caps);
161 sink = gst_element_factory_make ("alsasink", "alsa-output");
163 eWarning("failed to create osssink");
165 if (source && decoder && conv && sink)
167 } else /* is_video */
169 /* filesrc -> mpegdemux -> | queue_audio -> dvbaudiosink
170 | queue_video -> dvbvideosink */
172 audio = gst_element_factory_make("dvbaudiosink", "audio");
173 queue_audio = gst_element_factory_make("queue", "queue_audio");
175 video = gst_element_factory_make("dvbvideosink", "video");
176 queue_video = gst_element_factory_make("queue", "queue_video");
178 mpegdemux = gst_element_factory_make("mpegdemux", "mpegdemux");
180 eDebug("audio: %p, queue_audio %p, video %p, queue_video %p, mpegdemux %p", audio, queue_audio, video, queue_video, mpegdemux);
181 if (audio && queue_audio && video && queue_video && mpegdemux)
185 if (m_gst_pipeline && all_ok)
187 gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_pipeline)), gstBusSyncHandler, this);
189 /* configure source */
190 g_object_set (G_OBJECT (source), "location", filename, NULL);
194 g_signal_connect (decoder, "new-decoded-pad", G_CALLBACK(gstCBnewPad), this);
195 g_signal_connect (decoder, "unknown-type", G_CALLBACK(gstCBunknownType), this);
197 /* gst_bin will take the 'floating references' */
198 gst_bin_add_many (GST_BIN (m_gst_pipeline),
199 source, decoder, NULL);
200 gst_element_link(source, decoder);
202 /* create audio bin */
203 m_gst_audio = gst_bin_new ("audiobin");
204 GstPad *audiopad = gst_element_get_pad (conv, "sink");
206 gst_bin_add_many(GST_BIN(m_gst_audio), conv, flt, sink, (char*)0);
207 gst_element_link_many(conv, flt, sink, (char*)0);
208 gst_element_add_pad(m_gst_audio, gst_ghost_pad_new ("sink", audiopad));
209 gst_object_unref(audiopad);
210 gst_bin_add (GST_BIN(m_gst_pipeline), m_gst_audio);
213 gst_bin_add_many(GST_BIN(m_gst_pipeline), source, mpegdemux, audio, queue_audio, video, queue_video, NULL);
214 gst_element_link(source, mpegdemux);
215 gst_element_link(queue_audio, audio);
216 gst_element_link(queue_video, video);
218 m_gst_audioqueue = queue_audio;
219 m_gst_videoqueue = queue_video;
221 g_signal_connect(mpegdemux, "pad-added", G_CALLBACK (gstCBpadAdded), this);
226 gst_object_unref(GST_OBJECT(m_gst_pipeline));
228 gst_object_unref(GST_OBJECT(source));
230 gst_object_unref(GST_OBJECT(decoder));
232 gst_object_unref(GST_OBJECT(conv));
234 gst_object_unref(GST_OBJECT(sink));
237 gst_object_unref(GST_OBJECT(audio));
239 gst_object_unref(GST_OBJECT(queue_audio));
241 gst_object_unref(GST_OBJECT(video));
243 gst_object_unref(GST_OBJECT(queue_video));
245 gst_object_unref(GST_OBJECT(mpegdemux));
247 eDebug("sorry, can't play.");
251 gst_element_set_state (m_gst_pipeline, GST_STATE_PLAYING);
254 eServiceMP3::~eServiceMP3()
256 if (m_state == stRunning)
260 gst_tag_list_free(m_stream_tags);
264 gst_object_unref (GST_OBJECT (m_gst_pipeline));
265 eDebug("SERVICEMP3 destruct!");
269 DEFINE_REF(eServiceMP3);
271 RESULT eServiceMP3::connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)
273 connection = new eConnection((iPlayableService*)this, m_event.connect(event));
277 RESULT eServiceMP3::start()
279 assert(m_state == stIdle);
284 eDebug("starting pipeline");
285 gst_element_set_state (m_gst_pipeline, GST_STATE_PLAYING);
287 m_event(this, evStart);
291 RESULT eServiceMP3::stop()
293 assert(m_state != stIdle);
294 if (m_state == stStopped)
296 printf("MP3: %s stop\n", m_filename.c_str());
297 gst_element_set_state(m_gst_pipeline, GST_STATE_NULL);
302 RESULT eServiceMP3::setTarget(int target)
307 RESULT eServiceMP3::pause(ePtr<iPauseableService> &ptr)
313 RESULT eServiceMP3::setSlowMotion(int ratio)
318 RESULT eServiceMP3::setFastForward(int ratio)
324 RESULT eServiceMP3::pause()
328 gst_element_set_state(m_gst_pipeline, GST_STATE_PAUSED);
332 RESULT eServiceMP3::unpause()
336 gst_element_set_state(m_gst_pipeline, GST_STATE_PLAYING);
340 /* iSeekableService */
341 RESULT eServiceMP3::seek(ePtr<iSeekableService> &ptr)
347 RESULT eServiceMP3::getLength(pts_t &pts)
351 if (m_state != stRunning)
354 GstFormat fmt = GST_FORMAT_TIME;
357 if (!gst_element_query_duration(m_gst_pipeline, &fmt, &len))
360 /* len is in nanoseconds. we have 90 000 pts per second. */
366 RESULT eServiceMP3::seekTo(pts_t to)
371 /* convert pts to nanoseconds */
372 gint64 time_nanoseconds = to * 11111LL;
373 if (!gst_element_seek (m_gst_pipeline, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH,
374 GST_SEEK_TYPE_SET, time_nanoseconds,
375 GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE))
377 eDebug("SEEK failed");
383 RESULT eServiceMP3::seekRelative(int direction, pts_t to)
391 getPlayPosition(ppos);
392 ppos += to * direction;
402 RESULT eServiceMP3::getPlayPosition(pts_t &pts)
406 if (m_state != stRunning)
409 GstFormat fmt = GST_FORMAT_TIME;
412 if (!gst_element_query_position(m_gst_pipeline, &fmt, &len))
415 /* len is in nanoseconds. we have 90 000 pts per second. */
420 RESULT eServiceMP3::setTrickmode(int trick)
422 /* trickmode currently doesn't make any sense for us. */
426 RESULT eServiceMP3::isCurrentlySeekable()
431 RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
437 RESULT eServiceMP3::getName(std::string &name)
439 name = "MP3 File: " + m_filename;
443 int eServiceMP3::getInfo(int w)
460 std::string eServiceMP3::getInfoString(int w)
469 tag = GST_TAG_ARTIST;
475 tag = GST_TAG_COMMENT;
478 tag = GST_TAG_TRACK_NUMBER;
487 if (!m_stream_tags || !tag)
492 if (gst_tag_list_get_string(m_stream_tags, tag, &value))
494 std::string res = value;
503 void foreach(const GstTagList *list, const gchar *tag, gpointer user_data)
506 eDebug("Tag: %c%c%c%c", tag[0], tag[1], tag[2], tag[3]);
510 void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
512 gchar *string = gst_structure_to_string(gst_message_get_structure(msg));
513 eDebug("gst_message: %s", string);
517 switch (GST_MESSAGE_TYPE (msg))
519 case GST_MESSAGE_EOS:
520 m_event((iPlayableService*)this, evEOF);
522 case GST_MESSAGE_ERROR:
526 gst_message_parse_error (msg, &err, &debug);
528 eWarning("Gstreamer error: %s", err->message);
530 /* TODO: signal error condition to user */
533 case GST_MESSAGE_TAG:
535 GstTagList *tags, *result;
536 gst_message_parse_tag(msg, &tags);
538 result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_PREPEND);
542 gst_tag_list_free(m_stream_tags);
543 m_stream_tags = result;
545 gst_tag_list_free(tags);
553 GstBusSyncReply eServiceMP3::gstBusSyncHandler(GstBus *bus, GstMessage *message, gpointer user_data)
555 eServiceMP3 *_this = (eServiceMP3*)user_data;
556 _this->m_pump.send(1);
561 void eServiceMP3::gstCBpadAdded(GstElement *decodebin, GstPad *pad, gpointer user_data)
563 eServiceMP3 *_this = (eServiceMP3*)user_data;
566 name = gst_pad_get_name (pad);
567 g_print ("A new pad %s was created\n", name);
568 if (!strcmp(name, "audio_00"))
569 gst_pad_link(pad, gst_element_get_pad (_this->m_gst_audioqueue, "sink"));
570 if (!strcmp(name, "video_00"))
571 gst_pad_link(pad, gst_element_get_pad (_this->m_gst_videoqueue, "sink"));
576 void eServiceMP3::gstCBnewPad(GstElement *decodebin, GstPad *pad, gboolean last, gpointer user_data)
578 eServiceMP3 *_this = (eServiceMP3*)user_data;
584 audiopad = gst_element_get_pad (_this->m_gst_audio, "sink");
585 if (GST_PAD_IS_LINKED (audiopad)) {
586 eDebug("audio already linked!");
587 g_object_unref (audiopad);
591 /* check media type */
592 caps = gst_pad_get_caps (pad);
593 str = gst_caps_get_structure (caps, 0);
594 eDebug("gst new pad! %s", gst_structure_get_name (str));
596 if (!g_strrstr (gst_structure_get_name (str), "audio")) {
597 gst_caps_unref (caps);
598 gst_object_unref (audiopad);
602 gst_caps_unref (caps);
603 gst_pad_link (pad, audiopad);
606 void eServiceMP3::gstCBunknownType(GstElement *decodebin, GstPad *pad, GstCaps *caps, gpointer user_data)
608 eServiceMP3 *_this = (eServiceMP3*)user_data;
611 /* check media type */
612 caps = gst_pad_get_caps (pad);
613 str = gst_caps_get_structure (caps, 0);
614 eDebug("unknown type: %s - this can't be decoded.", gst_structure_get_name (str));
615 gst_caps_unref (caps);
618 void eServiceMP3::gstPoll(const int&)
620 /* ok, we have a serious problem here. gstBusSyncHandler sends
621 us the wakup signal, but likely before it was posted.
622 the usleep, an EVIL HACK (DON'T DO THAT!!!) works around this.
624 I need to understand the API a bit more to make this work
628 GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (m_gst_pipeline));
630 while ((message = gst_bus_pop (bus)))
632 gstBusCall(bus, message);
633 gst_message_unref (message);
637 eAutoInitPtr<eServiceFactoryMP3> init_eServiceFactoryMP3(eAutoInitNumbers::service+1, "eServiceFactoryMP3");
639 #warning gstreamer not available, not building media player