Enigma2-{Network,NetworkWizard,WirelessLan}: more work on wireless lan / networking...
[enigma2.git] / lib / service / servicemp3.cpp
1         /* note: this requires gstreamer 0.10.x and a big list of plugins. */
2         /* it's currently hardcoded to use a big-endian alsasink as sink. */
3 #include <lib/base/ebase.h>
4 #include <lib/base/eerror.h>
5 #include <lib/base/init_num.h>
6 #include <lib/base/init.h>
7 #include <lib/base/nconfig.h>
8 #include <lib/base/object.h>
9 #include <lib/dvb/decoder.h>
10 #include <lib/components/file_eraser.h>
11 #include <lib/gui/esubtitle.h>
12 #include <lib/service/servicemp3.h>
13 #include <lib/service/service.h>
14 #include <lib/gdi/gpixmap.h>
15
16 #include <string>
17
18 #include <gst/gst.h>
19 #include <gst/pbutils/missing-plugins.h>
20 #include <sys/stat.h>
21
22 #define HTTP_TIMEOUT 10
23
24 // eServiceFactoryMP3
25
26 eServiceFactoryMP3::eServiceFactoryMP3()
27 {
28         ePtr<eServiceCenter> sc;
29         
30         eServiceCenter::getPrivInstance(sc);
31         if (sc)
32         {
33                 std::list<std::string> extensions;
34                 extensions.push_back("mp2");
35                 extensions.push_back("mp3");
36                 extensions.push_back("ogg");
37                 extensions.push_back("mpg");
38                 extensions.push_back("vob");
39                 extensions.push_back("wav");
40                 extensions.push_back("wave");
41                 extensions.push_back("m4v");
42                 extensions.push_back("mkv");
43                 extensions.push_back("avi");
44                 extensions.push_back("divx");
45                 extensions.push_back("dat");
46                 extensions.push_back("flac");
47                 extensions.push_back("mp4");
48                 extensions.push_back("mov");
49                 extensions.push_back("m4a");
50                 sc->addServiceFactory(eServiceFactoryMP3::id, this, extensions);
51         }
52
53         m_service_info = new eStaticServiceMP3Info();
54 }
55
56 eServiceFactoryMP3::~eServiceFactoryMP3()
57 {
58         ePtr<eServiceCenter> sc;
59         
60         eServiceCenter::getPrivInstance(sc);
61         if (sc)
62                 sc->removeServiceFactory(eServiceFactoryMP3::id);
63 }
64
65 DEFINE_REF(eServiceFactoryMP3)
66
67         // iServiceHandler
68 RESULT eServiceFactoryMP3::play(const eServiceReference &ref, ePtr<iPlayableService> &ptr)
69 {
70                 // check resources...
71         ptr = new eServiceMP3(ref);
72         return 0;
73 }
74
75 RESULT eServiceFactoryMP3::record(const eServiceReference &ref, ePtr<iRecordableService> &ptr)
76 {
77         ptr=0;
78         return -1;
79 }
80
81 RESULT eServiceFactoryMP3::list(const eServiceReference &, ePtr<iListableService> &ptr)
82 {
83         ptr=0;
84         return -1;
85 }
86
87 RESULT eServiceFactoryMP3::info(const eServiceReference &ref, ePtr<iStaticServiceInformation> &ptr)
88 {
89         ptr = m_service_info;
90         return 0;
91 }
92
93 class eMP3ServiceOfflineOperations: public iServiceOfflineOperations
94 {
95         DECLARE_REF(eMP3ServiceOfflineOperations);
96         eServiceReference m_ref;
97 public:
98         eMP3ServiceOfflineOperations(const eServiceReference &ref);
99         
100         RESULT deleteFromDisk(int simulate);
101         RESULT getListOfFilenames(std::list<std::string> &);
102         RESULT reindex();
103 };
104
105 DEFINE_REF(eMP3ServiceOfflineOperations);
106
107 eMP3ServiceOfflineOperations::eMP3ServiceOfflineOperations(const eServiceReference &ref): m_ref((const eServiceReference&)ref)
108 {
109 }
110
111 RESULT eMP3ServiceOfflineOperations::deleteFromDisk(int simulate)
112 {
113         if (simulate)
114                 return 0;
115         else
116         {
117                 std::list<std::string> res;
118                 if (getListOfFilenames(res))
119                         return -1;
120                 
121                 eBackgroundFileEraser *eraser = eBackgroundFileEraser::getInstance();
122                 if (!eraser)
123                         eDebug("FATAL !! can't get background file eraser");
124                 
125                 for (std::list<std::string>::iterator i(res.begin()); i != res.end(); ++i)
126                 {
127                         eDebug("Removing %s...", i->c_str());
128                         if (eraser)
129                                 eraser->erase(i->c_str());
130                         else
131                                 ::unlink(i->c_str());
132                 }
133                 
134                 return 0;
135         }
136 }
137
138 RESULT eMP3ServiceOfflineOperations::getListOfFilenames(std::list<std::string> &res)
139 {
140         res.clear();
141         res.push_back(m_ref.path);
142         return 0;
143 }
144
145 RESULT eMP3ServiceOfflineOperations::reindex()
146 {
147         return -1;
148 }
149
150
151 RESULT eServiceFactoryMP3::offlineOperations(const eServiceReference &ref, ePtr<iServiceOfflineOperations> &ptr)
152 {
153         ptr = new eMP3ServiceOfflineOperations(ref);
154         return 0;
155 }
156
157 // eStaticServiceMP3Info
158
159
160 // eStaticServiceMP3Info is seperated from eServiceMP3 to give information
161 // about unopened files.
162
163 // probably eServiceMP3 should use this class as well, and eStaticServiceMP3Info
164 // should have a database backend where ID3-files etc. are cached.
165 // this would allow listing the mp3 database based on certain filters.
166
167 DEFINE_REF(eStaticServiceMP3Info)
168
169 eStaticServiceMP3Info::eStaticServiceMP3Info()
170 {
171 }
172
173 RESULT eStaticServiceMP3Info::getName(const eServiceReference &ref, std::string &name)
174 {
175         if ( ref.name.length() )
176                 name = ref.name;
177         else
178         {
179                 size_t last = ref.path.rfind('/');
180                 if (last != std::string::npos)
181                         name = ref.path.substr(last+1);
182                 else
183                         name = ref.path;
184         }
185         return 0;
186 }
187
188 int eStaticServiceMP3Info::getLength(const eServiceReference &ref)
189 {
190         return -1;
191 }
192
193 int eStaticServiceMP3Info::getInfo(const eServiceReference &ref, int w)
194 {
195         switch (w)
196         {
197         case iServiceInformation::sTimeCreate:
198         {
199                 struct stat s;
200                 if(stat(ref.path.c_str(), &s) == 0)
201                 {
202                   return s.st_mtime;
203                 }
204                 return iServiceInformation::resNA;
205         }
206         default: break;
207         }
208         return iServiceInformation::resNA;
209 }
210  
211
212 // eServiceMP3
213 int eServiceMP3::ac3_delay,
214     eServiceMP3::pcm_delay;
215
216 eServiceMP3::eServiceMP3(eServiceReference ref)
217         :m_ref(ref), m_pump(eApp, 1)
218 {
219         m_seekTimeout = eTimer::create(eApp);
220         m_subtitle_sync_timer = eTimer::create(eApp);
221         m_streamingsrc_timeout = 0;
222         m_stream_tags = 0;
223         m_currentAudioStream = -1;
224         m_currentSubtitleStream = 0;
225         m_subtitle_widget = 0;
226         m_currentTrickRatio = 0;
227         m_subs_to_pull = 0;
228         m_buffer_size = 1*1024*1024;
229         m_prev_decoder_time = -1;
230         m_decoder_time_valid_state = 0;
231         m_errorInfo.missing_codec = "";
232
233         CONNECT(m_seekTimeout->timeout, eServiceMP3::seekTimeoutCB);
234         CONNECT(m_subtitle_sync_timer->timeout, eServiceMP3::pushSubtitles);
235         CONNECT(m_pump.recv_msg, eServiceMP3::gstPoll);
236         m_aspect = m_width = m_height = m_framerate = m_progressive = -1;
237
238         m_state = stIdle;
239         eDebug("eServiceMP3::construct!");
240
241         const char *filename = m_ref.path.c_str();
242         const char *ext = strrchr(filename, '.');
243         if (!ext)
244                 ext = filename;
245
246         m_sourceinfo.is_video = FALSE;
247         m_sourceinfo.audiotype = atUnknown;
248         if ( (strcasecmp(ext, ".mpeg") && strcasecmp(ext, ".mpg") && strcasecmp(ext, ".vob") && strcasecmp(ext, ".bin") && strcasecmp(ext, ".dat") ) == 0 )
249         {
250                 m_sourceinfo.containertype = ctMPEGPS;
251                 m_sourceinfo.is_video = TRUE;
252         }
253         else if ( strcasecmp(ext, ".ts") == 0 )
254         {
255                 m_sourceinfo.containertype = ctMPEGTS;
256                 m_sourceinfo.is_video = TRUE;
257         }
258         else if ( strcasecmp(ext, ".mkv") == 0 )
259         {
260                 m_sourceinfo.containertype = ctMKV;
261                 m_sourceinfo.is_video = TRUE;
262         }
263         else if ( strcasecmp(ext, ".avi") == 0 || strcasecmp(ext, ".divx") == 0)
264         {
265                 m_sourceinfo.containertype = ctAVI;
266                 m_sourceinfo.is_video = TRUE;
267         }
268         else if ( strcasecmp(ext, ".mp4") == 0 || strcasecmp(ext, ".mov") == 0 || strcasecmp(ext, ".m4v") == 0)
269         {
270                 m_sourceinfo.containertype = ctMP4;
271                 m_sourceinfo.is_video = TRUE;
272         }
273         else if ( strcasecmp(ext, ".m4a") == 0 )
274         {
275                 m_sourceinfo.containertype = ctMP4;
276                 m_sourceinfo.audiotype = atAAC;
277         }
278         else if ( strcasecmp(ext, ".mp3") == 0 )
279                 m_sourceinfo.audiotype = atMP3;
280         else if ( (strncmp(filename, "/autofs/", 8) || strncmp(filename+strlen(filename)-13, "/track-", 7) || strcasecmp(ext, ".wav")) == 0 )
281                 m_sourceinfo.containertype = ctCDA;
282         if ( strcasecmp(ext, ".dat") == 0 )
283         {
284                 m_sourceinfo.containertype = ctVCD;
285                 m_sourceinfo.is_video = TRUE;
286         }
287         if ( (strncmp(filename, "http://", 7)) == 0 || (strncmp(filename, "udp://", 6)) == 0 || (strncmp(filename, "rtp://", 6)) == 0  || (strncmp(filename, "https://", 8)) == 0 || (strncmp(filename, "mms://", 6)) == 0 || (strncmp(filename, "rtsp://", 7)) == 0 || (strncmp(filename, "rtspt://", 7)) == 0 )
288                 m_sourceinfo.is_streaming = TRUE;
289
290         gchar *uri;
291
292         if ( m_sourceinfo.is_streaming )
293         {
294                 uri = g_strdup_printf ("%s", filename);
295                 m_streamingsrc_timeout = eTimer::create(eApp);;
296                 CONNECT(m_streamingsrc_timeout->timeout, eServiceMP3::sourceTimeout);
297
298                 std::string config_str;
299                 if( ePythonConfigQuery::getConfigValue("config.mediaplayer.useAlternateUserAgent", config_str) == 0 )
300                 {
301                         if ( config_str == "True" )
302                                 ePythonConfigQuery::getConfigValue("config.mediaplayer.alternateUserAgent", m_useragent);
303                 }
304                 if ( m_useragent.length() == 0 )
305                         m_useragent = "Dream Multimedia Dreambox Enigma2 Mediaplayer";
306         }
307         else if ( m_sourceinfo.containertype == ctCDA )
308         {
309                 int i_track = atoi(filename+18);
310                 uri = g_strdup_printf ("cdda://%i", i_track);
311         }
312         else if ( m_sourceinfo.containertype == ctVCD )
313         {
314                 int fd = open(filename,O_RDONLY);
315                 char tmp[128*1024];
316                 int ret = read(fd, tmp, 128*1024);
317                 close(fd);
318                 if ( ret == -1 ) // this is a "REAL" VCD
319                         uri = g_strdup_printf ("vcd://");
320                 else
321                         uri = g_filename_to_uri(filename, NULL, NULL);
322         }
323         else
324
325                 uri = g_filename_to_uri(filename, NULL, NULL);
326
327         eDebug("eServiceMP3::playbin2 uri=%s", uri);
328
329         m_gst_playbin = gst_element_factory_make("playbin2", "playbin");
330         if (!m_gst_playbin)
331                 m_errorInfo.error_message = "failed to create GStreamer pipeline!\n";
332
333         g_object_set (G_OBJECT (m_gst_playbin), "uri", uri, NULL);
334
335         int flags = 0x47; // ( GST_PLAY_FLAG_VIDEO | GST_PLAY_FLAG_AUDIO | GST_PLAY_FLAG_NATIVE_VIDEO | GST_PLAY_FLAG_TEXT );
336         g_object_set (G_OBJECT (m_gst_playbin), "flags", flags, NULL);
337
338         g_free(uri);
339
340         GstElement *subsink = gst_element_factory_make("appsink", "subtitle_sink");
341         if (!subsink)
342                 eDebug("eServiceMP3::sorry, can't play: missing gst-plugin-appsink");
343         else
344         {
345                 m_subs_to_pull_handler_id = g_signal_connect (subsink, "new-buffer", G_CALLBACK (gstCBsubtitleAvail), this);
346                 g_object_set (G_OBJECT (subsink), "caps", gst_caps_from_string("text/plain; text/x-plain; text/x-pango-markup; video/x-dvd-subpicture; subpicture/x-pgs"), NULL);
347                 g_object_set (G_OBJECT (m_gst_playbin), "text-sink", subsink, NULL);
348                 
349         }
350
351         if ( m_gst_playbin )
352         {
353                 gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin)), gstBusSyncHandler, this);
354                 char srt_filename[strlen(filename)+1];
355                 strncpy(srt_filename,filename,strlen(filename)-3);
356                 srt_filename[strlen(filename)-3]='\0';
357                 strcat(srt_filename, "srt");
358                 struct stat buffer;
359                 if (stat(srt_filename, &buffer) == 0)
360                 {
361                         eDebug("eServiceMP3::subtitle uri: %s", g_filename_to_uri(srt_filename, NULL, NULL));
362                         g_object_set (G_OBJECT (m_gst_playbin), "suburi", g_filename_to_uri(srt_filename, NULL, NULL), NULL);
363                 }
364                 if ( m_sourceinfo.is_streaming )
365                 {
366                         g_signal_connect (G_OBJECT (m_gst_playbin), "notify::source", G_CALLBACK (gstHTTPSourceSetAgent), this);
367                 }
368         } else
369         {
370                 m_event((iPlayableService*)this, evUser+12);
371
372                 if (m_gst_playbin)
373                         gst_object_unref(GST_OBJECT(m_gst_playbin));
374
375                 eDebug("eServiceMP3::sorry, can't play: %s",m_errorInfo.error_message.c_str());
376                 m_gst_playbin = 0;
377         }
378
379         setBufferSize(m_buffer_size);
380 }
381
382 eServiceMP3::~eServiceMP3()
383 {
384         // disconnect subtitle callback
385         GstElement *appsink = gst_bin_get_by_name(GST_BIN(m_gst_playbin), "subtitle_sink");
386
387         if (appsink)
388         {
389                 g_signal_handler_disconnect (appsink, m_subs_to_pull_handler_id);
390                 gst_object_unref(appsink);
391         }
392
393         delete m_subtitle_widget;
394
395         // disconnect sync handler callback
396         gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin)), NULL, NULL);
397
398         if (m_state == stRunning)
399                 stop();
400
401         if (m_stream_tags)
402                 gst_tag_list_free(m_stream_tags);
403         
404         if (m_gst_playbin)
405         {
406                 gst_object_unref (GST_OBJECT (m_gst_playbin));
407                 eDebug("eServiceMP3::destruct!");
408         }
409 }
410
411 DEFINE_REF(eServiceMP3);
412
413 RESULT eServiceMP3::connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)
414 {
415         connection = new eConnection((iPlayableService*)this, m_event.connect(event));
416         return 0;
417 }
418
419 RESULT eServiceMP3::start()
420 {
421         ASSERT(m_state == stIdle);
422
423         m_state = stRunning;
424         if (m_gst_playbin)
425         {
426                 eDebug("eServiceMP3::starting pipeline");
427                 gst_element_set_state (m_gst_playbin, GST_STATE_PLAYING);
428         }
429
430         m_event(this, evStart);
431
432         return 0;
433 }
434
435 void eServiceMP3::sourceTimeout()
436 {
437         eDebug("eServiceMP3::http source timeout! issuing eof...");
438         m_event((iPlayableService*)this, evEOF);
439 }
440
441 RESULT eServiceMP3::stop()
442 {
443         ASSERT(m_state != stIdle);
444
445         if (m_state == stStopped)
446                 return -1;
447         
448         //GST_DEBUG_BIN_TO_DOT_FILE(GST_BIN(m_gst_playbin),GST_DEBUG_GRAPH_SHOW_ALL,"e2-playbin");
449
450         eDebug("eServiceMP3::stop %s", m_ref.path.c_str());
451         gst_element_set_state(m_gst_playbin, GST_STATE_NULL);
452         m_state = stStopped;
453
454         return 0;
455 }
456
457 RESULT eServiceMP3::setTarget(int target)
458 {
459         return -1;
460 }
461
462 RESULT eServiceMP3::pause(ePtr<iPauseableService> &ptr)
463 {
464         ptr=this;
465         return 0;
466 }
467
468 RESULT eServiceMP3::setSlowMotion(int ratio)
469 {
470         if (!ratio)
471                 return 0;
472         eDebug("eServiceMP3::setSlowMotion ratio=%f",1/(float)ratio);
473         return trickSeek(1/(float)ratio);
474 }
475
476 RESULT eServiceMP3::setFastForward(int ratio)
477 {
478         eDebug("eServiceMP3::setFastForward ratio=%i",ratio);
479         return trickSeek(ratio);
480 }
481
482 void eServiceMP3::seekTimeoutCB()
483 {
484         pts_t ppos, len;
485         getPlayPosition(ppos);
486         getLength(len);
487         ppos += 90000*m_currentTrickRatio;
488         
489         if (ppos < 0)
490         {
491                 ppos = 0;
492                 m_seekTimeout->stop();
493         }
494         if (ppos > len)
495         {
496                 ppos = 0;
497                 stop();
498                 m_seekTimeout->stop();
499                 return;
500         }
501         seekTo(ppos);
502 }
503
504                 // iPausableService
505 RESULT eServiceMP3::pause()
506 {
507         if (!m_gst_playbin || m_state != stRunning)
508                 return -1;
509
510         gst_element_set_state(m_gst_playbin, GST_STATE_PAUSED);
511
512         return 0;
513 }
514
515 RESULT eServiceMP3::unpause()
516 {
517         if (!m_gst_playbin || m_state != stRunning)
518                 return -1;
519
520         gst_element_set_state(m_gst_playbin, GST_STATE_PLAYING);
521
522         return 0;
523 }
524
525         /* iSeekableService */
526 RESULT eServiceMP3::seek(ePtr<iSeekableService> &ptr)
527 {
528         ptr = this;
529         return 0;
530 }
531
532 RESULT eServiceMP3::getLength(pts_t &pts)
533 {
534         if (!m_gst_playbin)
535                 return -1;
536
537         if (m_state != stRunning)
538                 return -1;
539
540         GstFormat fmt = GST_FORMAT_TIME;
541         gint64 len;
542         
543         if (!gst_element_query_duration(m_gst_playbin, &fmt, &len))
544                 return -1;
545                 /* len is in nanoseconds. we have 90 000 pts per second. */
546         
547         pts = len / 11111;
548         return 0;
549 }
550
551 RESULT eServiceMP3::seekToImpl(pts_t to)
552 {
553                 /* convert pts to nanoseconds */
554         gint64 time_nanoseconds = to * 11111LL;
555         if (!gst_element_seek (m_gst_playbin, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH,
556                 GST_SEEK_TYPE_SET, time_nanoseconds,
557                 GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE))
558         {
559                 eDebug("eServiceMP3::seekTo failed");
560                 return -1;
561         }
562
563         return 0;
564 }
565
566 RESULT eServiceMP3::seekTo(pts_t to)
567 {
568         RESULT ret = -1;
569
570         if (m_gst_playbin) {
571                 eSingleLocker l(m_subs_to_pull_lock); // this is needed to dont handle incomming subtitles during seek!
572                 if (!(ret = seekToImpl(to)))
573                 {
574                         m_subtitle_pages.clear();
575                         m_prev_decoder_time = -1;
576                         m_decoder_time_valid_state = 0;
577                         m_subs_to_pull = 0;
578                 }
579         }
580
581         return ret;
582 }
583
584
585 RESULT eServiceMP3::trickSeek(gdouble ratio)
586 {
587         if (!m_gst_playbin)
588                 return -1;
589         if (!ratio)
590                 return seekRelative(0, 0);
591
592         GstEvent *s_event;
593         int flags;
594         flags = GST_SEEK_FLAG_NONE;
595         flags |= GST_SEEK_FLAG_FLUSH;
596 //      flags |= GstSeekFlags (GST_SEEK_FLAG_ACCURATE);
597         flags |= GST_SEEK_FLAG_KEY_UNIT;
598 //      flags |= GstSeekFlags (GST_SEEK_FLAG_SEGMENT);
599 //      flags |= GstSeekFlags (GST_SEEK_FLAG_SKIP);
600
601         GstFormat fmt = GST_FORMAT_TIME;
602         gint64 pos, len;
603         gst_element_query_duration(m_gst_playbin, &fmt, &len);
604         gst_element_query_position(m_gst_playbin, &fmt, &pos);
605
606         if ( ratio >= 0 )
607         {
608                 s_event = gst_event_new_seek (ratio, GST_FORMAT_TIME, (GstSeekFlags)flags, GST_SEEK_TYPE_SET, pos, GST_SEEK_TYPE_SET, len);
609
610                 eDebug("eServiceMP3::trickSeek with rate %lf to %" GST_TIME_FORMAT " ", ratio, GST_TIME_ARGS (pos));
611         }
612         else
613         {
614                 s_event = gst_event_new_seek (ratio, GST_FORMAT_TIME, (GstSeekFlags)(GST_SEEK_FLAG_SKIP|GST_SEEK_FLAG_FLUSH), GST_SEEK_TYPE_NONE, -1, GST_SEEK_TYPE_NONE, -1);
615         }
616
617         if (!gst_element_send_event ( GST_ELEMENT (m_gst_playbin), s_event))
618         {
619                 eDebug("eServiceMP3::trickSeek failed");
620                 return -1;
621         }
622
623         return 0;
624 }
625
626
627 RESULT eServiceMP3::seekRelative(int direction, pts_t to)
628 {
629         if (!m_gst_playbin)
630                 return -1;
631
632         pts_t ppos;
633         getPlayPosition(ppos);
634         ppos += to * direction;
635         if (ppos < 0)
636                 ppos = 0;
637         seekTo(ppos);
638         
639         return 0;
640 }
641
642 RESULT eServiceMP3::getPlayPosition(pts_t &pts)
643 {
644         GstFormat fmt = GST_FORMAT_TIME;
645         gint64 pos;
646         GstElement *sink;
647         pts = 0;
648
649         if (!m_gst_playbin)
650                 return -1;
651         if (m_state != stRunning)
652                 return -1;
653
654         g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
655
656         if (!sink)
657                 g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
658
659         if (!sink)
660                 return -1;
661
662         gchar *name = gst_element_get_name(sink);
663         gboolean use_get_decoder_time = strstr(name, "dvbaudiosink") || strstr(name, "dvbvideosink");
664         g_free(name);
665
666         if (use_get_decoder_time)
667                 g_signal_emit_by_name(sink, "get-decoder-time", &pos);
668
669         gst_object_unref(sink);
670
671         if (!use_get_decoder_time && !gst_element_query_position(m_gst_playbin, &fmt, &pos)) {
672                 eDebug("gst_element_query_position failed in getPlayPosition");
673                 return -1;
674         }
675
676         /* pos is in nanoseconds. we have 90 000 pts per second. */
677         pts = pos / 11111;
678 //      eDebug("gst_element_query_position %lld pts (%lld ms)", pts, pos/1000000);
679         return 0;
680 }
681
682 RESULT eServiceMP3::setTrickmode(int trick)
683 {
684                 /* trickmode is not yet supported by our dvbmediasinks. */
685         return -1;
686 }
687
688 RESULT eServiceMP3::isCurrentlySeekable()
689 {
690         int ret = 3; // seeking and fast/slow winding possible
691         GstElement *sink;
692
693         if (!m_gst_playbin)
694                 return 0;
695         if (m_state != stRunning)
696                 return 0;
697
698         g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
699
700         // disable fast winding yet when a dvbvideosink or dvbaudiosink is used
701         // for this we must do some changes on different places.. (gstreamer.. our sinks.. enigma2)
702         if (sink) {
703                 ret &= ~2; // only seeking possible
704                 gst_object_unref(sink);
705         }
706         else {
707                 g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
708                 if (sink) {
709                         ret &= ~2; // only seeking possible
710                         gst_object_unref(sink);
711                 }
712         }
713
714         return ret;
715 }
716
717 RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
718 {
719         i = this;
720         return 0;
721 }
722
723 RESULT eServiceMP3::getName(std::string &name)
724 {
725         std::string title = m_ref.getName();
726         if (title.empty())
727         {
728                 name = m_ref.path;
729                 size_t n = name.rfind('/');
730                 if (n != std::string::npos)
731                         name = name.substr(n + 1);
732         }
733         else
734                 name = title;
735         return 0;
736 }
737
738 int eServiceMP3::getInfo(int w)
739 {
740         const gchar *tag = 0;
741
742         switch (w)
743         {
744         case sServiceref: return m_ref;
745         case sVideoHeight: return m_height;
746         case sVideoWidth: return m_width;
747         case sFrameRate: return m_framerate;
748         case sProgressive: return m_progressive;
749         case sAspect: return m_aspect;
750         case sTagTitle:
751         case sTagArtist:
752         case sTagAlbum:
753         case sTagTitleSortname:
754         case sTagArtistSortname:
755         case sTagAlbumSortname:
756         case sTagDate:
757         case sTagComposer:
758         case sTagGenre:
759         case sTagComment:
760         case sTagExtendedComment:
761         case sTagLocation:
762         case sTagHomepage:
763         case sTagDescription:
764         case sTagVersion:
765         case sTagISRC:
766         case sTagOrganization:
767         case sTagCopyright:
768         case sTagCopyrightURI:
769         case sTagContact:
770         case sTagLicense:
771         case sTagLicenseURI:
772         case sTagCodec:
773         case sTagAudioCodec:
774         case sTagVideoCodec:
775         case sTagEncoder:
776         case sTagLanguageCode:
777         case sTagKeywords:
778         case sTagChannelMode:
779         case sUser+12:
780                 return resIsString;
781         case sTagTrackGain:
782         case sTagTrackPeak:
783         case sTagAlbumGain:
784         case sTagAlbumPeak:
785         case sTagReferenceLevel:
786         case sTagBeatsPerMinute:
787         case sTagImage:
788         case sTagPreviewImage:
789         case sTagAttachment:
790                 return resIsPyObject;
791         case sTagTrackNumber:
792                 tag = GST_TAG_TRACK_NUMBER;
793                 break;
794         case sTagTrackCount:
795                 tag = GST_TAG_TRACK_COUNT;
796                 break;
797         case sTagAlbumVolumeNumber:
798                 tag = GST_TAG_ALBUM_VOLUME_NUMBER;
799                 break;
800         case sTagAlbumVolumeCount:
801                 tag = GST_TAG_ALBUM_VOLUME_COUNT;
802                 break;
803         case sTagBitrate:
804                 tag = GST_TAG_BITRATE;
805                 break;
806         case sTagNominalBitrate:
807                 tag = GST_TAG_NOMINAL_BITRATE;
808                 break;
809         case sTagMinimumBitrate:
810                 tag = GST_TAG_MINIMUM_BITRATE;
811                 break;
812         case sTagMaximumBitrate:
813                 tag = GST_TAG_MAXIMUM_BITRATE;
814                 break;
815         case sTagSerial:
816                 tag = GST_TAG_SERIAL;
817                 break;
818         case sTagEncoderVersion:
819                 tag = GST_TAG_ENCODER_VERSION;
820                 break;
821         case sTagCRC:
822                 tag = "has-crc";
823                 break;
824         default:
825                 return resNA;
826         }
827
828         if (!m_stream_tags || !tag)
829                 return 0;
830         
831         guint value;
832         if (gst_tag_list_get_uint(m_stream_tags, tag, &value))
833                 return (int) value;
834
835         return 0;
836 }
837
838 std::string eServiceMP3::getInfoString(int w)
839 {
840         if ( !m_stream_tags && w < sUser && w > 26 )
841                 return "";
842         const gchar *tag = 0;
843         switch (w)
844         {
845         case sTagTitle:
846                 tag = GST_TAG_TITLE;
847                 break;
848         case sTagArtist:
849                 tag = GST_TAG_ARTIST;
850                 break;
851         case sTagAlbum:
852                 tag = GST_TAG_ALBUM;
853                 break;
854         case sTagTitleSortname:
855                 tag = GST_TAG_TITLE_SORTNAME;
856                 break;
857         case sTagArtistSortname:
858                 tag = GST_TAG_ARTIST_SORTNAME;
859                 break;
860         case sTagAlbumSortname:
861                 tag = GST_TAG_ALBUM_SORTNAME;
862                 break;
863         case sTagDate:
864                 GDate *date;
865                 if (gst_tag_list_get_date(m_stream_tags, GST_TAG_DATE, &date))
866                 {
867                         gchar res[5];
868                         g_date_strftime (res, sizeof(res), "%Y-%M-%D", date); 
869                         return (std::string)res;
870                 }
871                 break;
872         case sTagComposer:
873                 tag = GST_TAG_COMPOSER;
874                 break;
875         case sTagGenre:
876                 tag = GST_TAG_GENRE;
877                 break;
878         case sTagComment:
879                 tag = GST_TAG_COMMENT;
880                 break;
881         case sTagExtendedComment:
882                 tag = GST_TAG_EXTENDED_COMMENT;
883                 break;
884         case sTagLocation:
885                 tag = GST_TAG_LOCATION;
886                 break;
887         case sTagHomepage:
888                 tag = GST_TAG_HOMEPAGE;
889                 break;
890         case sTagDescription:
891                 tag = GST_TAG_DESCRIPTION;
892                 break;
893         case sTagVersion:
894                 tag = GST_TAG_VERSION;
895                 break;
896         case sTagISRC:
897                 tag = GST_TAG_ISRC;
898                 break;
899         case sTagOrganization:
900                 tag = GST_TAG_ORGANIZATION;
901                 break;
902         case sTagCopyright:
903                 tag = GST_TAG_COPYRIGHT;
904                 break;
905         case sTagCopyrightURI:
906                 tag = GST_TAG_COPYRIGHT_URI;
907                 break;
908         case sTagContact:
909                 tag = GST_TAG_CONTACT;
910                 break;
911         case sTagLicense:
912                 tag = GST_TAG_LICENSE;
913                 break;
914         case sTagLicenseURI:
915                 tag = GST_TAG_LICENSE_URI;
916                 break;
917         case sTagCodec:
918                 tag = GST_TAG_CODEC;
919                 break;
920         case sTagAudioCodec:
921                 tag = GST_TAG_AUDIO_CODEC;
922                 break;
923         case sTagVideoCodec:
924                 tag = GST_TAG_VIDEO_CODEC;
925                 break;
926         case sTagEncoder:
927                 tag = GST_TAG_ENCODER;
928                 break;
929         case sTagLanguageCode:
930                 tag = GST_TAG_LANGUAGE_CODE;
931                 break;
932         case sTagKeywords:
933                 tag = GST_TAG_KEYWORDS;
934                 break;
935         case sTagChannelMode:
936                 tag = "channel-mode";
937                 break;
938         case sUser+12:
939                 return m_errorInfo.error_message;
940         default:
941                 return "";
942         }
943         if ( !tag )
944                 return "";
945         gchar *value;
946         if (gst_tag_list_get_string(m_stream_tags, tag, &value))
947         {
948                 std::string res = value;
949                 g_free(value);
950                 return res;
951         }
952         return "";
953 }
954
955 PyObject *eServiceMP3::getInfoObject(int w)
956 {
957         const gchar *tag = 0;
958         bool isBuffer = false;
959         switch (w)
960         {
961                 case sTagTrackGain:
962                         tag = GST_TAG_TRACK_GAIN;
963                         break;
964                 case sTagTrackPeak:
965                         tag = GST_TAG_TRACK_PEAK;
966                         break;
967                 case sTagAlbumGain:
968                         tag = GST_TAG_ALBUM_GAIN;
969                         break;
970                 case sTagAlbumPeak:
971                         tag = GST_TAG_ALBUM_PEAK;
972                         break;
973                 case sTagReferenceLevel:
974                         tag = GST_TAG_REFERENCE_LEVEL;
975                         break;
976                 case sTagBeatsPerMinute:
977                         tag = GST_TAG_BEATS_PER_MINUTE;
978                         break;
979                 case sTagImage:
980                         tag = GST_TAG_IMAGE;
981                         isBuffer = true;
982                         break;
983                 case sTagPreviewImage:
984                         tag = GST_TAG_PREVIEW_IMAGE;
985                         isBuffer = true;
986                         break;
987                 case sTagAttachment:
988                         tag = GST_TAG_ATTACHMENT;
989                         isBuffer = true;
990                         break;
991                 default:
992                         break;
993         }
994
995         if ( isBuffer )
996         {
997                 const GValue *gv_buffer = gst_tag_list_get_value_index(m_stream_tags, tag, 0);
998                 if ( gv_buffer )
999                 {
1000                         GstBuffer *buffer;
1001                         buffer = gst_value_get_buffer (gv_buffer);
1002                         return PyBuffer_FromMemory(GST_BUFFER_DATA(buffer), GST_BUFFER_SIZE(buffer));
1003                 }
1004         }
1005         else
1006         {
1007                 gdouble value = 0.0;
1008                 gst_tag_list_get_double(m_stream_tags, tag, &value);
1009                 return PyFloat_FromDouble(value);
1010         }
1011
1012         return 0;
1013 }
1014
1015 RESULT eServiceMP3::audioChannel(ePtr<iAudioChannelSelection> &ptr)
1016 {
1017         ptr = this;
1018         return 0;
1019 }
1020
1021 RESULT eServiceMP3::audioTracks(ePtr<iAudioTrackSelection> &ptr)
1022 {
1023         ptr = this;
1024         return 0;
1025 }
1026
1027 RESULT eServiceMP3::subtitle(ePtr<iSubtitleOutput> &ptr)
1028 {
1029         ptr = this;
1030         return 0;
1031 }
1032
1033 RESULT eServiceMP3::audioDelay(ePtr<iAudioDelay> &ptr)
1034 {
1035         ptr = this;
1036         return 0;
1037 }
1038
1039 int eServiceMP3::getNumberOfTracks()
1040 {
1041         return m_audioStreams.size();
1042 }
1043
1044 int eServiceMP3::getCurrentTrack()
1045 {
1046         if (m_currentAudioStream == -1)
1047                 g_object_get (G_OBJECT (m_gst_playbin), "current-audio", &m_currentAudioStream, NULL);
1048         return m_currentAudioStream;
1049 }
1050
1051 RESULT eServiceMP3::selectTrack(unsigned int i)
1052 {
1053         pts_t ppos;
1054         getPlayPosition(ppos);
1055         ppos -= 90000;
1056         if (ppos < 0)
1057                 ppos = 0;
1058
1059         int ret = selectAudioStream(i);
1060         if (!ret) {
1061                 /* flush */
1062                 seekTo(ppos);
1063         }
1064
1065         return ret;
1066 }
1067
1068 int eServiceMP3::selectAudioStream(int i)
1069 {
1070         int current_audio;
1071         g_object_set (G_OBJECT (m_gst_playbin), "current-audio", i, NULL);
1072         g_object_get (G_OBJECT (m_gst_playbin), "current-audio", &current_audio, NULL);
1073         if ( current_audio == i )
1074         {
1075                 eDebug ("eServiceMP3::switched to audio stream %i", current_audio);
1076                 m_currentAudioStream = i;
1077                 return 0;
1078         }
1079         return -1;
1080 }
1081
1082 int eServiceMP3::getCurrentChannel()
1083 {
1084         return STEREO;
1085 }
1086
1087 RESULT eServiceMP3::selectChannel(int i)
1088 {
1089         eDebug("eServiceMP3::selectChannel(%i)",i);
1090         return 0;
1091 }
1092
1093 RESULT eServiceMP3::getTrackInfo(struct iAudioTrackInfo &info, unsigned int i)
1094 {
1095         if (i >= m_audioStreams.size())
1096                 return -2;
1097                 info.m_description = m_audioStreams[i].codec;
1098 /*      if (m_audioStreams[i].type == atMPEG)
1099                 info.m_description = "MPEG";
1100         else if (m_audioStreams[i].type == atMP3)
1101                 info.m_description = "MP3";
1102         else if (m_audioStreams[i].type == atAC3)
1103                 info.m_description = "AC3";
1104         else if (m_audioStreams[i].type == atAAC)
1105                 info.m_description = "AAC";
1106         else if (m_audioStreams[i].type == atDTS)
1107                 info.m_description = "DTS";
1108         else if (m_audioStreams[i].type == atPCM)
1109                 info.m_description = "PCM";
1110         else if (m_audioStreams[i].type == atOGG)
1111                 info.m_description = "OGG";
1112         else if (m_audioStreams[i].type == atFLAC)
1113                 info.m_description = "FLAC";
1114         else
1115                 info.m_description = "???";*/
1116         if (info.m_language.empty())
1117                 info.m_language = m_audioStreams[i].language_code;
1118         return 0;
1119 }
1120
1121 subtype_t getSubtitleType(GstPad* pad, gchar *g_codec=NULL)
1122 {
1123         subtype_t type = stUnknown;
1124         GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1125
1126         if ( caps )
1127         {
1128                 GstStructure* str = gst_caps_get_structure(caps, 0);
1129                 const gchar *g_type = gst_structure_get_name(str);
1130                 eDebug("getSubtitleType::subtitle probe caps type=%s", g_type);
1131
1132                 if ( !strcmp(g_type, "video/x-dvd-subpicture") )
1133                         type = stVOB;
1134                 else if ( !strcmp(g_type, "text/x-pango-markup") )
1135                         type = stSSA;
1136                 else if ( !strcmp(g_type, "text/plain") )
1137                         type = stPlainText;
1138                 else if ( !strcmp(g_type, "subpicture/x-pgs") )
1139                         type = stPGS;
1140                 else
1141                         eDebug("getSubtitleType::unsupported subtitle caps %s (%s)", g_type, g_codec);
1142         }
1143         else if ( g_codec )
1144         {
1145                 eDebug("getSubtitleType::subtitle probe codec tag=%s", g_codec);
1146                 if ( !strcmp(g_codec, "VOB") )
1147                         type = stVOB;
1148                 else if ( !strcmp(g_codec, "SubStation Alpha") || !strcmp(g_codec, "SSA") )
1149                         type = stSSA;
1150                 else if ( !strcmp(g_codec, "ASS") )
1151                         type = stASS;
1152                 else if ( !strcmp(g_codec, "UTF-8 plain text") )
1153                         type = stPlainText;
1154                 else
1155                         eDebug("getSubtitleType::unsupported subtitle codec %s", g_codec);
1156         }
1157         else
1158                 eDebug("getSubtitleType::unidentifiable subtitle stream!");
1159
1160         return type;
1161 }
1162
1163 void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
1164 {
1165         if (!msg)
1166                 return;
1167         gchar *sourceName;
1168         GstObject *source;
1169         source = GST_MESSAGE_SRC(msg);
1170         if (!GST_IS_OBJECT(source))
1171                 return;
1172         sourceName = gst_object_get_name(source);
1173 #if 0
1174         gchar *string;
1175         if (gst_message_get_structure(msg))
1176                 string = gst_structure_to_string(gst_message_get_structure(msg));
1177         else
1178                 string = g_strdup(GST_MESSAGE_TYPE_NAME(msg));
1179         eDebug("eTsRemoteSource::gst_message from %s: %s", sourceName, string);
1180         g_free(string);
1181 #endif
1182         switch (GST_MESSAGE_TYPE (msg))
1183         {
1184                 case GST_MESSAGE_EOS:
1185                         m_event((iPlayableService*)this, evEOF);
1186                         break;
1187                 case GST_MESSAGE_STATE_CHANGED:
1188                 {
1189                         if(GST_MESSAGE_SRC(msg) != GST_OBJECT(m_gst_playbin))
1190                                 break;
1191
1192                         GstState old_state, new_state;
1193                         gst_message_parse_state_changed(msg, &old_state, &new_state, NULL);
1194                 
1195                         if(old_state == new_state)
1196                                 break;
1197         
1198                         eDebug("eServiceMP3::state transition %s -> %s", gst_element_state_get_name(old_state), gst_element_state_get_name(new_state));
1199         
1200                         GstStateChange transition = (GstStateChange)GST_STATE_TRANSITION(old_state, new_state);
1201         
1202                         switch(transition)
1203                         {
1204                                 case GST_STATE_CHANGE_NULL_TO_READY:
1205                                 {
1206                                 }       break;
1207                                 case GST_STATE_CHANGE_READY_TO_PAUSED:
1208                                 {
1209                                         GstElement *appsink = gst_bin_get_by_name(GST_BIN(m_gst_playbin), "subtitle_sink");
1210                                         if (appsink)
1211                                         {
1212                                                 g_object_set (G_OBJECT (appsink), "max-buffers", 2, NULL);
1213                                                 g_object_set (G_OBJECT (appsink), "sync", FALSE, NULL);
1214                                                 g_object_set (G_OBJECT (appsink), "emit-signals", TRUE, NULL);
1215                                                 eDebug("eServiceMP3::appsink properties set!");
1216                                                 gst_object_unref(appsink);
1217                                         }
1218                                         setAC3Delay(ac3_delay);
1219                                         setPCMDelay(pcm_delay);
1220                                 }       break;
1221                                 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
1222                                 {
1223                                         if ( m_sourceinfo.is_streaming && m_streamingsrc_timeout )
1224                                                 m_streamingsrc_timeout->stop();
1225                                 }       break;
1226                                 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1227                                 {
1228                                 }       break;
1229                                 case GST_STATE_CHANGE_PAUSED_TO_READY:
1230                                 {
1231                                 }       break;
1232                                 case GST_STATE_CHANGE_READY_TO_NULL:
1233                                 {
1234                                 }       break;
1235                         }
1236                         break;
1237                 }
1238                 case GST_MESSAGE_ERROR:
1239                 {
1240                         gchar *debug;
1241                         GError *err;
1242                         gst_message_parse_error (msg, &err, &debug);
1243                         g_free (debug);
1244                         eWarning("Gstreamer error: %s (%i) from %s", err->message, err->code, sourceName );
1245                         if ( err->domain == GST_STREAM_ERROR )
1246                         {
1247                                 if ( err->code == GST_STREAM_ERROR_CODEC_NOT_FOUND )
1248                                 {
1249                                         if ( g_strrstr(sourceName, "videosink") )
1250                                                 m_event((iPlayableService*)this, evUser+11);
1251                                         else if ( g_strrstr(sourceName, "audiosink") )
1252                                                 m_event((iPlayableService*)this, evUser+10);
1253                                 }
1254                         }
1255                         g_error_free(err);
1256                         break;
1257                 }
1258                 case GST_MESSAGE_INFO:
1259                 {
1260                         gchar *debug;
1261                         GError *inf;
1262         
1263                         gst_message_parse_info (msg, &inf, &debug);
1264                         g_free (debug);
1265                         if ( inf->domain == GST_STREAM_ERROR && inf->code == GST_STREAM_ERROR_DECODE )
1266                         {
1267                                 if ( g_strrstr(sourceName, "videosink") )
1268                                         m_event((iPlayableService*)this, evUser+14);
1269                         }
1270                         g_error_free(inf);
1271                         break;
1272                 }
1273                 case GST_MESSAGE_TAG:
1274                 {
1275                         GstTagList *tags, *result;
1276                         gst_message_parse_tag(msg, &tags);
1277         
1278                         result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_REPLACE);
1279                         if (result)
1280                         {
1281                                 if (m_stream_tags)
1282                                         gst_tag_list_free(m_stream_tags);
1283                                 m_stream_tags = result;
1284                         }
1285         
1286                         const GValue *gv_image = gst_tag_list_get_value_index(tags, GST_TAG_IMAGE, 0);
1287                         if ( gv_image )
1288                         {
1289                                 GstBuffer *buf_image;
1290                                 buf_image = gst_value_get_buffer (gv_image);
1291                                 int fd = open("/tmp/.id3coverart", O_CREAT|O_WRONLY|O_TRUNC, 0644);
1292                                 int ret = write(fd, GST_BUFFER_DATA(buf_image), GST_BUFFER_SIZE(buf_image));
1293                                 close(fd);
1294                                 eDebug("eServiceMP3::/tmp/.id3coverart %d bytes written ", ret);
1295                                 m_event((iPlayableService*)this, evUser+13);
1296                         }
1297                         gst_tag_list_free(tags);
1298                         m_event((iPlayableService*)this, evUpdatedInfo);
1299                         break;
1300                 }
1301                 case GST_MESSAGE_ASYNC_DONE:
1302                 {
1303                         if(GST_MESSAGE_SRC(msg) != GST_OBJECT(m_gst_playbin))
1304                                 break;
1305
1306                         GstTagList *tags;
1307                         gint i, active_idx, n_video = 0, n_audio = 0, n_text = 0;
1308
1309                         g_object_get (m_gst_playbin, "n-video", &n_video, NULL);
1310                         g_object_get (m_gst_playbin, "n-audio", &n_audio, NULL);
1311                         g_object_get (m_gst_playbin, "n-text", &n_text, NULL);
1312
1313                         eDebug("eServiceMP3::async-done - %d video, %d audio, %d subtitle", n_video, n_audio, n_text);
1314
1315                         if ( n_video + n_audio <= 0 )
1316                                 stop();
1317
1318                         active_idx = 0;
1319
1320                         m_audioStreams.clear();
1321                         m_subtitleStreams.clear();
1322
1323                         for (i = 0; i < n_audio; i++)
1324                         {
1325                                 audioStream audio;
1326                                 gchar *g_codec, *g_lang;
1327                                 GstPad* pad = 0;
1328                                 g_signal_emit_by_name (m_gst_playbin, "get-audio-pad", i, &pad);
1329                                 GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1330                                 if (!caps)
1331                                         continue;
1332                                 GstStructure* str = gst_caps_get_structure(caps, 0);
1333                                 const gchar *g_type = gst_structure_get_name(str);
1334                                 audio.type = gstCheckAudioPad(str);
1335                                 g_codec = g_strdup(g_type);
1336                                 g_lang = g_strdup_printf ("und");
1337                                 g_signal_emit_by_name (m_gst_playbin, "get-audio-tags", i, &tags);
1338                                 if ( tags && gst_is_tag_list(tags) )
1339                                 {
1340                                         gst_tag_list_get_string(tags, GST_TAG_AUDIO_CODEC, &g_codec);
1341                                         gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1342                                         gst_tag_list_free(tags);
1343                                 }
1344                                 audio.language_code = std::string(g_lang);
1345                                 audio.codec = std::string(g_codec);
1346                                 eDebug("eServiceMP3::audio stream=%i codec=%s language=%s", i, g_codec, g_lang);
1347                                 m_audioStreams.push_back(audio);
1348                                 g_free (g_lang);
1349                                 g_free (g_codec);
1350                                 gst_caps_unref(caps);
1351                         }
1352
1353                         for (i = 0; i < n_text; i++)
1354                         {
1355                                 gchar *g_codec = NULL, *g_lang = NULL;
1356                                 g_signal_emit_by_name (m_gst_playbin, "get-text-tags", i, &tags);
1357                                 subtitleStream subs;
1358 //                              int ret;
1359
1360                                 g_lang = g_strdup_printf ("und");
1361                                 if ( tags && gst_is_tag_list(tags) )
1362                                 {
1363                                         gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1364                                         gst_tag_list_get_string(tags, GST_TAG_SUBTITLE_CODEC, &g_codec);
1365                                         gst_tag_list_free(tags);
1366                                 }
1367
1368                                 subs.language_code = std::string(g_lang);
1369                                 eDebug("eServiceMP3::subtitle stream=%i language=%s codec=%s", i, g_lang, g_codec);
1370                                 
1371                                 GstPad* pad = 0;
1372                                 g_signal_emit_by_name (m_gst_playbin, "get-text-pad", i, &pad);
1373                                 if ( pad )
1374                                         g_signal_connect (G_OBJECT (pad), "notify::caps", G_CALLBACK (gstTextpadHasCAPS), this);
1375                                 subs.type = getSubtitleType(pad, g_codec);
1376
1377                                 m_subtitleStreams.push_back(subs);
1378                                 g_free (g_lang);
1379                         }
1380                         m_event((iPlayableService*)this, evUpdatedEventInfo);
1381
1382                         if ( m_errorInfo.missing_codec != "" )
1383                         {
1384                                 if ( m_errorInfo.missing_codec.find("video/") == 0 || ( m_errorInfo.missing_codec.find("audio/") == 0 && getNumberOfTracks() == 0 ) )
1385                                         m_event((iPlayableService*)this, evUser+12);
1386                         }
1387                         break;
1388                 }
1389                 case GST_MESSAGE_ELEMENT:
1390                 {
1391                         if (const GstStructure *msgstruct = gst_message_get_structure(msg))
1392                         {
1393                                 if ( gst_is_missing_plugin_message(msg) )
1394                                 {
1395                                         GstCaps *caps;
1396                                         gst_structure_get (msgstruct, "detail", GST_TYPE_CAPS, &caps, NULL); 
1397                                         std::string codec = (const char*) gst_caps_to_string(caps);
1398                                         gchar *description = gst_missing_plugin_message_get_description(msg);
1399                                         if ( description )
1400                                         {
1401                                                 eDebug("eServiceMP3::m_errorInfo.missing_codec = %s", codec.c_str());
1402                                                 m_errorInfo.error_message = "GStreamer plugin " + (std::string)description + " not available!\n";
1403                                                 m_errorInfo.missing_codec = codec.substr(0,(codec.find_first_of(',')));
1404                                                 g_free(description);
1405                                         }
1406                                         gst_caps_unref(caps);
1407                                 }
1408                                 else
1409                                 {
1410                                         const gchar *eventname = gst_structure_get_name(msgstruct);
1411                                         if ( eventname )
1412                                         {
1413                                                 if (!strcmp(eventname, "eventSizeChanged") || !strcmp(eventname, "eventSizeAvail"))
1414                                                 {
1415                                                         gst_structure_get_int (msgstruct, "aspect_ratio", &m_aspect);
1416                                                         gst_structure_get_int (msgstruct, "width", &m_width);
1417                                                         gst_structure_get_int (msgstruct, "height", &m_height);
1418                                                         if (strstr(eventname, "Changed"))
1419                                                                 m_event((iPlayableService*)this, evVideoSizeChanged);
1420                                                 }
1421                                                 else if (!strcmp(eventname, "eventFrameRateChanged") || !strcmp(eventname, "eventFrameRateAvail"))
1422                                                 {
1423                                                         gst_structure_get_int (msgstruct, "frame_rate", &m_framerate);
1424                                                         if (strstr(eventname, "Changed"))
1425                                                                 m_event((iPlayableService*)this, evVideoFramerateChanged);
1426                                                 }
1427                                                 else if (!strcmp(eventname, "eventProgressiveChanged") || !strcmp(eventname, "eventProgressiveAvail"))
1428                                                 {
1429                                                         gst_structure_get_int (msgstruct, "progressive", &m_progressive);
1430                                                         if (strstr(eventname, "Changed"))
1431                                                                 m_event((iPlayableService*)this, evVideoProgressiveChanged);
1432                                                 }
1433                                         }
1434                                 }
1435                         }
1436                         break;
1437                 }
1438                 case GST_MESSAGE_BUFFERING:
1439                 {
1440                         GstBufferingMode mode;
1441                         gst_message_parse_buffering(msg, &(m_bufferInfo.bufferPercent));
1442                         gst_message_parse_buffering_stats(msg, &mode, &(m_bufferInfo.avgInRate), &(m_bufferInfo.avgOutRate), &(m_bufferInfo.bufferingLeft));
1443                         m_event((iPlayableService*)this, evBuffering);
1444                         break;
1445                 }
1446                 case GST_MESSAGE_STREAM_STATUS:
1447                 {
1448                         GstStreamStatusType type;
1449                         GstElement *owner;
1450                         gst_message_parse_stream_status (msg, &type, &owner);
1451                         if ( type == GST_STREAM_STATUS_TYPE_CREATE && m_sourceinfo.is_streaming )
1452                         {
1453                                 if ( GST_IS_PAD(source) )
1454                                         owner = gst_pad_get_parent_element(GST_PAD(source));
1455                                 else if ( GST_IS_ELEMENT(source) )
1456                                         owner = GST_ELEMENT(source);
1457                                 else
1458                                         owner = 0;
1459                                 if ( owner )
1460                                 {
1461                                         GstElementFactory *factory = gst_element_get_factory(GST_ELEMENT(owner));
1462                                         const gchar *name = gst_plugin_feature_get_name(GST_PLUGIN_FEATURE(factory));
1463                                         if (!strcmp(name, "souphttpsrc"))
1464                                         {
1465                                                 m_streamingsrc_timeout->start(HTTP_TIMEOUT*1000, true);
1466                                                 g_object_set (G_OBJECT (owner), "timeout", HTTP_TIMEOUT, NULL);
1467                                                 eDebug("eServiceMP3::GST_STREAM_STATUS_TYPE_CREATE -> setting timeout on %s to %is", name, HTTP_TIMEOUT);
1468                                         }
1469                                         
1470                                 }
1471                                 if ( GST_IS_PAD(source) )
1472                                         gst_object_unref(owner);
1473                         }
1474                         break;
1475                 }
1476                 default:
1477                         break;
1478         }
1479         g_free (sourceName);
1480 }
1481
1482 GstBusSyncReply eServiceMP3::gstBusSyncHandler(GstBus *bus, GstMessage *message, gpointer user_data)
1483 {
1484         eServiceMP3 *_this = (eServiceMP3*)user_data;
1485         _this->m_pump.send(Message(1));
1486                 /* wake */
1487         return GST_BUS_PASS;
1488 }
1489
1490 void eServiceMP3::gstHTTPSourceSetAgent(GObject *object, GParamSpec *unused, gpointer user_data)
1491 {
1492         eServiceMP3 *_this = (eServiceMP3*)user_data;
1493         GstElement *source;
1494         g_object_get(_this->m_gst_playbin, "source", &source, NULL);
1495         g_object_set (G_OBJECT (source), "user-agent", _this->m_useragent.c_str(), NULL);
1496         gst_object_unref(source);
1497 }
1498
1499 audiotype_t eServiceMP3::gstCheckAudioPad(GstStructure* structure)
1500 {
1501         if (!structure)
1502                 return atUnknown;
1503
1504         if ( gst_structure_has_name (structure, "audio/mpeg"))
1505         {
1506                 gint mpegversion, layer = -1;
1507                 if (!gst_structure_get_int (structure, "mpegversion", &mpegversion))
1508                         return atUnknown;
1509
1510                 switch (mpegversion) {
1511                         case 1:
1512                                 {
1513                                         gst_structure_get_int (structure, "layer", &layer);
1514                                         if ( layer == 3 )
1515                                                 return atMP3;
1516                                         else
1517                                                 return atMPEG;
1518                                         break;
1519                                 }
1520                         case 2:
1521                                 return atAAC;
1522                         case 4:
1523                                 return atAAC;
1524                         default:
1525                                 return atUnknown;
1526                 }
1527         }
1528
1529         else if ( gst_structure_has_name (structure, "audio/x-ac3") || gst_structure_has_name (structure, "audio/ac3") )
1530                 return atAC3;
1531         else if ( gst_structure_has_name (structure, "audio/x-dts") || gst_structure_has_name (structure, "audio/dts") )
1532                 return atDTS;
1533         else if ( gst_structure_has_name (structure, "audio/x-raw-int") )
1534                 return atPCM;
1535
1536         return atUnknown;
1537 }
1538
1539 void eServiceMP3::gstPoll(const Message &msg)
1540 {
1541         if (msg.type == 1)
1542         {
1543                 GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin));
1544                 GstMessage *message;
1545                 while ((message = gst_bus_pop(bus)))
1546                 {
1547                         gstBusCall(bus, message);
1548                         gst_message_unref (message);
1549                 }
1550         }
1551         else if (msg.type == 2)
1552                 pullSubtitle();
1553         else if (msg.type == 3)
1554                 gstTextpadHasCAPS_synced(msg.d.pad);
1555         else
1556                 eDebug("gstPoll unhandled Message %d\n", msg.type);
1557 }
1558
1559 eAutoInitPtr<eServiceFactoryMP3> init_eServiceFactoryMP3(eAutoInitNumbers::service+1, "eServiceFactoryMP3");
1560
1561 void eServiceMP3::gstCBsubtitleAvail(GstElement *appsink, gpointer user_data)
1562 {
1563         eServiceMP3 *_this = (eServiceMP3*)user_data;   
1564         eSingleLocker l(_this->m_subs_to_pull_lock);
1565         ++_this->m_subs_to_pull;
1566         _this->m_pump.send(Message(2));
1567 }
1568
1569 void eServiceMP3::gstTextpadHasCAPS(GstPad *pad, GParamSpec * unused, gpointer user_data)
1570 {
1571         eServiceMP3 *_this = (eServiceMP3*)user_data;
1572
1573         gst_object_ref (pad);
1574
1575         _this->m_pump.send(Message(3, pad));
1576 }
1577
1578 // after messagepump
1579 void eServiceMP3::gstTextpadHasCAPS_synced(GstPad *pad)
1580 {
1581         GstCaps *caps;
1582
1583         g_object_get (G_OBJECT (pad), "caps", &caps, NULL);
1584
1585         eDebug("gstTextpadHasCAPS:: signal::caps = %s", gst_caps_to_string(caps));
1586
1587         if (caps)
1588         {
1589                 subtitleStream subs;
1590
1591 //              eDebug("gstGhostpadHasCAPS_synced %p %d", pad, m_subtitleStreams.size());
1592
1593                 if (!m_subtitleStreams.empty())
1594                         subs = m_subtitleStreams[m_currentSubtitleStream];
1595                 else {
1596                         subs.type = stUnknown;
1597                         subs.pad = pad;
1598                 }
1599
1600                 if ( subs.type == stUnknown )
1601                 {
1602                         GstTagList *tags;
1603 //                      eDebug("gstGhostpadHasCAPS::m_subtitleStreams[%i].type == stUnknown...", m_currentSubtitleStream);
1604
1605                         gchar *g_lang;
1606                         g_signal_emit_by_name (m_gst_playbin, "get-text-tags", m_currentSubtitleStream, &tags);
1607
1608                         g_lang = g_strdup_printf ("und");
1609                         if ( tags && gst_is_tag_list(tags) )
1610                                 gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1611
1612                         subs.language_code = std::string(g_lang);
1613                         subs.type = getSubtitleType(pad);
1614
1615                         if (!m_subtitleStreams.empty())
1616                                 m_subtitleStreams[m_currentSubtitleStream] = subs;
1617                         else
1618                                 m_subtitleStreams.push_back(subs);
1619
1620                         g_free (g_lang);
1621                 }
1622
1623 //              eDebug("gstGhostpadHasCAPS:: m_gst_prev_subtitle_caps=%s equal=%i",gst_caps_to_string(m_gst_prev_subtitle_caps),gst_caps_is_equal(m_gst_prev_subtitle_caps, caps));
1624
1625                 gst_caps_unref (caps);
1626         }
1627
1628         gst_object_unref (pad);
1629 }
1630
1631 void eServiceMP3::pullSubtitle()
1632 {
1633         GstElement *sink;
1634         g_object_get (G_OBJECT (m_gst_playbin), "text-sink", &sink, NULL);
1635         
1636         if (sink)
1637         {
1638                 while (m_subs_to_pull && m_subtitle_pages.size() < 2)
1639                 {
1640                         GstBuffer *buffer;
1641                         {
1642                                 eSingleLocker l(m_subs_to_pull_lock);
1643                                 --m_subs_to_pull;
1644                                 g_signal_emit_by_name (sink, "pull-buffer", &buffer);
1645                         }
1646                         if (buffer)
1647                         {
1648                                 gint64 buf_pos = GST_BUFFER_TIMESTAMP(buffer);
1649                                 gint64 duration_ns = GST_BUFFER_DURATION(buffer);
1650                                 size_t len = GST_BUFFER_SIZE(buffer);
1651                                 eDebug("pullSubtitle m_subtitleStreams[m_currentSubtitleStream].type=%i",m_subtitleStreams[m_currentSubtitleStream].type);
1652                                 
1653                                 if ( m_subtitleStreams[m_currentSubtitleStream].type )
1654                                 {
1655                                         if ( m_subtitleStreams[m_currentSubtitleStream].type < stVOB )
1656                                         {
1657                                                 unsigned char line[len+1];
1658                                                 SubtitlePage page;
1659                                                 memcpy(line, GST_BUFFER_DATA(buffer), len);
1660                                                 line[len] = 0;
1661                                                 eDebug("got new text subtitle @ buf_pos = %lld ns (in pts=%lld): '%s' ", buf_pos, buf_pos/11111, line);
1662                                                 gRGB rgbcol(0xD0,0xD0,0xD0);
1663                                                 page.type = SubtitlePage::Pango;
1664                                                 page.pango_page.m_elements.push_back(ePangoSubtitlePageElement(rgbcol, (const char*)line));
1665                                                 page.pango_page.m_show_pts = buf_pos / 11111L;
1666                                                 page.pango_page.m_timeout = duration_ns / 1000000;
1667                                                 m_subtitle_pages.push_back(page);
1668                                                 if (m_subtitle_pages.size()==1)
1669                                                         pushSubtitles();
1670                                         }
1671                                         else
1672                                         {
1673                                                 eDebug("unsupported subpicture... ignoring");
1674                                         }
1675                                 }
1676                                 gst_buffer_unref(buffer);
1677                         }
1678                 }
1679                 gst_object_unref(sink);
1680         }
1681         else
1682                 eDebug("no subtitle sink!");
1683 }
1684
1685 void eServiceMP3::pushSubtitles()
1686 {
1687         while ( !m_subtitle_pages.empty() )
1688         {
1689                 SubtitlePage &frontpage = m_subtitle_pages.front();
1690                 pts_t running_pts;
1691                 gint64 diff_ms = 0;
1692                 gint64 show_pts = 0;
1693
1694                 getPlayPosition(running_pts);
1695
1696                 if (m_decoder_time_valid_state < 4) {
1697                         ++m_decoder_time_valid_state;
1698                         if (m_prev_decoder_time == running_pts)
1699                                 m_decoder_time_valid_state = 0;
1700                         if (m_decoder_time_valid_state < 4) {
1701 //                              if (m_decoder_time_valid_state)
1702 //                                      eDebug("%d: decoder time not valid! prev %lld, now %lld\n", m_decoder_time_valid_state, m_prev_decoder_time/90, running_pts/90);
1703 //                              else
1704 //                                      eDebug("%d: decoder time not valid! now %lld\n", m_decoder_time_valid_state, running_pts/90);
1705                                 m_subtitle_sync_timer->start(25, true);
1706                                 m_prev_decoder_time = running_pts;
1707                                 break;
1708                         }
1709                 }
1710
1711                 if (frontpage.type == SubtitlePage::Pango)
1712                         show_pts = frontpage.pango_page.m_show_pts;
1713
1714                 diff_ms = ( show_pts - running_pts ) / 90;
1715                 eDebug("check subtitle: decoder: %lld, show_pts: %lld, diff: %lld ms", running_pts/90, show_pts/90, diff_ms);
1716
1717                 if ( diff_ms < -100 )
1718                 {
1719                         eDebug("subtitle too late... drop");
1720                         m_subtitle_pages.pop_front();
1721                 }
1722                 else if ( diff_ms > 20 )
1723                 {
1724                         eDebug("start timer");
1725                         m_subtitle_sync_timer->start(diff_ms, true);
1726                         break;
1727                 }
1728                 else // immediate show
1729                 {
1730                         if ( m_subtitle_widget )
1731                         {
1732                                 eDebug("show!\n");
1733                                 if ( frontpage.type == SubtitlePage::Pango)
1734                                         m_subtitle_widget->setPage(frontpage.pango_page);
1735                                 m_subtitle_widget->show();
1736                         }
1737                         m_subtitle_pages.pop_front();
1738                 }
1739         }
1740         if (m_subtitle_pages.empty())
1741                 pullSubtitle();
1742 }
1743
1744
1745 RESULT eServiceMP3::enableSubtitles(eWidget *parent, ePyObject tuple)
1746 {
1747         eDebug ("eServiceMP3::enableSubtitles m_currentSubtitleStream=%i this=%p",m_currentSubtitleStream, this);
1748         ePyObject entry;
1749         int tuplesize = PyTuple_Size(tuple);
1750         int pid, type;
1751         gint text_pid = 0;
1752         eSingleLocker l(m_subs_to_pull_lock);
1753
1754 //      GstPad *pad = 0;
1755 //      g_signal_emit_by_name (m_gst_playbin, "get-text-pad", m_currentSubtitleStream, &pad);
1756 //      gst_element_get_static_pad(m_gst_subtitlebin, "sink");
1757 //      gulong subprobe_handler_id = gst_pad_add_buffer_probe (pad, G_CALLBACK (gstCBsubtitleDrop), NULL);
1758
1759         if (!PyTuple_Check(tuple))
1760                 goto error_out;
1761         if (tuplesize < 1)
1762                 goto error_out;
1763         entry = PyTuple_GET_ITEM(tuple, 1);
1764         if (!PyInt_Check(entry))
1765                 goto error_out;
1766         pid = PyInt_AsLong(entry);
1767         entry = PyTuple_GET_ITEM(tuple, 2);
1768         if (!PyInt_Check(entry))
1769                 goto error_out;
1770         type = PyInt_AsLong(entry);
1771
1772         if (m_currentSubtitleStream != pid)
1773         {
1774                 g_object_set (G_OBJECT (m_gst_playbin), "current-text", pid, NULL);
1775                 eDebug ("eServiceMP3::enableSubtitles g_object_set current-text = %i", pid);
1776                 m_currentSubtitleStream = pid;
1777                 m_subs_to_pull = 0;
1778                 m_prev_decoder_time = -1;
1779                 m_subtitle_pages.clear();
1780         }
1781
1782         m_subtitle_widget = 0;
1783         m_subtitle_widget = new eSubtitleWidget(parent);
1784         m_subtitle_widget->resize(parent->size()); /* full size */
1785
1786         g_object_get (G_OBJECT (m_gst_playbin), "current-text", &text_pid, NULL);
1787
1788         eDebug ("eServiceMP3::switched to subtitle stream %i", text_pid);
1789 //      gst_pad_remove_buffer_probe (pad, subprobe_handler_id);
1790
1791         m_event((iPlayableService*)this, evUpdatedInfo);
1792
1793         return 0;
1794
1795 error_out:
1796         eDebug("eServiceMP3::enableSubtitles needs a tuple as 2nd argument!\n"
1797                 "for gst subtitles (2, subtitle_stream_count, subtitle_type)");
1798         return -1;
1799 }
1800
1801 RESULT eServiceMP3::disableSubtitles(eWidget *parent)
1802 {
1803         eDebug("eServiceMP3::disableSubtitles");
1804         m_subtitle_pages.clear();
1805         delete m_subtitle_widget;
1806         m_subtitle_widget = 0;
1807         return 0;
1808 }
1809
1810 PyObject *eServiceMP3::getCachedSubtitle()
1811 {
1812 //      eDebug("eServiceMP3::getCachedSubtitle");
1813         Py_RETURN_NONE;
1814 }
1815
1816 PyObject *eServiceMP3::getSubtitleList()
1817 {
1818 //      eDebug("eServiceMP3::getSubtitleList");
1819         ePyObject l = PyList_New(0);
1820         int stream_idx = 0;
1821         
1822         for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
1823         {
1824                 subtype_t type = IterSubtitleStream->type;
1825                 switch(type)
1826                 {
1827                 case stUnknown:
1828                 case stVOB:
1829                 case stPGS:
1830                         break;
1831                 default:
1832                 {
1833                         ePyObject tuple = PyTuple_New(5);
1834 //                      eDebug("eServiceMP3::getSubtitleList idx=%i type=%i, code=%s", stream_idx, int(type), (IterSubtitleStream->language_code).c_str());
1835                         PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(2));
1836                         PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(stream_idx));
1837                         PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(int(type)));
1838                         PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(0));
1839                         PyTuple_SET_ITEM(tuple, 4, PyString_FromString((IterSubtitleStream->language_code).c_str()));
1840                         PyList_Append(l, tuple);
1841                         Py_DECREF(tuple);
1842                 }
1843                 }
1844                 stream_idx++;
1845         }
1846         eDebug("eServiceMP3::getSubtitleList finished");
1847         return l;
1848 }
1849
1850 RESULT eServiceMP3::streamed(ePtr<iStreamedService> &ptr)
1851 {
1852         ptr = this;
1853         return 0;
1854 }
1855
1856 PyObject *eServiceMP3::getBufferCharge()
1857 {
1858         ePyObject tuple = PyTuple_New(5);
1859         PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(m_bufferInfo.bufferPercent));
1860         PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(m_bufferInfo.avgInRate));
1861         PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(m_bufferInfo.avgOutRate));
1862         PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(m_bufferInfo.bufferingLeft));
1863         PyTuple_SET_ITEM(tuple, 4, PyInt_FromLong(m_buffer_size));
1864         return tuple;
1865 }
1866
1867 int eServiceMP3::setBufferSize(int size)
1868 {
1869         m_buffer_size = size;
1870         g_object_set (G_OBJECT (m_gst_playbin), "buffer-size", m_buffer_size, NULL);
1871         return 0;
1872 }
1873
1874 int eServiceMP3::getAC3Delay()
1875 {
1876         return ac3_delay;
1877 }
1878
1879 int eServiceMP3::getPCMDelay()
1880 {
1881         return pcm_delay;
1882 }
1883
1884 void eServiceMP3::setAC3Delay(int delay)
1885 {
1886         ac3_delay = delay;
1887         if (!m_gst_playbin || m_state != stRunning)
1888                 return;
1889         else
1890         {
1891                 GstElement *sink;
1892                 int config_delay_int = delay;
1893                 g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
1894
1895                 if (sink)
1896                 {
1897                         std::string config_delay;
1898                         if(ePythonConfigQuery::getConfigValue("config.av.generalAC3delay", config_delay) == 0)
1899                                 config_delay_int += atoi(config_delay.c_str());
1900                         gst_object_unref(sink);
1901                 }
1902                 else
1903                 {
1904                         eDebug("dont apply ac3 delay when no video is running!");
1905                         config_delay_int = 0;
1906                 }
1907
1908                 g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
1909
1910                 if (sink)
1911                 {
1912                         gchar *name = gst_element_get_name(sink);
1913                         if (strstr(name, "dvbaudiosink"))
1914                                 eTSMPEGDecoder::setHwAC3Delay(config_delay_int);
1915                         g_free(name);
1916                         gst_object_unref(sink);
1917                 }
1918         }
1919 }
1920
1921 void eServiceMP3::setPCMDelay(int delay)
1922 {
1923         pcm_delay = delay;
1924         if (!m_gst_playbin || m_state != stRunning)
1925                 return;
1926         else
1927         {
1928                 GstElement *sink;
1929                 int config_delay_int = delay;
1930                 g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
1931
1932                 if (sink)
1933                 {
1934                         std::string config_delay;
1935                         if(ePythonConfigQuery::getConfigValue("config.av.generalPCMdelay", config_delay) == 0)
1936                                 config_delay_int += atoi(config_delay.c_str());
1937                         gst_object_unref(sink);
1938                 }
1939                 else
1940                 {
1941                         eDebug("dont apply pcm delay when no video is running!");
1942                         config_delay_int = 0;
1943                 }
1944
1945                 g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
1946
1947                 if (sink)
1948                 {
1949                         gchar *name = gst_element_get_name(sink);
1950                         if (strstr(name, "dvbaudiosink"))
1951                                 eTSMPEGDecoder::setHwPCMDelay(config_delay_int);
1952                         else
1953                         {
1954                                 // this is realy untested..and not used yet
1955                                 gint64 offset = config_delay_int;
1956                                 offset *= 1000000; // milli to nano
1957                                 g_object_set (G_OBJECT (m_gst_playbin), "ts-offset", offset, NULL);
1958                         }
1959                         g_free(name);
1960                         gst_object_unref(sink);
1961                 }
1962         }
1963 }
1964