Fix about IP streaming.
[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
700         g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
701
702         // disable fast winding yet when a dvbvideosink or dvbaudiosink is used
703         // for this we must do some changes on different places.. (gstreamer.. our sinks.. enigma2)
704         if (sink) {
705                 ret &= ~2; // only seeking possible
706                 gst_object_unref(sink);
707         }
708         else {
709                 g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
710                 if (sink) {
711                         ret &= ~2; // only seeking possible
712                         gst_object_unref(sink);
713                 }
714         }
715
716         return ret;
717 }
718
719 RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
720 {
721         i = this;
722         return 0;
723 }
724
725 RESULT eServiceMP3::getName(std::string &name)
726 {
727         std::string title = m_ref.getName();
728         if (title.empty())
729         {
730                 name = m_ref.path;
731                 size_t n = name.rfind('/');
732                 if (n != std::string::npos)
733                         name = name.substr(n + 1);
734         }
735         else
736                 name = title;
737         return 0;
738 }
739
740 int eServiceMP3::getInfo(int w)
741 {
742         const gchar *tag = 0;
743
744         switch (w)
745         {
746         case sServiceref: return m_ref;
747         case sVideoHeight: return m_height;
748         case sVideoWidth: return m_width;
749         case sFrameRate: return m_framerate;
750         case sProgressive: return m_progressive;
751         case sAspect: return m_aspect;
752         case sTagTitle:
753         case sTagArtist:
754         case sTagAlbum:
755         case sTagTitleSortname:
756         case sTagArtistSortname:
757         case sTagAlbumSortname:
758         case sTagDate:
759         case sTagComposer:
760         case sTagGenre:
761         case sTagComment:
762         case sTagExtendedComment:
763         case sTagLocation:
764         case sTagHomepage:
765         case sTagDescription:
766         case sTagVersion:
767         case sTagISRC:
768         case sTagOrganization:
769         case sTagCopyright:
770         case sTagCopyrightURI:
771         case sTagContact:
772         case sTagLicense:
773         case sTagLicenseURI:
774         case sTagCodec:
775         case sTagAudioCodec:
776         case sTagVideoCodec:
777         case sTagEncoder:
778         case sTagLanguageCode:
779         case sTagKeywords:
780         case sTagChannelMode:
781         case sUser+12:
782                 return resIsString;
783         case sTagTrackGain:
784         case sTagTrackPeak:
785         case sTagAlbumGain:
786         case sTagAlbumPeak:
787         case sTagReferenceLevel:
788         case sTagBeatsPerMinute:
789         case sTagImage:
790         case sTagPreviewImage:
791         case sTagAttachment:
792                 return resIsPyObject;
793         case sTagTrackNumber:
794                 tag = GST_TAG_TRACK_NUMBER;
795                 break;
796         case sTagTrackCount:
797                 tag = GST_TAG_TRACK_COUNT;
798                 break;
799         case sTagAlbumVolumeNumber:
800                 tag = GST_TAG_ALBUM_VOLUME_NUMBER;
801                 break;
802         case sTagAlbumVolumeCount:
803                 tag = GST_TAG_ALBUM_VOLUME_COUNT;
804                 break;
805         case sTagBitrate:
806                 tag = GST_TAG_BITRATE;
807                 break;
808         case sTagNominalBitrate:
809                 tag = GST_TAG_NOMINAL_BITRATE;
810                 break;
811         case sTagMinimumBitrate:
812                 tag = GST_TAG_MINIMUM_BITRATE;
813                 break;
814         case sTagMaximumBitrate:
815                 tag = GST_TAG_MAXIMUM_BITRATE;
816                 break;
817         case sTagSerial:
818                 tag = GST_TAG_SERIAL;
819                 break;
820         case sTagEncoderVersion:
821                 tag = GST_TAG_ENCODER_VERSION;
822                 break;
823         case sTagCRC:
824                 tag = "has-crc";
825                 break;
826         default:
827                 return resNA;
828         }
829
830         if (!m_stream_tags || !tag)
831                 return 0;
832         
833         guint value;
834         if (gst_tag_list_get_uint(m_stream_tags, tag, &value))
835                 return (int) value;
836
837         return 0;
838 }
839
840 std::string eServiceMP3::getInfoString(int w)
841 {
842         if ( !m_stream_tags && w < sUser && w > 26 )
843                 return "";
844         const gchar *tag = 0;
845         switch (w)
846         {
847         case sTagTitle:
848                 tag = GST_TAG_TITLE;
849                 break;
850         case sTagArtist:
851                 tag = GST_TAG_ARTIST;
852                 break;
853         case sTagAlbum:
854                 tag = GST_TAG_ALBUM;
855                 break;
856         case sTagTitleSortname:
857                 tag = GST_TAG_TITLE_SORTNAME;
858                 break;
859         case sTagArtistSortname:
860                 tag = GST_TAG_ARTIST_SORTNAME;
861                 break;
862         case sTagAlbumSortname:
863                 tag = GST_TAG_ALBUM_SORTNAME;
864                 break;
865         case sTagDate:
866                 GDate *date;
867                 if (gst_tag_list_get_date(m_stream_tags, GST_TAG_DATE, &date))
868                 {
869                         gchar res[5];
870                         g_date_strftime (res, sizeof(res), "%Y-%M-%D", date); 
871                         return (std::string)res;
872                 }
873                 break;
874         case sTagComposer:
875                 tag = GST_TAG_COMPOSER;
876                 break;
877         case sTagGenre:
878                 tag = GST_TAG_GENRE;
879                 break;
880         case sTagComment:
881                 tag = GST_TAG_COMMENT;
882                 break;
883         case sTagExtendedComment:
884                 tag = GST_TAG_EXTENDED_COMMENT;
885                 break;
886         case sTagLocation:
887                 tag = GST_TAG_LOCATION;
888                 break;
889         case sTagHomepage:
890                 tag = GST_TAG_HOMEPAGE;
891                 break;
892         case sTagDescription:
893                 tag = GST_TAG_DESCRIPTION;
894                 break;
895         case sTagVersion:
896                 tag = GST_TAG_VERSION;
897                 break;
898         case sTagISRC:
899                 tag = GST_TAG_ISRC;
900                 break;
901         case sTagOrganization:
902                 tag = GST_TAG_ORGANIZATION;
903                 break;
904         case sTagCopyright:
905                 tag = GST_TAG_COPYRIGHT;
906                 break;
907         case sTagCopyrightURI:
908                 tag = GST_TAG_COPYRIGHT_URI;
909                 break;
910         case sTagContact:
911                 tag = GST_TAG_CONTACT;
912                 break;
913         case sTagLicense:
914                 tag = GST_TAG_LICENSE;
915                 break;
916         case sTagLicenseURI:
917                 tag = GST_TAG_LICENSE_URI;
918                 break;
919         case sTagCodec:
920                 tag = GST_TAG_CODEC;
921                 break;
922         case sTagAudioCodec:
923                 tag = GST_TAG_AUDIO_CODEC;
924                 break;
925         case sTagVideoCodec:
926                 tag = GST_TAG_VIDEO_CODEC;
927                 break;
928         case sTagEncoder:
929                 tag = GST_TAG_ENCODER;
930                 break;
931         case sTagLanguageCode:
932                 tag = GST_TAG_LANGUAGE_CODE;
933                 break;
934         case sTagKeywords:
935                 tag = GST_TAG_KEYWORDS;
936                 break;
937         case sTagChannelMode:
938                 tag = "channel-mode";
939                 break;
940         case sUser+12:
941                 return m_errorInfo.error_message;
942         default:
943                 return "";
944         }
945         if ( !tag )
946                 return "";
947         gchar *value;
948         if (gst_tag_list_get_string(m_stream_tags, tag, &value))
949         {
950                 std::string res = value;
951                 g_free(value);
952                 return res;
953         }
954         return "";
955 }
956
957 PyObject *eServiceMP3::getInfoObject(int w)
958 {
959         const gchar *tag = 0;
960         bool isBuffer = false;
961         switch (w)
962         {
963                 case sTagTrackGain:
964                         tag = GST_TAG_TRACK_GAIN;
965                         break;
966                 case sTagTrackPeak:
967                         tag = GST_TAG_TRACK_PEAK;
968                         break;
969                 case sTagAlbumGain:
970                         tag = GST_TAG_ALBUM_GAIN;
971                         break;
972                 case sTagAlbumPeak:
973                         tag = GST_TAG_ALBUM_PEAK;
974                         break;
975                 case sTagReferenceLevel:
976                         tag = GST_TAG_REFERENCE_LEVEL;
977                         break;
978                 case sTagBeatsPerMinute:
979                         tag = GST_TAG_BEATS_PER_MINUTE;
980                         break;
981                 case sTagImage:
982                         tag = GST_TAG_IMAGE;
983                         isBuffer = true;
984                         break;
985                 case sTagPreviewImage:
986                         tag = GST_TAG_PREVIEW_IMAGE;
987                         isBuffer = true;
988                         break;
989                 case sTagAttachment:
990                         tag = GST_TAG_ATTACHMENT;
991                         isBuffer = true;
992                         break;
993                 default:
994                         break;
995         }
996
997         if ( isBuffer )
998         {
999                 const GValue *gv_buffer = gst_tag_list_get_value_index(m_stream_tags, tag, 0);
1000                 if ( gv_buffer )
1001                 {
1002                         GstBuffer *buffer;
1003                         buffer = gst_value_get_buffer (gv_buffer);
1004                         return PyBuffer_FromMemory(GST_BUFFER_DATA(buffer), GST_BUFFER_SIZE(buffer));
1005                 }
1006         }
1007         else
1008         {
1009                 gdouble value = 0.0;
1010                 gst_tag_list_get_double(m_stream_tags, tag, &value);
1011                 return PyFloat_FromDouble(value);
1012         }
1013
1014         return 0;
1015 }
1016
1017 RESULT eServiceMP3::audioChannel(ePtr<iAudioChannelSelection> &ptr)
1018 {
1019         ptr = this;
1020         return 0;
1021 }
1022
1023 RESULT eServiceMP3::audioTracks(ePtr<iAudioTrackSelection> &ptr)
1024 {
1025         ptr = this;
1026         return 0;
1027 }
1028
1029 RESULT eServiceMP3::subtitle(ePtr<iSubtitleOutput> &ptr)
1030 {
1031         ptr = this;
1032         return 0;
1033 }
1034
1035 RESULT eServiceMP3::audioDelay(ePtr<iAudioDelay> &ptr)
1036 {
1037         ptr = this;
1038         return 0;
1039 }
1040
1041 int eServiceMP3::getNumberOfTracks()
1042 {
1043         return m_audioStreams.size();
1044 }
1045
1046 int eServiceMP3::getCurrentTrack()
1047 {
1048         if (m_currentAudioStream == -1)
1049                 g_object_get (G_OBJECT (m_gst_playbin), "current-audio", &m_currentAudioStream, NULL);
1050         return m_currentAudioStream;
1051 }
1052
1053 RESULT eServiceMP3::selectTrack(unsigned int i)
1054 {
1055         pts_t ppos;
1056         getPlayPosition(ppos);
1057         ppos -= 90000;
1058         if (ppos < 0)
1059                 ppos = 0;
1060
1061         int ret = selectAudioStream(i);
1062         if (!ret) {
1063                 /* flush */
1064                 seekTo(ppos);
1065         }
1066
1067         return ret;
1068 }
1069
1070 int eServiceMP3::selectAudioStream(int i)
1071 {
1072         int current_audio;
1073         g_object_set (G_OBJECT (m_gst_playbin), "current-audio", i, NULL);
1074         g_object_get (G_OBJECT (m_gst_playbin), "current-audio", &current_audio, NULL);
1075         if ( current_audio == i )
1076         {
1077                 eDebug ("eServiceMP3::switched to audio stream %i", current_audio);
1078                 m_currentAudioStream = i;
1079                 return 0;
1080         }
1081         return -1;
1082 }
1083
1084 int eServiceMP3::getCurrentChannel()
1085 {
1086         return STEREO;
1087 }
1088
1089 RESULT eServiceMP3::selectChannel(int i)
1090 {
1091         eDebug("eServiceMP3::selectChannel(%i)",i);
1092         return 0;
1093 }
1094
1095 RESULT eServiceMP3::getTrackInfo(struct iAudioTrackInfo &info, unsigned int i)
1096 {
1097         if (i >= m_audioStreams.size())
1098                 return -2;
1099                 info.m_description = m_audioStreams[i].codec;
1100 /*      if (m_audioStreams[i].type == atMPEG)
1101                 info.m_description = "MPEG";
1102         else if (m_audioStreams[i].type == atMP3)
1103                 info.m_description = "MP3";
1104         else if (m_audioStreams[i].type == atAC3)
1105                 info.m_description = "AC3";
1106         else if (m_audioStreams[i].type == atAAC)
1107                 info.m_description = "AAC";
1108         else if (m_audioStreams[i].type == atDTS)
1109                 info.m_description = "DTS";
1110         else if (m_audioStreams[i].type == atPCM)
1111                 info.m_description = "PCM";
1112         else if (m_audioStreams[i].type == atOGG)
1113                 info.m_description = "OGG";
1114         else if (m_audioStreams[i].type == atFLAC)
1115                 info.m_description = "FLAC";
1116         else
1117                 info.m_description = "???";*/
1118         if (info.m_language.empty())
1119                 info.m_language = m_audioStreams[i].language_code;
1120         return 0;
1121 }
1122
1123 subtype_t getSubtitleType(GstPad* pad, gchar *g_codec=NULL)
1124 {
1125         subtype_t type = stUnknown;
1126         GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1127
1128         if ( caps )
1129         {
1130                 GstStructure* str = gst_caps_get_structure(caps, 0);
1131                 const gchar *g_type = gst_structure_get_name(str);
1132                 eDebug("getSubtitleType::subtitle probe caps type=%s", g_type);
1133
1134                 if ( !strcmp(g_type, "video/x-dvd-subpicture") )
1135                         type = stVOB;
1136                 else if ( !strcmp(g_type, "text/x-pango-markup") )
1137                         type = stSSA;
1138                 else if ( !strcmp(g_type, "text/plain") )
1139                         type = stPlainText;
1140                 else if ( !strcmp(g_type, "subpicture/x-pgs") )
1141                         type = stPGS;
1142                 else
1143                         eDebug("getSubtitleType::unsupported subtitle caps %s (%s)", g_type, g_codec);
1144         }
1145         else if ( g_codec )
1146         {
1147                 eDebug("getSubtitleType::subtitle probe codec tag=%s", g_codec);
1148                 if ( !strcmp(g_codec, "VOB") )
1149                         type = stVOB;
1150                 else if ( !strcmp(g_codec, "SubStation Alpha") || !strcmp(g_codec, "SSA") )
1151                         type = stSSA;
1152                 else if ( !strcmp(g_codec, "ASS") )
1153                         type = stASS;
1154                 else if ( !strcmp(g_codec, "UTF-8 plain text") )
1155                         type = stPlainText;
1156                 else
1157                         eDebug("getSubtitleType::unsupported subtitle codec %s", g_codec);
1158         }
1159         else
1160                 eDebug("getSubtitleType::unidentifiable subtitle stream!");
1161
1162         return type;
1163 }
1164
1165 void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
1166 {
1167         if (!msg)
1168                 return;
1169         gchar *sourceName;
1170         GstObject *source;
1171         source = GST_MESSAGE_SRC(msg);
1172         if (!GST_IS_OBJECT(source))
1173                 return;
1174         sourceName = gst_object_get_name(source);
1175 #if 0
1176         gchar *string;
1177         if (gst_message_get_structure(msg))
1178                 string = gst_structure_to_string(gst_message_get_structure(msg));
1179         else
1180                 string = g_strdup(GST_MESSAGE_TYPE_NAME(msg));
1181         eDebug("eTsRemoteSource::gst_message from %s: %s", sourceName, string);
1182         g_free(string);
1183 #endif
1184         switch (GST_MESSAGE_TYPE (msg))
1185         {
1186                 case GST_MESSAGE_EOS:
1187                         m_event((iPlayableService*)this, evEOF);
1188                         break;
1189                 case GST_MESSAGE_STATE_CHANGED:
1190                 {
1191                         if(GST_MESSAGE_SRC(msg) != GST_OBJECT(m_gst_playbin))
1192                         {
1193                                 //vuplus
1194                                 if(!strncmp(sourceName, "hls", 3))
1195                                 {
1196                                         //eDebug("HLS Protocol detected : source [%s]", sourceName);
1197                                         m_is_hls_stream = 1;
1198                                 }
1199                                 break;
1200                         }
1201
1202                         GstState old_state, new_state;
1203                         gst_message_parse_state_changed(msg, &old_state, &new_state, NULL);
1204                 
1205                         if(old_state == new_state)
1206                                 break;
1207         
1208                         eDebug("eServiceMP3::state transition %s -> %s", gst_element_state_get_name(old_state), gst_element_state_get_name(new_state));
1209         
1210                         GstStateChange transition = (GstStateChange)GST_STATE_TRANSITION(old_state, new_state);
1211         
1212                         switch(transition)
1213                         {
1214                                 case GST_STATE_CHANGE_NULL_TO_READY:
1215                                 {
1216                                 }       break;
1217                                 case GST_STATE_CHANGE_READY_TO_PAUSED:
1218                                 {
1219                                         GstElement *appsink = gst_bin_get_by_name(GST_BIN(m_gst_playbin), "subtitle_sink");
1220                                         if (appsink)
1221                                         {
1222                                                 g_object_set (G_OBJECT (appsink), "max-buffers", 2, NULL);
1223                                                 g_object_set (G_OBJECT (appsink), "sync", FALSE, NULL);
1224                                                 g_object_set (G_OBJECT (appsink), "emit-signals", TRUE, NULL);
1225                                                 eDebug("eServiceMP3::appsink properties set!");
1226                                                 gst_object_unref(appsink);
1227                                         }
1228                                         setAC3Delay(ac3_delay);
1229                                         setPCMDelay(pcm_delay);
1230                                 }       break;
1231                                 case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
1232                                 {
1233                                         if ( m_sourceinfo.is_streaming && m_streamingsrc_timeout )
1234                                                 m_streamingsrc_timeout->stop();
1235                                 }       break;
1236                                 case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
1237                                 {
1238                                 }       break;
1239                                 case GST_STATE_CHANGE_PAUSED_TO_READY:
1240                                 {
1241                                 }       break;
1242                                 case GST_STATE_CHANGE_READY_TO_NULL:
1243                                 {
1244                                 }       break;
1245                         }
1246                         break;
1247                 }
1248                 case GST_MESSAGE_ERROR:
1249                 {
1250                         gchar *debug;
1251                         GError *err;
1252                         gst_message_parse_error (msg, &err, &debug);
1253                         g_free (debug);
1254                         eWarning("Gstreamer error: %s (domain:%i, code:%i) from %s", err->message, err->domain, err->code, sourceName );
1255                         if ( err->domain == GST_STREAM_ERROR )
1256                         {
1257                                 if ( err->code == GST_STREAM_ERROR_CODEC_NOT_FOUND )
1258                                 {
1259                                         if ( g_strrstr(sourceName, "videosink") )
1260                                                 m_event((iPlayableService*)this, evUser+11);
1261                                         else if ( g_strrstr(sourceName, "audiosink") )
1262                                                 m_event((iPlayableService*)this, evUser+10);
1263                                 }
1264                         }
1265                         else //if( err->domain == 1232 )
1266                         {
1267                                 if ( err->code == 5 )
1268                                         m_event((iPlayableService*)this, evUser+20);
1269                         }
1270                         g_error_free(err);
1271                         break;
1272                 }
1273                 case GST_MESSAGE_INFO:
1274                 {
1275                         gchar *debug;
1276                         GError *inf;
1277         
1278                         gst_message_parse_info (msg, &inf, &debug);
1279                         g_free (debug);
1280                         if ( inf->domain == GST_STREAM_ERROR && inf->code == GST_STREAM_ERROR_DECODE )
1281                         {
1282                                 if ( g_strrstr(sourceName, "videosink") )
1283                                         m_event((iPlayableService*)this, evUser+14);
1284                         }
1285                         g_error_free(inf);
1286                         break;
1287                 }
1288                 case GST_MESSAGE_TAG:
1289                 {
1290                         GstTagList *tags, *result;
1291                         gst_message_parse_tag(msg, &tags);
1292         
1293                         result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_REPLACE);
1294                         if (result)
1295                         {
1296                                 if (m_stream_tags)
1297                                         gst_tag_list_free(m_stream_tags);
1298                                 m_stream_tags = result;
1299                         }
1300         
1301                         const GValue *gv_image = gst_tag_list_get_value_index(tags, GST_TAG_IMAGE, 0);
1302                         if ( gv_image )
1303                         {
1304                                 GstBuffer *buf_image;
1305                                 buf_image = gst_value_get_buffer (gv_image);
1306                                 int fd = open("/tmp/.id3coverart", O_CREAT|O_WRONLY|O_TRUNC, 0644);
1307                                 int ret = write(fd, GST_BUFFER_DATA(buf_image), GST_BUFFER_SIZE(buf_image));
1308                                 close(fd);
1309                                 eDebug("eServiceMP3::/tmp/.id3coverart %d bytes written ", ret);
1310                                 m_event((iPlayableService*)this, evUser+13);
1311                         }
1312                         gst_tag_list_free(tags);
1313                         m_event((iPlayableService*)this, evUpdatedInfo);
1314                         break;
1315                 }
1316                 case GST_MESSAGE_ASYNC_DONE:
1317                 {
1318                         if(GST_MESSAGE_SRC(msg) != GST_OBJECT(m_gst_playbin))
1319                                 break;
1320
1321                         GstTagList *tags;
1322                         gint i, active_idx, n_video = 0, n_audio = 0, n_text = 0;
1323
1324                         g_object_get (m_gst_playbin, "n-video", &n_video, NULL);
1325                         g_object_get (m_gst_playbin, "n-audio", &n_audio, NULL);
1326                         g_object_get (m_gst_playbin, "n-text", &n_text, NULL);
1327
1328                         eDebug("eServiceMP3::async-done - %d video, %d audio, %d subtitle", n_video, n_audio, n_text);
1329
1330                         if ( n_video + n_audio <= 0 )
1331                                 stop();
1332
1333                         active_idx = 0;
1334
1335                         m_audioStreams.clear();
1336                         m_subtitleStreams.clear();
1337
1338                         for (i = 0; i < n_audio; i++)
1339                         {
1340                                 audioStream audio;
1341                                 gchar *g_codec, *g_lang;
1342                                 GstPad* pad = 0;
1343                                 g_signal_emit_by_name (m_gst_playbin, "get-audio-pad", i, &pad);
1344                                 GstCaps* caps = gst_pad_get_negotiated_caps(pad);
1345                                 if (!caps)
1346                                         continue;
1347                                 GstStructure* str = gst_caps_get_structure(caps, 0);
1348                                 const gchar *g_type = gst_structure_get_name(str);
1349                                 audio.type = gstCheckAudioPad(str);
1350                                 g_codec = g_strdup(g_type);
1351                                 g_lang = g_strdup_printf ("und");
1352                                 g_signal_emit_by_name (m_gst_playbin, "get-audio-tags", i, &tags);
1353                                 if ( tags && gst_is_tag_list(tags) )
1354                                 {
1355                                         gst_tag_list_get_string(tags, GST_TAG_AUDIO_CODEC, &g_codec);
1356                                         gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1357                                         gst_tag_list_free(tags);
1358                                 }
1359                                 audio.language_code = std::string(g_lang);
1360                                 audio.codec = std::string(g_codec);
1361                                 eDebug("eServiceMP3::audio stream=%i codec=%s language=%s", i, g_codec, g_lang);
1362                                 m_audioStreams.push_back(audio);
1363                                 g_free (g_lang);
1364                                 g_free (g_codec);
1365                                 gst_caps_unref(caps);
1366                         }
1367
1368                         for (i = 0; i < n_text; i++)
1369                         {
1370                                 gchar *g_codec = NULL, *g_lang = NULL;
1371                                 g_signal_emit_by_name (m_gst_playbin, "get-text-tags", i, &tags);
1372                                 subtitleStream subs;
1373 //                              int ret;
1374
1375                                 g_lang = g_strdup_printf ("und");
1376                                 if ( tags && gst_is_tag_list(tags) )
1377                                 {
1378                                         gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1379                                         gst_tag_list_get_string(tags, GST_TAG_SUBTITLE_CODEC, &g_codec);
1380                                         gst_tag_list_free(tags);
1381                                 }
1382
1383                                 subs.language_code = std::string(g_lang);
1384                                 eDebug("eServiceMP3::subtitle stream=%i language=%s codec=%s", i, g_lang, g_codec);
1385                                 
1386                                 GstPad* pad = 0;
1387                                 g_signal_emit_by_name (m_gst_playbin, "get-text-pad", i, &pad);
1388                                 if ( pad )
1389                                         g_signal_connect (G_OBJECT (pad), "notify::caps", G_CALLBACK (gstTextpadHasCAPS), this);
1390                                 subs.type = getSubtitleType(pad, g_codec);
1391
1392                                 m_subtitleStreams.push_back(subs);
1393                                 g_free (g_lang);
1394                         }
1395                         m_event((iPlayableService*)this, evUpdatedEventInfo);
1396
1397                         if ( m_errorInfo.missing_codec != "" )
1398                         {
1399                                 if ( m_errorInfo.missing_codec.find("video/") == 0 || ( m_errorInfo.missing_codec.find("audio/") == 0 && getNumberOfTracks() == 0 ) )
1400                                         m_event((iPlayableService*)this, evUser+12);
1401                         }
1402                         break;
1403                 }
1404                 case GST_MESSAGE_ELEMENT:
1405                 {
1406                         if (const GstStructure *msgstruct = gst_message_get_structure(msg))
1407                         {
1408                                 if ( gst_is_missing_plugin_message(msg) )
1409                                 {
1410                                         GstCaps *caps;
1411                                         gst_structure_get (msgstruct, "detail", GST_TYPE_CAPS, &caps, NULL); 
1412                                         std::string codec = (const char*) gst_caps_to_string(caps);
1413                                         gchar *description = gst_missing_plugin_message_get_description(msg);
1414                                         if ( description )
1415                                         {
1416                                                 eDebug("eServiceMP3::m_errorInfo.missing_codec = %s", codec.c_str());
1417                                                 m_errorInfo.error_message = "GStreamer plugin " + (std::string)description + " not available!\n";
1418                                                 m_errorInfo.missing_codec = codec.substr(0,(codec.find_first_of(',')));
1419                                                 g_free(description);
1420                                         }
1421                                         gst_caps_unref(caps);
1422                                 }
1423                                 else
1424                                 {
1425                                         const gchar *eventname = gst_structure_get_name(msgstruct);
1426                                         if ( eventname )
1427                                         {
1428                                                 if (!strcmp(eventname, "eventSizeChanged") || !strcmp(eventname, "eventSizeAvail"))
1429                                                 {
1430                                                         gst_structure_get_int (msgstruct, "aspect_ratio", &m_aspect);
1431                                                         gst_structure_get_int (msgstruct, "width", &m_width);
1432                                                         gst_structure_get_int (msgstruct, "height", &m_height);
1433                                                         if (strstr(eventname, "Changed"))
1434                                                                 m_event((iPlayableService*)this, evVideoSizeChanged);
1435                                                 }
1436                                                 else if (!strcmp(eventname, "eventFrameRateChanged") || !strcmp(eventname, "eventFrameRateAvail"))
1437                                                 {
1438                                                         gst_structure_get_int (msgstruct, "frame_rate", &m_framerate);
1439                                                         if (strstr(eventname, "Changed"))
1440                                                                 m_event((iPlayableService*)this, evVideoFramerateChanged);
1441                                                 }
1442                                                 else if (!strcmp(eventname, "eventProgressiveChanged") || !strcmp(eventname, "eventProgressiveAvail"))
1443                                                 {
1444                                                         gst_structure_get_int (msgstruct, "progressive", &m_progressive);
1445                                                         if (strstr(eventname, "Changed"))
1446                                                                 m_event((iPlayableService*)this, evVideoProgressiveChanged);
1447                                                 }
1448                                         }
1449                                 }
1450                         }
1451                         break;
1452                 }
1453                 case GST_MESSAGE_BUFFERING:
1454                 {
1455                         GstBufferingMode mode;
1456                         gst_message_parse_buffering(msg, &(m_bufferInfo.bufferPercent));
1457                         gst_message_parse_buffering_stats(msg, &mode, &(m_bufferInfo.avgInRate), &(m_bufferInfo.avgOutRate), &(m_bufferInfo.bufferingLeft));
1458                         m_event((iPlayableService*)this, evBuffering);
1459                         break;
1460                 }
1461                 case GST_MESSAGE_STREAM_STATUS:
1462                 {
1463                         GstStreamStatusType type;
1464                         GstElement *owner;
1465                         gst_message_parse_stream_status (msg, &type, &owner);
1466                         if ( type == GST_STREAM_STATUS_TYPE_CREATE && m_sourceinfo.is_streaming )
1467                         {
1468                                 if ( GST_IS_PAD(source) )
1469                                         owner = gst_pad_get_parent_element(GST_PAD(source));
1470                                 else if ( GST_IS_ELEMENT(source) )
1471                                         owner = GST_ELEMENT(source);
1472                                 else
1473                                         owner = 0;
1474                                 if ( owner )
1475                                 {
1476                                         GstElementFactory *factory = gst_element_get_factory(GST_ELEMENT(owner));
1477                                         const gchar *name = gst_plugin_feature_get_name(GST_PLUGIN_FEATURE(factory));
1478                                         if (!strcmp(name, "souphttpsrc"))
1479                                         {
1480                                                 m_streamingsrc_timeout->start(HTTP_TIMEOUT*1000, true);
1481                                                 g_object_set (G_OBJECT (owner), "timeout", HTTP_TIMEOUT, NULL);
1482                                                 eDebug("eServiceMP3::GST_STREAM_STATUS_TYPE_CREATE -> setting timeout on %s to %is", name, HTTP_TIMEOUT);
1483                                         }
1484                                         //vuplus
1485                                         else if (m_is_hls_stream && !strncmp(name, "queue", 5))
1486                                         {
1487                                                 m_streamingsrc_timeout->stop();
1488                                                 m_is_hls_stream = 0;
1489                                                 //eDebug("Stoped response timeout!! : HLS");
1490                                         }
1491                                 }
1492                                 if ( GST_IS_PAD(source) )
1493                                         gst_object_unref(owner);
1494                         }
1495                         break;
1496                 }
1497                 default:
1498                         break;
1499         }
1500         g_free (sourceName);
1501 }
1502
1503 GstBusSyncReply eServiceMP3::gstBusSyncHandler(GstBus *bus, GstMessage *message, gpointer user_data)
1504 {
1505         eServiceMP3 *_this = (eServiceMP3*)user_data;
1506         _this->m_pump.send(Message(1));
1507                 /* wake */
1508         return GST_BUS_PASS;
1509 }
1510
1511 void eServiceMP3::gstHTTPSourceSetAgent(GObject *object, GParamSpec *unused, gpointer user_data)
1512 {
1513         eServiceMP3 *_this = (eServiceMP3*)user_data;
1514         GstElement *source;
1515         g_object_get(_this->m_gst_playbin, "source", &source, NULL);
1516         g_object_set (G_OBJECT (source), "user-agent", _this->m_useragent.c_str(), NULL);
1517         gst_object_unref(source);
1518 }
1519
1520 audiotype_t eServiceMP3::gstCheckAudioPad(GstStructure* structure)
1521 {
1522         if (!structure)
1523                 return atUnknown;
1524
1525         if ( gst_structure_has_name (structure, "audio/mpeg"))
1526         {
1527                 gint mpegversion, layer = -1;
1528                 if (!gst_structure_get_int (structure, "mpegversion", &mpegversion))
1529                         return atUnknown;
1530
1531                 switch (mpegversion) {
1532                         case 1:
1533                                 {
1534                                         gst_structure_get_int (structure, "layer", &layer);
1535                                         if ( layer == 3 )
1536                                                 return atMP3;
1537                                         else
1538                                                 return atMPEG;
1539                                         break;
1540                                 }
1541                         case 2:
1542                                 return atAAC;
1543                         case 4:
1544                                 return atAAC;
1545                         default:
1546                                 return atUnknown;
1547                 }
1548         }
1549
1550         else if ( gst_structure_has_name (structure, "audio/x-ac3") || gst_structure_has_name (structure, "audio/ac3") )
1551                 return atAC3;
1552         else if ( gst_structure_has_name (structure, "audio/x-dts") || gst_structure_has_name (structure, "audio/dts") )
1553                 return atDTS;
1554         else if ( gst_structure_has_name (structure, "audio/x-raw-int") )
1555                 return atPCM;
1556
1557         return atUnknown;
1558 }
1559
1560 void eServiceMP3::gstPoll(const Message &msg)
1561 {
1562         if (msg.type == 1)
1563         {
1564                 GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (m_gst_playbin));
1565                 GstMessage *message;
1566                 while ((message = gst_bus_pop(bus)))
1567                 {
1568                         gstBusCall(bus, message);
1569                         gst_message_unref (message);
1570                 }
1571         }
1572         else if (msg.type == 2)
1573                 pullSubtitle();
1574         else if (msg.type == 3)
1575                 gstTextpadHasCAPS_synced(msg.d.pad);
1576         else
1577                 eDebug("gstPoll unhandled Message %d\n", msg.type);
1578 }
1579
1580 eAutoInitPtr<eServiceFactoryMP3> init_eServiceFactoryMP3(eAutoInitNumbers::service+1, "eServiceFactoryMP3");
1581
1582 void eServiceMP3::gstCBsubtitleAvail(GstElement *appsink, gpointer user_data)
1583 {
1584         eServiceMP3 *_this = (eServiceMP3*)user_data;   
1585         eSingleLocker l(_this->m_subs_to_pull_lock);
1586         ++_this->m_subs_to_pull;
1587         _this->m_pump.send(Message(2));
1588 }
1589
1590 void eServiceMP3::gstTextpadHasCAPS(GstPad *pad, GParamSpec * unused, gpointer user_data)
1591 {
1592         eServiceMP3 *_this = (eServiceMP3*)user_data;
1593
1594         gst_object_ref (pad);
1595
1596         _this->m_pump.send(Message(3, pad));
1597 }
1598
1599 // after messagepump
1600 void eServiceMP3::gstTextpadHasCAPS_synced(GstPad *pad)
1601 {
1602         GstCaps *caps;
1603
1604         g_object_get (G_OBJECT (pad), "caps", &caps, NULL);
1605
1606         eDebug("gstTextpadHasCAPS:: signal::caps = %s", gst_caps_to_string(caps));
1607
1608         if (caps)
1609         {
1610                 subtitleStream subs;
1611
1612 //              eDebug("gstGhostpadHasCAPS_synced %p %d", pad, m_subtitleStreams.size());
1613
1614                 if (!m_subtitleStreams.empty())
1615                         subs = m_subtitleStreams[m_currentSubtitleStream];
1616                 else {
1617                         subs.type = stUnknown;
1618                         subs.pad = pad;
1619                 }
1620
1621                 if ( subs.type == stUnknown )
1622                 {
1623                         GstTagList *tags;
1624 //                      eDebug("gstGhostpadHasCAPS::m_subtitleStreams[%i].type == stUnknown...", m_currentSubtitleStream);
1625
1626                         gchar *g_lang;
1627                         g_signal_emit_by_name (m_gst_playbin, "get-text-tags", m_currentSubtitleStream, &tags);
1628
1629                         g_lang = g_strdup_printf ("und");
1630                         if ( tags && gst_is_tag_list(tags) )
1631                                 gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_lang);
1632
1633                         subs.language_code = std::string(g_lang);
1634                         subs.type = getSubtitleType(pad);
1635
1636                         if (!m_subtitleStreams.empty())
1637                                 m_subtitleStreams[m_currentSubtitleStream] = subs;
1638                         else
1639                                 m_subtitleStreams.push_back(subs);
1640
1641                         g_free (g_lang);
1642                 }
1643
1644 //              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));
1645
1646                 gst_caps_unref (caps);
1647         }
1648
1649         gst_object_unref (pad);
1650 }
1651
1652 void eServiceMP3::pullSubtitle()
1653 {
1654         GstElement *sink;
1655         g_object_get (G_OBJECT (m_gst_playbin), "text-sink", &sink, NULL);
1656         
1657         if (sink)
1658         {
1659                 while (m_subs_to_pull && m_subtitle_pages.size() < 2)
1660                 {
1661                         GstBuffer *buffer;
1662                         {
1663                                 eSingleLocker l(m_subs_to_pull_lock);
1664                                 --m_subs_to_pull;
1665                                 g_signal_emit_by_name (sink, "pull-buffer", &buffer);
1666                         }
1667                         if (buffer)
1668                         {
1669                                 gint64 buf_pos = GST_BUFFER_TIMESTAMP(buffer);
1670                                 gint64 duration_ns = GST_BUFFER_DURATION(buffer);
1671                                 size_t len = GST_BUFFER_SIZE(buffer);
1672                                 eDebug("pullSubtitle m_subtitleStreams[m_currentSubtitleStream].type=%i",m_subtitleStreams[m_currentSubtitleStream].type);
1673                                 
1674                                 if ( m_subtitleStreams[m_currentSubtitleStream].type )
1675                                 {
1676                                         if ( m_subtitleStreams[m_currentSubtitleStream].type < stVOB )
1677                                         {
1678                                                 unsigned char line[len+1];
1679                                                 SubtitlePage page;
1680                                                 memcpy(line, GST_BUFFER_DATA(buffer), len);
1681                                                 line[len] = 0;
1682                                                 eDebug("got new text subtitle @ buf_pos = %lld ns (in pts=%lld): '%s' ", buf_pos, buf_pos/11111, line);
1683                                                 gRGB rgbcol(0xD0,0xD0,0xD0);
1684                                                 page.type = SubtitlePage::Pango;
1685                                                 page.pango_page.m_elements.push_back(ePangoSubtitlePageElement(rgbcol, (const char*)line));
1686                                                 page.pango_page.m_show_pts = buf_pos / 11111L;
1687                                                 page.pango_page.m_timeout = duration_ns / 1000000;
1688                                                 m_subtitle_pages.push_back(page);
1689                                                 if (m_subtitle_pages.size()==1)
1690                                                         pushSubtitles();
1691                                         }
1692                                         else
1693                                         {
1694                                                 eDebug("unsupported subpicture... ignoring");
1695                                         }
1696                                 }
1697                                 gst_buffer_unref(buffer);
1698                         }
1699                 }
1700                 gst_object_unref(sink);
1701         }
1702         else
1703                 eDebug("no subtitle sink!");
1704 }
1705
1706 void eServiceMP3::pushSubtitles()
1707 {
1708         while ( !m_subtitle_pages.empty() )
1709         {
1710                 SubtitlePage &frontpage = m_subtitle_pages.front();
1711                 pts_t running_pts;
1712                 gint64 diff_ms = 0;
1713                 gint64 show_pts = 0;
1714
1715                 getPlayPosition(running_pts);
1716
1717                 if (m_decoder_time_valid_state < 4) {
1718                         ++m_decoder_time_valid_state;
1719                         if (m_prev_decoder_time == running_pts)
1720                                 m_decoder_time_valid_state = 0;
1721                         if (m_decoder_time_valid_state < 4) {
1722 //                              if (m_decoder_time_valid_state)
1723 //                                      eDebug("%d: decoder time not valid! prev %lld, now %lld\n", m_decoder_time_valid_state, m_prev_decoder_time/90, running_pts/90);
1724 //                              else
1725 //                                      eDebug("%d: decoder time not valid! now %lld\n", m_decoder_time_valid_state, running_pts/90);
1726                                 m_subtitle_sync_timer->start(25, true);
1727                                 m_prev_decoder_time = running_pts;
1728                                 break;
1729                         }
1730                 }
1731
1732                 if (frontpage.type == SubtitlePage::Pango)
1733                         show_pts = frontpage.pango_page.m_show_pts;
1734
1735                 diff_ms = ( show_pts - running_pts ) / 90;
1736                 eDebug("check subtitle: decoder: %lld, show_pts: %lld, diff: %lld ms", running_pts/90, show_pts/90, diff_ms);
1737
1738                 if ( diff_ms < -100 )
1739                 {
1740                         eDebug("subtitle too late... drop");
1741                         m_subtitle_pages.pop_front();
1742                 }
1743                 else if ( diff_ms > 20 )
1744                 {
1745                         eDebug("start timer");
1746                         m_subtitle_sync_timer->start(diff_ms, true);
1747                         break;
1748                 }
1749                 else // immediate show
1750                 {
1751                         if ( m_subtitle_widget )
1752                         {
1753                                 eDebug("show!\n");
1754                                 if ( frontpage.type == SubtitlePage::Pango)
1755                                         m_subtitle_widget->setPage(frontpage.pango_page);
1756                                 m_subtitle_widget->show();
1757                         }
1758                         m_subtitle_pages.pop_front();
1759                 }
1760         }
1761         if (m_subtitle_pages.empty())
1762                 pullSubtitle();
1763 }
1764
1765
1766 RESULT eServiceMP3::enableSubtitles(eWidget *parent, ePyObject tuple)
1767 {
1768         eDebug ("eServiceMP3::enableSubtitles m_currentSubtitleStream=%i this=%p",m_currentSubtitleStream, this);
1769         ePyObject entry;
1770         int tuplesize = PyTuple_Size(tuple);
1771         int pid, type;
1772         gint text_pid = 0;
1773         eSingleLocker l(m_subs_to_pull_lock);
1774
1775 //      GstPad *pad = 0;
1776 //      g_signal_emit_by_name (m_gst_playbin, "get-text-pad", m_currentSubtitleStream, &pad);
1777 //      gst_element_get_static_pad(m_gst_subtitlebin, "sink");
1778 //      gulong subprobe_handler_id = gst_pad_add_buffer_probe (pad, G_CALLBACK (gstCBsubtitleDrop), NULL);
1779
1780         if (!PyTuple_Check(tuple))
1781                 goto error_out;
1782         if (tuplesize < 1)
1783                 goto error_out;
1784         entry = PyTuple_GET_ITEM(tuple, 1);
1785         if (!PyInt_Check(entry))
1786                 goto error_out;
1787         pid = PyInt_AsLong(entry);
1788         entry = PyTuple_GET_ITEM(tuple, 2);
1789         if (!PyInt_Check(entry))
1790                 goto error_out;
1791         type = PyInt_AsLong(entry);
1792
1793         if (m_currentSubtitleStream != pid)
1794         {
1795                 g_object_set (G_OBJECT (m_gst_playbin), "current-text", pid, NULL);
1796                 eDebug ("eServiceMP3::enableSubtitles g_object_set current-text = %i", pid);
1797                 m_currentSubtitleStream = pid;
1798                 m_subs_to_pull = 0;
1799                 m_prev_decoder_time = -1;
1800                 m_subtitle_pages.clear();
1801         }
1802
1803         m_subtitle_widget = 0;
1804         m_subtitle_widget = new eSubtitleWidget(parent);
1805         m_subtitle_widget->resize(parent->size()); /* full size */
1806
1807         g_object_get (G_OBJECT (m_gst_playbin), "current-text", &text_pid, NULL);
1808
1809         eDebug ("eServiceMP3::switched to subtitle stream %i", text_pid);
1810 //      gst_pad_remove_buffer_probe (pad, subprobe_handler_id);
1811
1812         m_event((iPlayableService*)this, evUpdatedInfo);
1813
1814         return 0;
1815
1816 error_out:
1817         eDebug("eServiceMP3::enableSubtitles needs a tuple as 2nd argument!\n"
1818                 "for gst subtitles (2, subtitle_stream_count, subtitle_type)");
1819         return -1;
1820 }
1821
1822 RESULT eServiceMP3::disableSubtitles(eWidget *parent)
1823 {
1824         eDebug("eServiceMP3::disableSubtitles");
1825         m_subtitle_pages.clear();
1826         delete m_subtitle_widget;
1827         m_subtitle_widget = 0;
1828         return 0;
1829 }
1830
1831 PyObject *eServiceMP3::getCachedSubtitle()
1832 {
1833 //      eDebug("eServiceMP3::getCachedSubtitle");
1834         Py_RETURN_NONE;
1835 }
1836
1837 PyObject *eServiceMP3::getSubtitleList()
1838 {
1839 //      eDebug("eServiceMP3::getSubtitleList");
1840         ePyObject l = PyList_New(0);
1841         int stream_idx = 0;
1842         
1843         for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
1844         {
1845                 subtype_t type = IterSubtitleStream->type;
1846                 switch(type)
1847                 {
1848                 case stUnknown:
1849                 case stVOB:
1850                 case stPGS:
1851                         break;
1852                 default:
1853                 {
1854                         ePyObject tuple = PyTuple_New(5);
1855 //                      eDebug("eServiceMP3::getSubtitleList idx=%i type=%i, code=%s", stream_idx, int(type), (IterSubtitleStream->language_code).c_str());
1856                         PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(2));
1857                         PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(stream_idx));
1858                         PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(int(type)));
1859                         PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(0));
1860                         PyTuple_SET_ITEM(tuple, 4, PyString_FromString((IterSubtitleStream->language_code).c_str()));
1861                         PyList_Append(l, tuple);
1862                         Py_DECREF(tuple);
1863                 }
1864                 }
1865                 stream_idx++;
1866         }
1867         eDebug("eServiceMP3::getSubtitleList finished");
1868         return l;
1869 }
1870
1871 RESULT eServiceMP3::streamed(ePtr<iStreamedService> &ptr)
1872 {
1873         ptr = this;
1874         return 0;
1875 }
1876
1877 PyObject *eServiceMP3::getBufferCharge()
1878 {
1879         ePyObject tuple = PyTuple_New(5);
1880         PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(m_bufferInfo.bufferPercent));
1881         PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(m_bufferInfo.avgInRate));
1882         PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(m_bufferInfo.avgOutRate));
1883         PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(m_bufferInfo.bufferingLeft));
1884         PyTuple_SET_ITEM(tuple, 4, PyInt_FromLong(m_buffer_size));
1885         return tuple;
1886 }
1887
1888 int eServiceMP3::setBufferSize(int size)
1889 {
1890         m_buffer_size = size;
1891         g_object_set (G_OBJECT (m_gst_playbin), "buffer-size", m_buffer_size, NULL);
1892         return 0;
1893 }
1894
1895 int eServiceMP3::getAC3Delay()
1896 {
1897         return ac3_delay;
1898 }
1899
1900 int eServiceMP3::getPCMDelay()
1901 {
1902         return pcm_delay;
1903 }
1904
1905 void eServiceMP3::setAC3Delay(int delay)
1906 {
1907         ac3_delay = delay;
1908         if (!m_gst_playbin || m_state != stRunning)
1909                 return;
1910         else
1911         {
1912                 GstElement *sink;
1913                 int config_delay_int = delay;
1914                 g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
1915
1916                 if (sink)
1917                 {
1918                         std::string config_delay;
1919                         if(ePythonConfigQuery::getConfigValue("config.av.generalAC3delay", config_delay) == 0)
1920                                 config_delay_int += atoi(config_delay.c_str());
1921                         gst_object_unref(sink);
1922                 }
1923                 else
1924                 {
1925                         eDebug("dont apply ac3 delay when no video is running!");
1926                         config_delay_int = 0;
1927                 }
1928
1929                 g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
1930
1931                 if (sink)
1932                 {
1933                         gchar *name = gst_element_get_name(sink);
1934                         if (strstr(name, "dvbaudiosink"))
1935                                 eTSMPEGDecoder::setHwAC3Delay(config_delay_int);
1936                         g_free(name);
1937                         gst_object_unref(sink);
1938                 }
1939         }
1940 }
1941
1942 void eServiceMP3::setPCMDelay(int delay)
1943 {
1944         pcm_delay = delay;
1945         if (!m_gst_playbin || m_state != stRunning)
1946                 return;
1947         else
1948         {
1949                 GstElement *sink;
1950                 int config_delay_int = delay;
1951                 g_object_get (G_OBJECT (m_gst_playbin), "video-sink", &sink, NULL);
1952
1953                 if (sink)
1954                 {
1955                         std::string config_delay;
1956                         if(ePythonConfigQuery::getConfigValue("config.av.generalPCMdelay", config_delay) == 0)
1957                                 config_delay_int += atoi(config_delay.c_str());
1958                         gst_object_unref(sink);
1959                 }
1960                 else
1961                 {
1962                         eDebug("dont apply pcm delay when no video is running!");
1963                         config_delay_int = 0;
1964                 }
1965
1966                 g_object_get (G_OBJECT (m_gst_playbin), "audio-sink", &sink, NULL);
1967
1968                 if (sink)
1969                 {
1970                         gchar *name = gst_element_get_name(sink);
1971                         if (strstr(name, "dvbaudiosink"))
1972                                 eTSMPEGDecoder::setHwPCMDelay(config_delay_int);
1973                         else
1974                         {
1975                                 // this is realy untested..and not used yet
1976                                 gint64 offset = config_delay_int;
1977                                 offset *= 1000000; // milli to nano
1978                                 g_object_set (G_OBJECT (m_gst_playbin), "ts-offset", offset, NULL);
1979                         }
1980                         g_free(name);
1981                         gst_object_unref(sink);
1982                 }
1983         }
1984 }
1985