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/components/file_eraser.h>
12 #include <lib/base/init_num.h>
13 #include <lib/base/init.h>
17 #include <lib/gui/esubtitle.h>
21 eServiceFactoryMP3::eServiceFactoryMP3()
23 ePtr<eServiceCenter> sc;
25 eServiceCenter::getPrivInstance(sc);
28 std::list<std::string> extensions;
29 extensions.push_back("mp3");
30 extensions.push_back("ogg");
31 extensions.push_back("mpg");
32 extensions.push_back("vob");
33 extensions.push_back("wav");
34 extensions.push_back("wave");
35 extensions.push_back("mkv");
36 extensions.push_back("avi");
37 sc->addServiceFactory(eServiceFactoryMP3::id, this, extensions);
40 m_service_info = new eStaticServiceMP3Info();
43 eServiceFactoryMP3::~eServiceFactoryMP3()
45 ePtr<eServiceCenter> sc;
47 eServiceCenter::getPrivInstance(sc);
49 sc->removeServiceFactory(eServiceFactoryMP3::id);
52 DEFINE_REF(eServiceFactoryMP3)
55 RESULT eServiceFactoryMP3::play(const eServiceReference &ref, ePtr<iPlayableService> &ptr)
58 ptr = new eServiceMP3(ref.path.c_str());
62 RESULT eServiceFactoryMP3::record(const eServiceReference &ref, ePtr<iRecordableService> &ptr)
68 RESULT eServiceFactoryMP3::list(const eServiceReference &, ePtr<iListableService> &ptr)
74 RESULT eServiceFactoryMP3::info(const eServiceReference &ref, ePtr<iStaticServiceInformation> &ptr)
80 class eMP3ServiceOfflineOperations: public iServiceOfflineOperations
82 DECLARE_REF(eMP3ServiceOfflineOperations);
83 eServiceReference m_ref;
85 eMP3ServiceOfflineOperations(const eServiceReference &ref);
87 RESULT deleteFromDisk(int simulate);
88 RESULT getListOfFilenames(std::list<std::string> &);
91 DEFINE_REF(eMP3ServiceOfflineOperations);
93 eMP3ServiceOfflineOperations::eMP3ServiceOfflineOperations(const eServiceReference &ref): m_ref((const eServiceReference&)ref)
97 RESULT eMP3ServiceOfflineOperations::deleteFromDisk(int simulate)
103 std::list<std::string> res;
104 if (getListOfFilenames(res))
107 eBackgroundFileEraser *eraser = eBackgroundFileEraser::getInstance();
109 eDebug("FATAL !! can't get background file eraser");
111 for (std::list<std::string>::iterator i(res.begin()); i != res.end(); ++i)
113 eDebug("Removing %s...", i->c_str());
115 eraser->erase(i->c_str());
117 ::unlink(i->c_str());
124 RESULT eMP3ServiceOfflineOperations::getListOfFilenames(std::list<std::string> &res)
127 res.push_back(m_ref.path);
132 RESULT eServiceFactoryMP3::offlineOperations(const eServiceReference &ref, ePtr<iServiceOfflineOperations> &ptr)
134 ptr = new eMP3ServiceOfflineOperations(ref);
138 // eStaticServiceMP3Info
141 // eStaticServiceMP3Info is seperated from eServiceMP3 to give information
142 // about unopened files.
144 // probably eServiceMP3 should use this class as well, and eStaticServiceMP3Info
145 // should have a database backend where ID3-files etc. are cached.
146 // this would allow listing the mp3 database based on certain filters.
148 DEFINE_REF(eStaticServiceMP3Info)
150 eStaticServiceMP3Info::eStaticServiceMP3Info()
154 RESULT eStaticServiceMP3Info::getName(const eServiceReference &ref, std::string &name)
156 size_t last = ref.path.rfind('/');
157 if (last != std::string::npos)
158 name = ref.path.substr(last+1);
164 int eStaticServiceMP3Info::getLength(const eServiceReference &ref)
171 eServiceMP3::eServiceMP3(const char *filename): m_filename(filename), m_pump(eApp, 1)
174 m_audioStreams.clear();
175 m_subtitleStreams.clear();
176 m_currentAudioStream = 0;
177 m_currentSubtitleStream = 0;
178 m_subtitle_widget = 0;
179 m_currentTrickRatio = 0;
180 CONNECT(m_seekTimeout.timeout, eServiceMP3::seekTimeoutCB);
181 CONNECT(m_pump.recv_msg, eServiceMP3::gstPoll);
182 GstElement *source = 0;
184 GstElement *decoder = 0, *conv = 0, *flt = 0, *sink = 0; /* for audio */
186 GstElement *audio = 0, *switch_audio = 0, *queue_audio = 0, *video = 0, *queue_video = 0, *videodemux = 0;
189 eDebug("SERVICEMP3 construct!");
191 /* FIXME: currently, decodebin isn't possible for
192 video streams. in that case, make a manual pipeline. */
194 const char *ext = strrchr(filename, '.');
198 int is_mpeg_ps = !(strcasecmp(ext, ".mpeg") && strcasecmp(ext, ".mpg") && strcasecmp(ext, ".vob") && strcasecmp(ext, ".bin") && strcasecmp(ext, ".dat"));
199 int is_mpeg_ts = !strcasecmp(ext, ".ts");
200 int is_matroska = !strcasecmp(ext, ".mkv");
201 int is_avi = !strcasecmp(ext, ".avi");
202 int is_mp3 = !strcasecmp(ext, ".mp3"); /* force mp3 instead of decodebin */
203 int is_video = is_mpeg_ps || is_mpeg_ts || is_matroska || is_avi;
204 int is_streaming = !strncmp(filename, "http://", 7);
205 int is_AudioCD = !(strncmp(filename, "/autofs/", 8) || strncmp(filename+strlen(filename)-13, "/track-", 7) || strcasecmp(ext, ".wav"));
207 eDebug("filename: %s, is_mpeg_ps: %d, is_mpeg_ts: %d, is_video: %d, is_streaming: %d, is_mp3: %d, is_matroska: %d, is_avi: %d, is_AudioCD: %d", filename, is_mpeg_ps, is_mpeg_ts, is_video, is_streaming, is_mp3, is_matroska, is_avi, is_AudioCD);
209 int is_audio = !is_video;
213 m_gst_pipeline = gst_pipeline_new ("mediaplayer");
215 eWarning("failed to create pipeline");
219 source = gst_element_factory_make ("cdiocddasrc", "cda-source");
221 g_object_set (G_OBJECT (source), "device", "/dev/cdroms/cdrom0", NULL);
225 if ( !is_streaming && !is_AudioCD )
226 source = gst_element_factory_make ("filesrc", "file-source");
227 else if ( is_streaming )
229 source = gst_element_factory_make ("neonhttpsrc", "http-source");
231 g_object_set (G_OBJECT (source), "automatic-redirect", TRUE, NULL);
235 eWarning("failed to create %s", is_streaming ? "neonhttpsrc" : "filesrc");
236 /* configure source */
237 else if (!is_AudioCD)
238 g_object_set (G_OBJECT (source), "location", filename, NULL);
241 int track = atoi(filename+18);
242 eDebug("play audio CD track #%i",track);
244 g_object_set (G_OBJECT (source), "track", track, NULL);
249 /* filesrc -> decodebin -> audioconvert -> capsfilter -> alsasink */
250 const char *decodertype = "decodebin";
252 decoder = gst_element_factory_make (decodertype, "decoder");
254 eWarning("failed to create %s decoder", decodertype);
256 conv = gst_element_factory_make ("audioconvert", "converter");
258 eWarning("failed to create audioconvert");
260 flt = gst_element_factory_make ("capsfilter", "flt");
262 eWarning("failed to create capsfilter");
264 /* for some reasons, we need to set the sample format to depth/width=16, because auto negotiation doesn't work. */
265 /* endianness, however, is not required to be set anymore. */
268 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, /*"channels", G_TYPE_INT, 2, */(char*)0);
269 g_object_set (G_OBJECT (flt), "caps", caps, (char*)0);
270 gst_caps_unref(caps);
273 sink = gst_element_factory_make ("alsasink", "alsa-output");
275 eWarning("failed to create osssink");
277 if (source && decoder && conv && sink)
279 } else /* is_video */
281 /* filesrc -> mpegdemux -> | queue_audio -> dvbaudiosink
282 | queue_video -> dvbvideosink */
284 audio = gst_element_factory_make("dvbaudiosink", "audiosink");
285 queue_audio = gst_element_factory_make("queue", "queue_audio");
287 video = gst_element_factory_make("dvbvideosink", "videosink");
288 queue_video = gst_element_factory_make("queue", "queue_video");
291 videodemux = gst_element_factory_make("flupsdemux", "videodemux");
293 videodemux = gst_element_factory_make("flutsdemux", "videodemux");
294 else if (is_matroska)
295 videodemux = gst_element_factory_make("matroskademux", "videodemux");
297 videodemux = gst_element_factory_make("avidemux", "videodemux");
301 eDebug("fluendo mpegdemux not available, falling back to mpegdemux\n");
302 videodemux = gst_element_factory_make("mpegdemux", "videodemux");
305 eDebug("audio: %p, queue_audio %p, video %p, queue_video %p, videodemux %p", audio, queue_audio, video, queue_video, videodemux);
306 if (audio && queue_audio && video && queue_video && videodemux)
308 g_object_set (G_OBJECT (queue_audio), "max-size-bytes", 256*1024, NULL);
309 g_object_set (G_OBJECT (queue_audio), "max-size-buffers", 0, NULL);
310 g_object_set (G_OBJECT (queue_audio), "max-size-time", (guint64)0, NULL);
311 g_object_set (G_OBJECT (queue_video), "max-size-buffers", 0, NULL);
312 g_object_set (G_OBJECT (queue_video), "max-size-bytes", 2*1024*1024, NULL);
313 g_object_set (G_OBJECT (queue_video), "max-size-time", (guint64)0, NULL);
318 if (m_gst_pipeline && all_ok)
320 gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_pipeline)), gstBusSyncHandler, this);
324 queue_audio = gst_element_factory_make("queue", "queue_audio");
325 g_object_set (G_OBJECT (sink), "preroll-queue-len", 80, NULL);
326 gst_bin_add_many (GST_BIN (m_gst_pipeline), source, queue_audio, conv, sink, NULL);
327 gst_element_link_many(source, queue_audio, conv, sink, NULL);
331 queue_audio = gst_element_factory_make("queue", "queue_audio");
333 g_signal_connect (decoder, "new-decoded-pad", G_CALLBACK(gstCBnewPad), this);
334 g_signal_connect (decoder, "unknown-type", G_CALLBACK(gstCBunknownType), this);
337 g_object_set (G_OBJECT (sink), "preroll-queue-len", 80, NULL);
339 /* gst_bin will take the 'floating references' */
340 gst_bin_add_many (GST_BIN (m_gst_pipeline),
341 source, queue_audio, decoder, NULL);
343 /* in decodebin's case we can just connect the source with the decodebin, and decodebin will take care about id3demux (or whatever is required) */
344 gst_element_link_many(source, queue_audio, decoder, NULL);
346 /* create audio bin with the audioconverter, the capsfilter and the audiosink */
347 audio = gst_bin_new ("audiobin");
349 GstPad *audiopad = gst_element_get_static_pad (conv, "sink");
350 gst_bin_add_many(GST_BIN(audio), conv, flt, sink, (char*)0);
351 gst_element_link_many(conv, flt, sink, (char*)0);
352 gst_element_add_pad(audio, gst_ghost_pad_new ("sink", audiopad));
353 gst_object_unref(audiopad);
354 gst_bin_add (GST_BIN(m_gst_pipeline), audio);
355 /* in mad's case, we can directly connect the decoder to the audiobin. otherwise, we do this in gstCBnewPad */
357 gst_element_link(decoder, audio);
359 } else /* is_video */
361 char srt_filename[strlen(filename)+1];
362 strncpy(srt_filename,filename,strlen(filename)-3);
363 srt_filename[strlen(filename)-3]='\0';
364 strcat(srt_filename, "srt");
366 if (stat(srt_filename, &buffer) == 0)
368 eDebug("subtitle file found: %s",srt_filename);
369 GstElement *subsource = gst_element_factory_make ("filesrc", "srt_source");
370 g_object_set (G_OBJECT (subsource), "location", srt_filename, NULL);
371 GstElement *parser = gst_element_factory_make("subparse", "parse_subtitles");
372 GstElement *switch_subtitles = gst_element_factory_make ("input-selector", "switch_subtitles");
373 GstElement *sink = gst_element_factory_make("fakesink", "sink_subtitles");
374 gst_bin_add_many(GST_BIN (m_gst_pipeline), subsource, switch_subtitles, parser, sink, NULL);
375 gst_element_link(subsource, switch_subtitles);
376 gst_element_link(switch_subtitles, parser);
377 gst_element_link(parser, sink);
378 g_object_set (G_OBJECT(switch_subtitles), "select-all", TRUE, NULL);
379 g_object_set (G_OBJECT(sink), "signal-handoffs", TRUE, NULL);
380 g_object_set (G_OBJECT(sink), "sync", TRUE, NULL);
381 g_signal_connect(sink, "handoff", G_CALLBACK(gstCBsubtitleAvail), this);
383 subs.language_code = std::string(".srt file");
384 m_subtitleStreams.push_back(subs);
386 gst_bin_add_many(GST_BIN(m_gst_pipeline), source, videodemux, audio, queue_audio, video, queue_video, NULL);
387 switch_audio = gst_element_factory_make ("input-selector", "switch_audio");
390 g_object_set (G_OBJECT (switch_audio), "select-all", TRUE, NULL);
391 gst_bin_add(GST_BIN(m_gst_pipeline), switch_audio);
392 gst_element_link(switch_audio, queue_audio);
394 gst_element_link(source, videodemux);
395 gst_element_link(queue_audio, audio);
396 gst_element_link(queue_video, video);
397 g_signal_connect(videodemux, "pad-added", G_CALLBACK (gstCBpadAdded), this);
402 gst_object_unref(GST_OBJECT(m_gst_pipeline));
404 gst_object_unref(GST_OBJECT(source));
406 gst_object_unref(GST_OBJECT(decoder));
408 gst_object_unref(GST_OBJECT(conv));
410 gst_object_unref(GST_OBJECT(sink));
413 gst_object_unref(GST_OBJECT(audio));
415 gst_object_unref(GST_OBJECT(queue_audio));
417 gst_object_unref(GST_OBJECT(video));
419 gst_object_unref(GST_OBJECT(queue_video));
421 gst_object_unref(GST_OBJECT(videodemux));
423 gst_object_unref(GST_OBJECT(switch_audio));
425 eDebug("sorry, can't play.");
429 gst_element_set_state (m_gst_pipeline, GST_STATE_PLAYING);
432 eServiceMP3::~eServiceMP3()
434 delete m_subtitle_widget;
435 if (m_state == stRunning)
439 gst_tag_list_free(m_stream_tags);
443 gst_object_unref (GST_OBJECT (m_gst_pipeline));
444 eDebug("SERVICEMP3 destruct!");
448 DEFINE_REF(eServiceMP3);
450 RESULT eServiceMP3::connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)
452 connection = new eConnection((iPlayableService*)this, m_event.connect(event));
456 RESULT eServiceMP3::start()
458 assert(m_state == stIdle);
463 eDebug("starting pipeline");
464 gst_element_set_state (m_gst_pipeline, GST_STATE_PLAYING);
466 m_event(this, evStart);
470 RESULT eServiceMP3::stop()
472 assert(m_state != stIdle);
473 if (m_state == stStopped)
475 eDebug("MP3: %s stop\n", m_filename.c_str());
476 gst_element_set_state(m_gst_pipeline, GST_STATE_NULL);
481 RESULT eServiceMP3::setTarget(int target)
486 RESULT eServiceMP3::pause(ePtr<iPauseableService> &ptr)
492 RESULT eServiceMP3::setSlowMotion(int ratio)
494 /* we can't do slomo yet */
498 RESULT eServiceMP3::setFastForward(int ratio)
500 m_currentTrickRatio = ratio;
502 m_seekTimeout.start(1000, 0);
504 m_seekTimeout.stop();
508 void eServiceMP3::seekTimeoutCB()
511 getPlayPosition(ppos);
513 ppos += 90000*m_currentTrickRatio;
518 m_seekTimeout.stop();
524 m_seekTimeout.stop();
531 RESULT eServiceMP3::pause()
535 GstStateChangeReturn res = gst_element_set_state(m_gst_pipeline, GST_STATE_PAUSED);
536 if (res == GST_STATE_CHANGE_ASYNC)
539 getPlayPosition(ppos);
545 RESULT eServiceMP3::unpause()
550 GstStateChangeReturn res;
551 res = gst_element_set_state(m_gst_pipeline, GST_STATE_PLAYING);
555 /* iSeekableService */
556 RESULT eServiceMP3::seek(ePtr<iSeekableService> &ptr)
562 RESULT eServiceMP3::getLength(pts_t &pts)
566 if (m_state != stRunning)
569 GstFormat fmt = GST_FORMAT_TIME;
572 if (!gst_element_query_duration(m_gst_pipeline, &fmt, &len))
575 /* len is in nanoseconds. we have 90 000 pts per second. */
581 RESULT eServiceMP3::seekTo(pts_t to)
586 /* convert pts to nanoseconds */
587 gint64 time_nanoseconds = to * 11111LL;
588 if (!gst_element_seek (m_gst_pipeline, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH,
589 GST_SEEK_TYPE_SET, time_nanoseconds,
590 GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE))
592 eDebug("SEEK failed");
598 RESULT eServiceMP3::seekRelative(int direction, pts_t to)
604 getPlayPosition(ppos);
605 ppos += to * direction;
613 RESULT eServiceMP3::getPlayPosition(pts_t &pts)
617 if (m_state != stRunning)
620 GstFormat fmt = GST_FORMAT_TIME;
623 if (!gst_element_query_position(m_gst_pipeline, &fmt, &len))
626 /* len is in nanoseconds. we have 90 000 pts per second. */
631 RESULT eServiceMP3::setTrickmode(int trick)
633 /* trickmode is not yet supported by our dvbmediasinks. */
637 RESULT eServiceMP3::isCurrentlySeekable()
642 RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
648 RESULT eServiceMP3::getName(std::string &name)
651 size_t n = name.rfind('/');
652 if (n != std::string::npos)
653 name = name.substr(n + 1);
657 int eServiceMP3::getInfo(int w)
672 tag = GST_TAG_TRACK_NUMBER;
675 tag = GST_TAG_TRACK_COUNT;
681 if (!m_stream_tags || !tag)
685 if (gst_tag_list_get_uint(m_stream_tags, tag, &value))
692 std::string eServiceMP3::getInfoString(int w)
701 tag = GST_TAG_ARTIST;
707 tag = GST_TAG_COMMENT;
710 tag = GST_TAG_TRACK_NUMBER;
716 tag = GST_TAG_VIDEO_CODEC;
722 if (!m_stream_tags || !tag)
727 if (gst_tag_list_get_string(m_stream_tags, tag, &value))
729 std::string res = value;
737 RESULT eServiceMP3::audioChannel(ePtr<iAudioChannelSelection> &ptr)
743 RESULT eServiceMP3::audioTracks(ePtr<iAudioTrackSelection> &ptr)
749 RESULT eServiceMP3::subtitle(ePtr<iSubtitleOutput> &ptr)
755 int eServiceMP3::getNumberOfTracks()
757 return m_audioStreams.size();
760 int eServiceMP3::getCurrentTrack()
762 return m_currentAudioStream;
765 RESULT eServiceMP3::selectTrack(unsigned int i)
767 int ret = selectAudioStream(i);
770 getPlayPosition(ppos);
776 int eServiceMP3::selectAudioStream(int i)
780 GstElement *switch_audio = gst_bin_get_by_name(GST_BIN(m_gst_pipeline),"switch_audio");
783 eDebug("can't switch audio tracks! gst-plugin-selector needed");
786 g_object_get (G_OBJECT (switch_audio), "n-pads", &nb_sources, NULL);
787 if ( (unsigned int)i >= m_audioStreams.size() || i >= nb_sources || (unsigned int)m_currentAudioStream >= m_audioStreams.size() )
790 sprintf(sinkpad, "sink%d", i);
791 g_object_set (G_OBJECT (switch_audio), "active-pad", gst_element_get_pad (switch_audio, sinkpad), NULL);
792 g_object_get (G_OBJECT (switch_audio), "active-pad", &active_pad, NULL);
794 name = gst_pad_get_name (active_pad);
795 eDebug ("switched audio to (%s)", name);
797 m_currentAudioStream = i;
801 int eServiceMP3::getCurrentChannel()
806 RESULT eServiceMP3::selectChannel(int i)
808 eDebug("eServiceMP3::selectChannel(%i)",i);
812 RESULT eServiceMP3::getTrackInfo(struct iAudioTrackInfo &info, unsigned int i)
814 // eDebug("eServiceMP3::getTrackInfo(&info, %i)",i);
815 if (i >= m_audioStreams.size())
817 if (m_audioStreams[i].type == atMPEG)
818 info.m_description = "MPEG";
819 else if (m_audioStreams[i].type == atMP3)
820 info.m_description = "MP3";
821 else if (m_audioStreams[i].type == atAC3)
822 info.m_description = "AC3";
823 else if (m_audioStreams[i].type == atAAC)
824 info.m_description = "AAC";
825 else if (m_audioStreams[i].type == atDTS)
826 info.m_description = "DTS";
827 else if (m_audioStreams[i].type == atPCM)
828 info.m_description = "PCM";
829 else if (m_audioStreams[i].type == atOGG)
830 info.m_description = "OGG";
832 info.m_description = "???";
833 if (info.m_language.empty())
834 info.m_language = m_audioStreams[i].language_code;
838 void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
845 source = GST_MESSAGE_SRC(msg);
846 sourceName = gst_object_get_name(source);
848 if (gst_message_get_structure(msg))
850 gchar *string = gst_structure_to_string(gst_message_get_structure(msg));
851 eDebug("gst_message from %s: %s", sourceName, string);
855 eDebug("gst_message from %s: %s (without structure)", sourceName, GST_MESSAGE_TYPE_NAME(msg));
857 switch (GST_MESSAGE_TYPE (msg))
859 case GST_MESSAGE_EOS:
860 m_event((iPlayableService*)this, evEOF);
862 case GST_MESSAGE_ERROR:
867 gst_message_parse_error (msg, &err, &debug);
869 eWarning("Gstreamer error: %s (%i)", err->message, err->code );
870 if ( err->domain == GST_STREAM_ERROR && err->code == GST_STREAM_ERROR_DECODE )
872 if ( g_strrstr(sourceName, "videosink") )
873 m_event((iPlayableService*)this, evUser+11);
876 /* TODO: signal error condition to user */
879 case GST_MESSAGE_TAG:
881 GstTagList *tags, *result;
882 gst_message_parse_tag(msg, &tags);
884 result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_PREPEND);
888 gst_tag_list_free(m_stream_tags);
889 m_stream_tags = result;
893 if ( gst_tag_list_get_string(tags, GST_TAG_AUDIO_CODEC, &g_audiocodec) && m_audioStreams.size() == 0 )
895 GstPad* pad = gst_element_get_pad (GST_ELEMENT(source), "src");
896 GstCaps* caps = gst_pad_get_caps(pad);
897 GstStructure* str = gst_caps_get_structure(caps, 0);
901 audio.type = gstCheckAudioPad(str);
902 m_audioStreams.push_back(audio);
906 case GST_MESSAGE_ASYNC_DONE:
909 for (std::vector<audioStream>::iterator IterAudioStream(m_audioStreams.begin()); IterAudioStream != m_audioStreams.end(); ++IterAudioStream)
911 if ( IterAudioStream->pad )
913 g_object_get(IterAudioStream->pad, "tags", &tags, NULL);
915 if ( gst_is_tag_list(tags) && gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_language) )
917 eDebug("found audio language %s",g_language);
918 IterAudioStream->language_code = std::string(g_language);
923 for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
925 if ( IterSubtitleStream->pad )
927 g_object_get(IterSubtitleStream->pad, "tags", &tags, NULL);
929 if ( gst_is_tag_list(tags) && gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_language) )
931 eDebug("found subtitle language %s",g_language);
932 IterSubtitleStream->language_code = std::string(g_language);
944 GstBusSyncReply eServiceMP3::gstBusSyncHandler(GstBus *bus, GstMessage *message, gpointer user_data)
946 eServiceMP3 *_this = (eServiceMP3*)user_data;
947 _this->m_pump.send(1);
952 audiotype_t eServiceMP3::gstCheckAudioPad(GstStructure* structure)
955 type = gst_structure_get_name(structure);
957 if (!strcmp(type, "audio/mpeg")) {
958 gint mpegversion, layer = 0;
959 gst_structure_get_int (structure, "mpegversion", &mpegversion);
960 gst_structure_get_int (structure, "layer", &layer);
961 eDebug("mime audio/mpeg version %d layer %d", mpegversion, layer);
962 switch (mpegversion) {
980 eDebug("mime %s", type);
981 if (!strcmp(type, "audio/x-ac3") || !strcmp(type, "audio/ac3"))
983 else if (!strcmp(type, "audio/x-dts") || !strcmp(type, "audio/dts"))
985 else if (!strcmp(type, "audio/x-raw-int"))
991 void eServiceMP3::gstCBpadAdded(GstElement *decodebin, GstPad *pad, gpointer user_data)
996 caps = gst_pad_get_caps(pad);
997 str = gst_caps_get_structure(caps, 0);
998 type = gst_structure_get_name(str);
1000 eDebug("A new pad %s:%s was created", GST_OBJECT_NAME (decodebin), GST_OBJECT_NAME (pad));
1002 eServiceMP3 *_this = (eServiceMP3*)user_data;
1003 GstBin *pipeline = GST_BIN(_this->m_gst_pipeline);
1004 if (g_strrstr(type,"audio"))
1007 audio.type = _this->gstCheckAudioPad(str);
1008 GstElement *switch_audio = gst_bin_get_by_name(pipeline , "switch_audio");
1011 GstPad *sinkpad = gst_element_get_request_pad (switch_audio, "sink%d");
1012 gst_pad_link(pad, sinkpad);
1013 audio.pad = sinkpad;
1014 _this->m_audioStreams.push_back(audio);
1016 if ( _this->m_audioStreams.size() == 1 )
1018 _this->selectAudioStream(0);
1019 gst_element_set_state (_this->m_gst_pipeline, GST_STATE_PLAYING);
1022 g_object_set (G_OBJECT (switch_audio), "select-all", FALSE, NULL);
1026 gst_pad_link(pad, gst_element_get_static_pad(gst_bin_get_by_name(pipeline,"queue_audio"), "sink"));
1027 _this->m_audioStreams.push_back(audio);
1030 if (g_strrstr(type,"video"))
1032 gst_pad_link(pad, gst_element_get_static_pad(gst_bin_get_by_name(pipeline,"queue_video"), "sink"));
1034 if (g_strrstr(type,"application/x-ssa") || g_strrstr(type,"application/x-ass"))
1036 GstElement *switch_subtitles = gst_bin_get_by_name(pipeline,"switch_subtitles");
1037 if ( !switch_subtitles )
1039 switch_subtitles = gst_element_factory_make ("input-selector", "switch_subtitles");
1040 if ( !switch_subtitles )
1042 GstElement *parser = gst_element_factory_make("ssaparse", "parse_subtitles");
1043 GstElement *sink = gst_element_factory_make("fakesink", "sink_subtitles");
1044 gst_bin_add_many(pipeline, switch_subtitles, parser, sink, NULL);
1045 gst_element_link(switch_subtitles, parser);
1046 gst_element_link(parser, sink);
1047 g_object_set (G_OBJECT(sink), "signal-handoffs", TRUE, NULL);
1048 g_signal_connect(sink, "handoff", G_CALLBACK(gstCBsubtitleAvail), _this);
1050 GstPad *sinkpad = gst_element_get_request_pad (switch_subtitles, "sink%d");
1051 gst_pad_link(pad, sinkpad);
1052 subtitleStream subs;
1054 _this->m_subtitleStreams.push_back(subs);
1058 void eServiceMP3::gstCBfilterPadAdded(GstElement *filter, GstPad *pad, gpointer user_data)
1060 eServiceMP3 *_this = (eServiceMP3*)user_data;
1061 GstElement *decoder = gst_bin_get_by_name(GST_BIN(_this->m_gst_pipeline),"decoder");
1062 gst_pad_link(pad, gst_element_get_static_pad (decoder, "sink"));
1065 void eServiceMP3::gstCBnewPad(GstElement *decodebin, GstPad *pad, gboolean last, gpointer user_data)
1067 eServiceMP3 *_this = (eServiceMP3*)user_data;
1072 /* only link once */
1073 GstElement *audiobin = gst_bin_get_by_name(GST_BIN(_this->m_gst_pipeline),"audiobin");
1074 audiopad = gst_element_get_static_pad (audiobin, "sink");
1075 if ( !audiopad || GST_PAD_IS_LINKED (audiopad)) {
1076 eDebug("audio already linked!");
1077 g_object_unref (audiopad);
1081 /* check media type */
1082 caps = gst_pad_get_caps (pad);
1083 str = gst_caps_get_structure (caps, 0);
1084 eDebug("gst new pad! %s", gst_structure_get_name (str));
1086 if (!g_strrstr (gst_structure_get_name (str), "audio")) {
1087 gst_caps_unref (caps);
1088 gst_object_unref (audiopad);
1092 gst_caps_unref (caps);
1093 gst_pad_link (pad, audiopad);
1096 void eServiceMP3::gstCBunknownType(GstElement *decodebin, GstPad *pad, GstCaps *caps, gpointer user_data)
1100 /* check media type */
1101 caps = gst_pad_get_caps (pad);
1102 str = gst_caps_get_structure (caps, 0);
1103 eDebug("unknown type: %s - this can't be decoded.", gst_structure_get_name (str));
1104 gst_caps_unref (caps);
1107 void eServiceMP3::gstPoll(const int&)
1109 /* ok, we have a serious problem here. gstBusSyncHandler sends
1110 us the wakup signal, but likely before it was posted.
1111 the usleep, an EVIL HACK (DON'T DO THAT!!!) works around this.
1113 I need to understand the API a bit more to make this work
1117 GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (m_gst_pipeline));
1118 GstMessage *message;
1119 while ((message = gst_bus_pop (bus)))
1121 gstBusCall(bus, message);
1122 gst_message_unref (message);
1126 eAutoInitPtr<eServiceFactoryMP3> init_eServiceFactoryMP3(eAutoInitNumbers::service+1, "eServiceFactoryMP3");
1128 #warning gstreamer not available, not building media player
1131 void eServiceMP3::gstCBsubtitleAvail(GstElement *element, GstBuffer *buffer, GstPad *pad, gpointer user_data)
1133 const unsigned char *text = (unsigned char *)GST_BUFFER_DATA(buffer);
1134 eDebug("gstCBsubtitleAvail: %s",text);
1135 eServiceMP3 *_this = (eServiceMP3*)user_data;
1136 if ( _this->m_subtitle_widget )
1138 eDVBTeletextSubtitlePage page;
1139 gRGB rgbcol(0xD0,0xD0,0xD0);
1140 page.m_elements.push_back(eDVBTeletextSubtitlePageElement(rgbcol, (const char*)text));
1141 (_this->m_subtitle_widget)->setPage(page);
1145 RESULT eServiceMP3::enableSubtitles(eWidget *parent, ePyObject tuple)
1147 eDebug("eServiceMP3::enableSubtitles");
1150 int tuplesize = PyTuple_Size(tuple);
1154 GstElement *switch_subtitles = gst_bin_get_by_name(GST_BIN(m_gst_pipeline),"switch_subtitles");
1156 if (!PyTuple_Check(tuple))
1160 entry = PyTuple_GET_ITEM(tuple, 1);
1161 if (!PyInt_Check(entry))
1163 pid = PyInt_AsLong(entry);
1165 m_subtitle_widget = new eSubtitleWidget(parent);
1166 m_subtitle_widget->resize(parent->size()); /* full size */
1168 if ( !switch_subtitles )
1170 eDebug("can't switch subtitle tracks! gst-plugin-selector needed");
1173 g_object_get (G_OBJECT (switch_subtitles), "n-pads", &nb_sources, NULL);
1174 if ( (unsigned int)pid >= m_subtitleStreams.size() || pid >= nb_sources || (unsigned int)m_currentSubtitleStream >= m_subtitleStreams.size() )
1177 sprintf(sinkpad, "sink%d", pid);
1178 g_object_set (G_OBJECT (switch_subtitles), "active-pad", gst_element_get_pad (switch_subtitles, sinkpad), NULL);
1179 g_object_get (G_OBJECT (switch_subtitles), "active-pad", &active_pad, NULL);
1181 name = gst_pad_get_name (active_pad);
1182 eDebug ("switched subtitles to (%s)", name);
1184 m_currentSubtitleStream = pid;
1188 eDebug("enableSubtitles needs a tuple as 2nd argument!\n"
1189 "for gst subtitles (2, subtitle_stream_count)");
1193 RESULT eServiceMP3::disableSubtitles(eWidget *parent)
1195 eDebug("eServiceMP3::disableSubtitles");
1196 delete m_subtitle_widget;
1197 m_subtitle_widget = 0;
1201 PyObject *eServiceMP3::getCachedSubtitle()
1203 eDebug("eServiceMP3::getCachedSubtitle");
1207 PyObject *eServiceMP3::getSubtitleList()
1209 eDebug("eServiceMP3::getSubtitleList");
1211 ePyObject l = PyList_New(0);
1212 int stream_count = 0;
1214 for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
1216 ePyObject tuple = PyTuple_New(5);
1217 PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(2));
1218 PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(stream_count));
1219 PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(0));
1220 PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(0));
1221 PyTuple_SET_ITEM(tuple, 4, PyString_FromString((IterSubtitleStream->language_code).c_str()));
1222 PyList_Append(l, tuple);