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