aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicemp3.cpp
blob: 9c1972d7cd5ab99fb909bfcb44b43a693b8b49b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
#ifdef HAVE_GSTREAMER

	/* note: this requires gstreamer 0.10.x and a big list of plugins. */
	/* it's currently hardcoded to use a big-endian alsasink as sink. */
#include <lib/base/eerror.h>
#include <lib/base/object.h>
#include <lib/base/ebase.h>
#include <string>
#include <lib/service/servicemp3.h>
#include <lib/service/service.h>
#include <lib/components/file_eraser.h>
#include <lib/base/init_num.h>
#include <lib/base/init.h>
#include <gst/gst.h>
#include <gst/pbutils/missing-plugins.h>
#include <sys/stat.h>
/* for subtitles */
#include <lib/gui/esubtitle.h>
#include <errno.h>

// eServiceFactoryMP3

eServiceFactoryMP3::eServiceFactoryMP3()
{
	ePtr<eServiceCenter> sc;
	
	eServiceCenter::getPrivInstance(sc);
	if (sc)
	{
		std::list<std::string> extensions;
		extensions.push_back("mp2");
		extensions.push_back("mp3");
		extensions.push_back("ogg");
		extensions.push_back("mpg");
		extensions.push_back("vob");
		extensions.push_back("wav");
		extensions.push_back("wave");
		extensions.push_back("mkv");
		extensions.push_back("avi");
		extensions.push_back("divx");
		extensions.push_back("dat");
		extensions.push_back("flac");
		extensions.push_back("mp4");
		sc->addServiceFactory(eServiceFactoryMP3::id, this, extensions);
	}

	m_service_info = new eStaticServiceMP3Info();
}

eServiceFactoryMP3::~eServiceFactoryMP3()
{
	ePtr<eServiceCenter> sc;
	
	eServiceCenter::getPrivInstance(sc);
	if (sc)
		sc->removeServiceFactory(eServiceFactoryMP3::id);
}

DEFINE_REF(eServiceFactoryMP3)

	// iServiceHandler
RESULT eServiceFactoryMP3::play(const eServiceReference &ref, ePtr<iPlayableService> &ptr)
{
		// check resources...
	ptr = new eServiceMP3(ref.path.c_str());
	return 0;
}

RESULT eServiceFactoryMP3::record(const eServiceReference &ref, ePtr<iRecordableService> &ptr)
{
	ptr=0;
	return -1;
}

RESULT eServiceFactoryMP3::list(const eServiceReference &, ePtr<iListableService> &ptr)
{
	ptr=0;
	return -1;
}

RESULT eServiceFactoryMP3::info(const eServiceReference &ref, ePtr<iStaticServiceInformation> &ptr)
{
	ptr = m_service_info;
	return 0;
}

class eMP3ServiceOfflineOperations: public iServiceOfflineOperations
{
	DECLARE_REF(eMP3ServiceOfflineOperations);
	eServiceReference m_ref;
public:
	eMP3ServiceOfflineOperations(const eServiceReference &ref);
	
	RESULT deleteFromDisk(int simulate);
	RESULT getListOfFilenames(std::list<std::string> &);
};

DEFINE_REF(eMP3ServiceOfflineOperations);

eMP3ServiceOfflineOperations::eMP3ServiceOfflineOperations(const eServiceReference &ref): m_ref((const eServiceReference&)ref)
{
}

RESULT eMP3ServiceOfflineOperations::deleteFromDisk(int simulate)
{
	if (simulate)
		return 0;
	else
	{
		std::list<std::string> res;
		if (getListOfFilenames(res))
			return -1;
		
		eBackgroundFileEraser *eraser = eBackgroundFileEraser::getInstance();
		if (!eraser)
			eDebug("FATAL !! can't get background file eraser");
		
		for (std::list<std::string>::iterator i(res.begin()); i != res.end(); ++i)
		{
			eDebug("Removing %s...", i->c_str());
			if (eraser)
				eraser->erase(i->c_str());
			else
				::unlink(i->c_str());
		}
		
		return 0;
	}
}

RESULT eMP3ServiceOfflineOperations::getListOfFilenames(std::list<std::string> &res)
{
	res.clear();
	res.push_back(m_ref.path);
	return 0;
}


RESULT eServiceFactoryMP3::offlineOperations(const eServiceReference &ref, ePtr<iServiceOfflineOperations> &ptr)
{
	ptr = new eMP3ServiceOfflineOperations(ref);
	return 0;
}

// eStaticServiceMP3Info


// eStaticServiceMP3Info is seperated from eServiceMP3 to give information
// about unopened files.

// probably eServiceMP3 should use this class as well, and eStaticServiceMP3Info
// should have a database backend where ID3-files etc. are cached.
// this would allow listing the mp3 database based on certain filters.

DEFINE_REF(eStaticServiceMP3Info)

eStaticServiceMP3Info::eStaticServiceMP3Info()
{
}

RESULT eStaticServiceMP3Info::getName(const eServiceReference &ref, std::string &name)
{
	size_t last = ref.path.rfind('/');
	if (last != std::string::npos)
		name = ref.path.substr(last+1);
	else
		name = ref.path;
	return 0;
}

int eStaticServiceMP3Info::getLength(const eServiceReference &ref)
{
	return -1;
}

// eServiceMP3

eServiceMP3::eServiceMP3(const char *filename): m_filename(filename), m_pump(eApp, 1)
{
	m_seekTimeout = eTimer::create(eApp);
	m_stream_tags = 0;
	m_currentAudioStream = 0;
	m_currentSubtitleStream = 0;
	m_subtitle_widget = 0;
	m_currentTrickRatio = 0;
	CONNECT(m_seekTimeout->timeout, eServiceMP3::seekTimeoutCB);
	CONNECT(m_pump.recv_msg, eServiceMP3::gstPoll);
	GstElement *source = 0;
	
	GstElement *decoder = 0, *conv = 0, *flt = 0, *sink = 0; /* for audio */
	
	GstElement *audio = 0, *switch_audio = 0, *queue_audio = 0, *video = 0, *queue_video = 0, *videodemux = 0;
	
	m_state = stIdle;
	eDebug("SERVICEMP3 construct!");
	
		/* FIXME: currently, decodebin isn't possible for 
		   video streams. in that case, make a manual pipeline. */

	const char *ext = strrchr(filename, '.');
	if (!ext)
		ext = filename;

	sourceStream sourceinfo;
	if ( (strcasecmp(ext, ".mpeg") && strcasecmp(ext, ".mpg") && strcasecmp(ext, ".vob") && strcasecmp(ext, ".bin") && strcasecmp(ext, ".dat") ) == 0 )
		sourceinfo.containertype = ctMPEGPS;
	else if ( strcasecmp(ext, ".ts") == 0 )
		sourceinfo.containertype = ctMPEGTS;
	else if ( strcasecmp(ext, ".mkv") == 0 )
		sourceinfo.containertype = ctMKV;
	else if ( strcasecmp(ext, ".avi") == 0 || strcasecmp(ext, ".divx") == 0)
		sourceinfo.containertype = ctAVI;
	else if ( strcasecmp(ext, ".mp4") == 0 )
		sourceinfo.containertype = ctMP4;
	else if ( (strncmp(filename, "/autofs/", 8) || strncmp(filename+strlen(filename)-13, "/track-", 7) || strcasecmp(ext, ".wav")) == 0 )
		sourceinfo.containertype = ctCDA;
	if ( strcasecmp(ext, ".dat") == 0 )
		sourceinfo.containertype = ctVCD;
	if ( (strncmp(filename, "http://", 7)) == 0 )
		sourceinfo.is_streaming = TRUE;

	sourceinfo.is_video = ( sourceinfo.containertype && sourceinfo.containertype != ctCDA );

	eDebug("filename=%s, containertype=%d, is_video=%d, is_streaming=%d", filename, sourceinfo.containertype, sourceinfo.is_video, sourceinfo.is_streaming);

	int all_ok = 0;

	m_gst_pipeline = gst_pipeline_new ("mediaplayer");
	if (!m_gst_pipeline)
		m_error_message = "failed to create GStreamer pipeline!\n";

	if ( sourceinfo.is_streaming )
	{
		eDebug("play webradio!");
		source = gst_element_factory_make ("neonhttpsrc", "http-source");
		if (source)
		{
			g_object_set (G_OBJECT (source), "location", filename, NULL);
			g_object_set (G_OBJECT (source), "automatic-redirect", TRUE, NULL);
		}
		else
			m_error_message = "GStreamer plugin neonhttpsrc not available!\n";
	}
	else if ( sourceinfo.containertype == ctCDA )
	{
		source = gst_element_factory_make ("cdiocddasrc", "cda-source");
		if (source)
		{
			g_object_set (G_OBJECT (source), "device", "/dev/cdroms/cdrom0", NULL);
			int track = atoi(filename+18);
			eDebug("play audio CD track #%i",track);
			if (track > 0)
				g_object_set (G_OBJECT (source), "track", track, NULL);
		}
		else
			sourceinfo.containertype = ctNone;
	}
	if ( !sourceinfo.is_streaming && sourceinfo.containertype != ctCDA )
	{
		source = gst_element_factory_make ("filesrc", "file-source");
		if (source)
			g_object_set (G_OBJECT (source), "location", filename, NULL);
		else
			m_error_message = "GStreamer can't open filesrc " + (std::string)filename + "!\n";
	}
	if ( sourceinfo.is_video )
	{
			/* filesrc -> mpegdemux -> | queue_audio -> dvbaudiosink
			                           | queue_video -> dvbvideosink */

		audio = gst_element_factory_make("dvbaudiosink", "audiosink");
		if (!audio)
			m_error_message += "failed to create Gstreamer element dvbaudiosink\n";
		
		video = gst_element_factory_make("dvbvideosink", "videosink");
		if (!video)
			m_error_message += "failed to create Gstreamer element dvbvideosink\n";

		queue_audio = gst_element_factory_make("queue", "queue_audio");
		queue_video = gst_element_factory_make("queue", "queue_video");

		std::string demux_type;
		switch (sourceinfo.containertype)
		{
			case ctMPEGTS:
				demux_type = "flutsdemux";
				break;
			case ctMPEGPS:
			case ctVCD:
				demux_type = "flupsdemux";
				break;
			case ctMKV:
				demux_type = "matroskademux";
				break;
			case ctAVI:
				demux_type = "avidemux";
				break;
			case ctMP4:
				demux_type = "qtdemux";
				break;
			default:
				break;
		}
		videodemux = gst_element_factory_make(demux_type.c_str(), "videodemux");
		if (!videodemux)
			m_error_message = "GStreamer plugin " + demux_type + " not available!\n";

		switch_audio = gst_element_factory_make ("input-selector", "switch_audio");
		if (!switch_audio)
			m_error_message = "GStreamer plugin input-selector not available!\n";

		if (audio && queue_audio && video && queue_video && videodemux && switch_audio)
		{
			g_object_set (G_OBJECT (queue_audio), "max-size-bytes", 256*1024, NULL);
			g_object_set (G_OBJECT (queue_audio), "max-size-buffers", 0, NULL);
			g_object_set (G_OBJECT (queue_audio), "max-size-time", (guint64)0, NULL);
			g_object_set (G_OBJECT (queue_video), "max-size-buffers", 0, NULL);
			g_object_set (G_OBJECT (queue_video), "max-size-bytes", 2*1024*1024, NULL);
			g_object_set (G_OBJECT (queue_video), "max-size-time", (guint64)0, NULL);
			g_object_set (G_OBJECT (switch_audio), "select-all", TRUE, NULL);
			all_ok = 1;
		}
	} else /* is audio */
	{

			/* filesrc -> decodebin -> audioconvert -> capsfilter -> alsasink */
		decoder = gst_element_factory_make ("decodebin", "decoder");
		if (!decoder)
			m_error_message += "failed to create Gstreamer element decodebin\n";

		conv = gst_element_factory_make ("audioconvert", "converter");
		if (!conv)
			m_error_message += "failed to create Gstreamer element audioconvert\n";

		flt = gst_element_factory_make ("capsfilter", "flt");
		if (!flt)
			m_error_message += "failed to create Gstreamer element capsfilter\n";

			/* for some reasons, we need to set the sample format to depth/width=16, because auto negotiation doesn't work. */
			/* endianness, however, is not required to be set anymore. */
		if (flt)
		{
			GstCaps *caps = gst_caps_new_simple("audio/x-raw-int", /* "endianness", G_TYPE_INT, 4321, */ "depth", G_TYPE_INT, 16, "width", G_TYPE_INT, 16, /*"channels", G_TYPE_INT, 2, */NULL);
			g_object_set (G_OBJECT (flt), "caps", caps, NULL);
			gst_caps_unref(caps);
		}

		sink = gst_element_factory_make ("alsasink", "alsa-output");
		if (!sink)
			m_error_message += "failed to create Gstreamer element alsasink\n";

		if (source && decoder && conv && sink)
			all_ok = 1;
	}
	if (m_gst_pipeline && all_ok)
	{
		gst_bus_set_sync_handler(gst_pipeline_get_bus (GST_PIPELINE (m_gst_pipeline)), gstBusSyncHandler, this);

		if ( sourceinfo.containertype == ctCDA )
		{
			queue_audio = gst_element_factory_make("queue", "queue_audio");
			g_object_set (G_OBJECT (sink), "preroll-queue-len", 80, NULL);
			gst_bin_add_many (GST_BIN (m_gst_pipeline), source, queue_audio, conv, sink, NULL);
			gst_element_link_many(source, queue_audio, conv, sink, NULL);
		}
		else if ( sourceinfo.is_video )
		{
			char srt_filename[strlen(filename)+1];
			strncpy(srt_filename,filename,strlen(filename)-3);
			srt_filename[strlen(filename)-3]='\0';
			strcat(srt_filename, "srt");
			struct stat buffer;
			if (stat(srt_filename, &buffer) == 0)
			{
				eDebug("subtitle file found: %s",srt_filename);
				GstElement *subsource = gst_element_factory_make ("filesrc", "srt_source");
				g_object_set (G_OBJECT (subsource), "location", srt_filename, NULL);
				gst_bin_add(GST_BIN (m_gst_pipeline), subsource);
				GstPad *switchpad = gstCreateSubtitleSink(this, stSRT);
				gst_pad_link(gst_element_get_pad (subsource, "src"), switchpad);
				subtitleStream subs;
				subs.pad = switchpad;
				subs.type = stSRT;
				subs.language_code = std::string("und");
				m_subtitleStreams.push_back(subs);
			}
			gst_bin_add_many(GST_BIN(m_gst_pipeline), source, videodemux, audio, queue_audio, video, queue_video, switch_audio, NULL);

			if ( sourceinfo.containertype == ctVCD )
			{
				GstElement *cdxaparse = gst_element_factory_make("cdxaparse", "cdxaparse");
				gst_bin_add(GST_BIN(m_gst_pipeline), cdxaparse);
				gst_element_link(source, cdxaparse);
				gst_element_link(cdxaparse, videodemux);
			}
			else
				gst_element_link(source, videodemux);

			gst_element_link(switch_audio, queue_audio);
			gst_element_link(queue_audio, audio);
			gst_element_link(queue_video, video);
			g_signal_connect(videodemux, "pad-added", G_CALLBACK (gstCBpadAdded), this);

		} else /* is audio*/
		{
			queue_audio = gst_element_factory_make("queue", "queue_audio");

			g_signal_connect (decoder, "new-decoded-pad", G_CALLBACK(gstCBnewPad), this);
			g_signal_connect (decoder, "unknown-type", G_CALLBACK(gstCBunknownType), this);

			g_object_set (G_OBJECT (sink), "preroll-queue-len", 80, NULL);

				/* gst_bin will take the 'floating references' */
			gst_bin_add_many (GST_BIN (m_gst_pipeline),
						source, queue_audio, decoder, NULL);

				/* in decodebin's case we can just connect the source with the decodebin, and decodebin will take care about id3demux (or whatever is required) */
			gst_element_link_many(source, queue_audio, decoder, NULL);

				/* create audio bin with the audioconverter, the capsfilter and the audiosink */
			audio = gst_bin_new ("audiobin");

			GstPad *audiopad = gst_element_get_static_pad (conv, "sink");
			gst_bin_add_many(GST_BIN(audio), conv, flt, sink, NULL);
			gst_element_link_many(conv, flt, sink, NULL);
			gst_element_add_pad(audio, gst_ghost_pad_new ("sink", audiopad));
			gst_object_unref(audiopad);
			gst_bin_add (GST_BIN(m_gst_pipeline), audio);
		}
	} else
	{
		m_event((iPlayableService*)this, evUser+12);

		if (m_gst_pipeline)
			gst_object_unref(GST_OBJECT(m_gst_pipeline));
		if (source)
			gst_object_unref(GST_OBJECT(source));
		if (decoder)
			gst_object_unref(GST_OBJECT(decoder));
		if (conv)
			gst_object_unref(GST_OBJECT(conv));
		if (sink)
			gst_object_unref(GST_OBJECT(sink));

		if (audio)
			gst_object_unref(GST_OBJECT(audio));
		if (queue_audio)
			gst_object_unref(GST_OBJECT(queue_audio));
		if (video)
			gst_object_unref(GST_OBJECT(video));
		if (queue_video)
			gst_object_unref(GST_OBJECT(queue_video));
		if (videodemux)
			gst_object_unref(GST_OBJECT(videodemux));
		if (switch_audio)
			gst_object_unref(GST_OBJECT(switch_audio));

		eDebug("sorry, can't play: %s",m_error_message.c_str());
		m_gst_pipeline = 0;
	}

	gst_element_set_state (m_gst_pipeline, GST_STATE_PLAYING);
}

eServiceMP3::~eServiceMP3()
{
	delete m_subtitle_widget;
	if (m_state == stRunning)
		stop();
	
	if (m_stream_tags)
		gst_tag_list_free(m_stream_tags);
	
	if (m_gst_pipeline)
	{
		gst_object_unref (GST_OBJECT (m_gst_pipeline));
		eDebug("SERVICEMP3 destruct!");
	}
}

DEFINE_REF(eServiceMP3);	

RESULT eServiceMP3::connectEvent(const Slot2<void,iPlayableService*,int> &event, ePtr<eConnection> &connection)
{
	connection = new eConnection((iPlayableService*)this, m_event.connect(event));
	return 0;
}

RESULT eServiceMP3::start()
{
	assert(m_state == stIdle);
	
	m_state = stRunning;
	if (m_gst_pipeline)
	{
		eDebug("starting pipeline");
		gst_element_set_state (m_gst_pipeline, GST_STATE_PLAYING);
	}
	m_event(this, evStart);
	return 0;
}

RESULT eServiceMP3::stop()
{
	assert(m_state != stIdle);
	if (m_state == stStopped)
		return -1;
	eDebug("MP3: %s stop\n", m_filename.c_str());
	gst_element_set_state(m_gst_pipeline, GST_STATE_NULL);
	m_state = stStopped;
	return 0;
}

RESULT eServiceMP3::setTarget(int target)
{
	return -1;
}

RESULT eServiceMP3::pause(ePtr<iPauseableService> &ptr)
{
	ptr=this;
	return 0;
}

RESULT eServiceMP3::setSlowMotion(int ratio)
{
	/* we can't do slomo yet */
	return -1;
}

RESULT eServiceMP3::setFastForward(int ratio)
{
	m_currentTrickRatio = ratio;
	if (ratio)
		m_seekTimeout->start(1000, 0);
	else
		m_seekTimeout->stop();
	return 0;
}

void eServiceMP3::seekTimeoutCB()
{
	pts_t ppos, len;
	getPlayPosition(ppos);
	getLength(len);
	ppos += 90000*m_currentTrickRatio;
	
	if (ppos < 0)
	{
		ppos = 0;
		m_seekTimeout->stop();
	}
	if (ppos > len)
	{
		ppos = 0;
		stop();
		m_seekTimeout->stop();
		return;
	}
	seekTo(ppos);
}

		// iPausableService
RESULT eServiceMP3::pause()
{
	if (!m_gst_pipeline)
		return -1;
	GstStateChangeReturn res = gst_element_set_state(m_gst_pipeline, GST_STATE_PAUSED);
	if (res == GST_STATE_CHANGE_ASYNC)
	{
		pts_t ppos;
		getPlayPosition(ppos);
		seekTo(ppos);
	}
	return 0;
}

RESULT eServiceMP3::unpause()
{
	if (!m_gst_pipeline)
		return -1;

	GstStateChangeReturn res;
	res = gst_element_set_state(m_gst_pipeline, GST_STATE_PLAYING);
	return 0;
}

	/* iSeekableService */
RESULT eServiceMP3::seek(ePtr<iSeekableService> &ptr)
{
	ptr = this;
	return 0;
}

RESULT eServiceMP3::getLength(pts_t &pts)
{
	if (!m_gst_pipeline)
		return -1;
	if (m_state != stRunning)
		return -1;
	
	GstFormat fmt = GST_FORMAT_TIME;
	gint64 len;
	
	if (!gst_element_query_duration(m_gst_pipeline, &fmt, &len))
		return -1;
	
		/* len is in nanoseconds. we have 90 000 pts per second. */
	
	pts = len / 11111;
	return 0;
}

RESULT eServiceMP3::seekTo(pts_t to)
{
	if (!m_gst_pipeline)
		return -1;

		/* convert pts to nanoseconds */
	gint64 time_nanoseconds = to * 11111LL;
	if (!gst_element_seek (m_gst_pipeline, 1.0, GST_FORMAT_TIME, GST_SEEK_FLAG_FLUSH,
		GST_SEEK_TYPE_SET, time_nanoseconds,
		GST_SEEK_TYPE_NONE, GST_CLOCK_TIME_NONE))
	{
		eDebug("SEEK failed");
		return -1;
	}
	return 0;
}

RESULT eServiceMP3::seekRelative(int direction, pts_t to)
{
	if (!m_gst_pipeline)
		return -1;

	pts_t ppos;
	getPlayPosition(ppos);
	ppos += to * direction;
	if (ppos < 0)
		ppos = 0;
	seekTo(ppos);
	
	return 0;
}

RESULT eServiceMP3::getPlayPosition(pts_t &pts)
{
	if (!m_gst_pipeline)
		return -1;
	if (m_state != stRunning)
		return -1;
	
	GstFormat fmt = GST_FORMAT_TIME;
	gint64 len;
	
	if (!gst_element_query_position(m_gst_pipeline, &fmt, &len))
		return -1;
	
		/* len is in nanoseconds. we have 90 000 pts per second. */
	pts = len / 11111;
	return 0;
}

RESULT eServiceMP3::setTrickmode(int trick)
{
		/* trickmode is not yet supported by our dvbmediasinks. */
	return -1;
}

RESULT eServiceMP3::isCurrentlySeekable()
{
	return 1;
}

RESULT eServiceMP3::info(ePtr<iServiceInformation>&i)
{
	i = this;
	return 0;
}

RESULT eServiceMP3::getName(std::string &name)
{
	name = m_filename;
	size_t n = name.rfind('/');
	if (n != std::string::npos)
		name = name.substr(n + 1);
	return 0;
}

int eServiceMP3::getInfo(int w)
{
	gchar *tag = 0;

	switch (w)
	{
	case sTitle:
	case sArtist:
	case sAlbum:
	case sComment:
	case sTracknumber:
	case sGenre:
	case sVideoType:
	case sTimeCreate:
	case sUser+12:
		return resIsString;
	case sCurrentTitle:
		tag = GST_TAG_TRACK_NUMBER;
		break;
	case sTotalTitles:
		tag = GST_TAG_TRACK_COUNT;
		break;
	default:
		return resNA;
	}

	if (!m_stream_tags || !tag)
		return 0;
	
	guint value;
	if (gst_tag_list_get_uint(m_stream_tags, tag, &value))
		return (int) value;
	
	return 0;

}

std::string eServiceMP3::getInfoString(int w)
{
	if ( !m_stream_tags )
		return "";
	gchar *tag = 0;
	switch (w)
	{
	case sTitle:
		tag = GST_TAG_TITLE;
		break;
	case sArtist:
		tag = GST_TAG_ARTIST;
		break;
	case sAlbum:
		tag = GST_TAG_ALBUM;
		break;
	case sComment:
		tag = GST_TAG_COMMENT;
		break;
	case sTracknumber:
		tag = GST_TAG_TRACK_NUMBER;
		break;
	case sGenre:
		tag = GST_TAG_GENRE;
		break;
	case sVideoType:
		tag = GST_TAG_VIDEO_CODEC;
		break;
	case sTimeCreate:
		GDate *date;
		if (gst_tag_list_get_date(m_stream_tags, GST_TAG_DATE, &date))
		{
			gchar res[5];
 			g_date_strftime (res, sizeof(res), "%Y", date); 
			return (std::string)res;
		}
		break;
	case sUser+12:
		return m_error_message;
	default:
		return "";
	}
	if ( !tag )
		return "";
	gchar *value;
	if (gst_tag_list_get_string(m_stream_tags, tag, &value))
	{
		std::string res = value;
		g_free(value);
		return res;
	}
	return "";
}

RESULT eServiceMP3::audioChannel(ePtr<iAudioChannelSelection> &ptr)
{
	ptr = this;
	return 0;
}

RESULT eServiceMP3::audioTracks(ePtr<iAudioTrackSelection> &ptr)
{
	ptr = this;
	return 0;
}

RESULT eServiceMP3::subtitle(ePtr<iSubtitleOutput> &ptr)
{
	ptr = this;
	return 0;
}

int eServiceMP3::getNumberOfTracks()
{
 	return m_audioStreams.size();
}

int eServiceMP3::getCurrentTrack()
{
	return m_currentAudioStream;
}

RESULT eServiceMP3::selectTrack(unsigned int i)
{
	int ret = selectAudioStream(i);
	/* flush */
	pts_t ppos;
	getPlayPosition(ppos);
	seekTo(ppos);

	return ret;
}

int eServiceMP3::selectAudioStream(int i)
{
	gint nb_sources;
	GstPad *active_pad;
	GstElement *switch_audio = gst_bin_get_by_name(GST_BIN(m_gst_pipeline),"switch_audio");
	if ( !switch_audio )
	{
		eDebug("can't switch audio tracks! gst-plugin-selector needed");
		return -1;
	}
	g_object_get (G_OBJECT (switch_audio), "n-pads", &nb_sources, NULL);
 	if ( (unsigned int)i >= m_audioStreams.size() || i >= nb_sources || (unsigned int)m_currentAudioStream >= m_audioStreams.size() )
		return -2;
	char sinkpad[8];
	sprintf(sinkpad, "sink%d", i);
	g_object_set (G_OBJECT (switch_audio), "active-pad", gst_element_get_pad (switch_audio, sinkpad), NULL);
	g_object_get (G_OBJECT (switch_audio), "active-pad", &active_pad, NULL);
	gchar *name;
	name = gst_pad_get_name (active_pad);
	eDebug ("switched audio to (%s)", name);
	g_free(name);
	m_currentAudioStream = i;
	return 0;
}

int eServiceMP3::getCurrentChannel()
{
	return STEREO;
}

RESULT eServiceMP3::selectChannel(int i)
{
	eDebug("eServiceMP3::selectChannel(%i)",i);
	return 0;
}

RESULT eServiceMP3::getTrackInfo(struct iAudioTrackInfo &info, unsigned int i)
{
// 	eDebug("eServiceMP3::getTrackInfo(&info, %i)",i);
 	if (i >= m_audioStreams.size())
		return -2;
	if (m_audioStreams[i].type == atMPEG)
		info.m_description = "MPEG";
	else if (m_audioStreams[i].type == atMP3)
		info.m_description = "MP3";
	else if (m_audioStreams[i].type == atAC3)
		info.m_description = "AC3";
	else if (m_audioStreams[i].type == atAAC)
		info.m_description = "AAC";
	else if (m_audioStreams[i].type == atDTS)
		info.m_description = "DTS";
	else if (m_audioStreams[i].type == atPCM)
		info.m_description = "PCM";
	else if (m_audioStreams[i].type == atOGG)
		info.m_description = "OGG";
	else
		info.m_description = "???";
	if (info.m_language.empty())
		info.m_language = m_audioStreams[i].language_code;
	return 0;
}

void eServiceMP3::gstBusCall(GstBus *bus, GstMessage *msg)
{
	if (!msg)
		return;
	gchar *sourceName;
	GstObject *source;

	source = GST_MESSAGE_SRC(msg);
	sourceName = gst_object_get_name(source);
#if 0
	if (gst_message_get_structure(msg))
	{
		gchar *string = gst_structure_to_string(gst_message_get_structure(msg));
		eDebug("gst_message from %s: %s", sourceName, string);
		g_free(string);
	}
	else
		eDebug("gst_message from %s: %s (without structure)", sourceName, GST_MESSAGE_TYPE_NAME(msg));
#endif
	switch (GST_MESSAGE_TYPE (msg))
	{
	case GST_MESSAGE_EOS:
		m_event((iPlayableService*)this, evEOF);
		break;
	case GST_MESSAGE_ERROR:
	{
		gchar *debug;
		GError *err;

		gst_message_parse_error (msg, &err, &debug);
		g_free (debug);
		eWarning("Gstreamer error: %s (%i)", err->message, err->code );
		if ( err->domain == GST_STREAM_ERROR && err->code == GST_STREAM_ERROR_DECODE )
		{
			if ( g_strrstr(sourceName, "videosink") )
				m_event((iPlayableService*)this, evUser+11);
		}
		g_error_free(err);
			/* TODO: signal error condition to user */
		break;
	}
	case GST_MESSAGE_TAG:
	{
		GstTagList *tags, *result;
		gst_message_parse_tag(msg, &tags);

		result = gst_tag_list_merge(m_stream_tags, tags, GST_TAG_MERGE_PREPEND);
		if (result)
		{
			if (m_stream_tags)
				gst_tag_list_free(m_stream_tags);
			m_stream_tags = result;
		}

		gchar *g_audiocodec;
		if ( gst_tag_list_get_string(tags, GST_TAG_AUDIO_CODEC, &g_audiocodec) && m_audioStreams.size() == 0 )
		{
			GstPad* pad = gst_element_get_pad (GST_ELEMENT(source), "src");
			GstCaps* caps = gst_pad_get_caps(pad);
			GstStructure* str = gst_caps_get_structure(caps, 0);
			if ( !str )
				break;
			audioStream audio;
			audio.type = gstCheckAudioPad(str);
			m_audioStreams.push_back(audio);
		}

		GValue *gv_image = gst_tag_list_get_value_index(tags, GST_TAG_IMAGE, 0);
		if ( gv_image )
		{
			GstBuffer *buf_image;
			buf_image = gst_value_get_buffer (gv_image);
			int fd = open("/tmp/.id3coverart", O_CREAT|O_WRONLY|O_TRUNC, 0644);
			int ret = write(fd, GST_BUFFER_DATA(buf_image), GST_BUFFER_SIZE(buf_image));
			close(fd);
			m_event((iPlayableService*)this, evUser+13);
		}

		gst_tag_list_free(tags);
		m_event((iPlayableService*)this, evUpdatedInfo);
		break;
	}
	case GST_MESSAGE_ASYNC_DONE:
	{
		GstTagList *tags;
		for (std::vector<audioStream>::iterator IterAudioStream(m_audioStreams.begin()); IterAudioStream != m_audioStreams.end(); ++IterAudioStream)
		{
			if ( IterAudioStream->pad )
			{
				g_object_get(IterAudioStream->pad, "tags", &tags, NULL);
				gchar *g_language;
				if ( gst_is_tag_list(tags) && gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_language) )
				{
					eDebug("found audio language %s",g_language);
					IterAudioStream->language_code = std::string(g_language);
					g_free (g_language);
				}
			}
		}
		for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
		{
			if ( IterSubtitleStream->pad )
			{
				g_object_get(IterSubtitleStream->pad, "tags", &tags, NULL);
				gchar *g_language;
				if ( gst_is_tag_list(tags) && gst_tag_list_get_string(tags, GST_TAG_LANGUAGE_CODE, &g_language) )
				{
					eDebug("found subtitle language %s",g_language);
					IterSubtitleStream->language_code = std::string(g_language);
					g_free (g_language);
				}
			}
		}
	}
        case GST_MESSAGE_ELEMENT:
	{
		if ( gst_is_missing_plugin_message(msg) )
		{
			gchar *description = gst_missing_plugin_message_get_description(msg);
			if ( description )
			{
				m_error_message = "GStreamer plugin " + (std::string)description + " not available!\n";
				g_free(description);
				m_event((iPlayableService*)this, evUser+12);
			}
		}
	}
	default:
		break;
	}
	g_free (sourceName);
}

GstBusSyncReply eServiceMP3::gstBusSyncHandler(GstBus *bus, GstMessage *message, gpointer user_data)
{
	eServiceMP3 *_this = (eServiceMP3*)user_data;
	_this->m_pump.send(1);
		/* wake */
	return GST_BUS_PASS;
}

audiotype_t eServiceMP3::gstCheckAudioPad(GstStructure* structure)
{
	const gchar* type;
	type = gst_structure_get_name(structure);

	if (!strcmp(type, "audio/mpeg")) {
			gint mpegversion, layer = 0;
			gst_structure_get_int (structure, "mpegversion", &mpegversion);
			gst_structure_get_int (structure, "layer", &layer);
			eDebug("mime audio/mpeg version %d layer %d", mpegversion, layer);
			switch (mpegversion) {
				case 1:
				{
					if ( layer == 3 )
						return atMP3;
					else
						return atMPEG;
				}
				case 2:
					return atMPEG;
				case 4:
					return atAAC;
				default:
					return atUnknown;
			}
		}
	else
	{
		eDebug("mime %s", type);
		if (!strcmp(type, "audio/x-ac3") || !strcmp(type, "audio/ac3"))
			return atAC3;
		else if (!strcmp(type, "audio/x-dts") || !strcmp(type, "audio/dts"))
			return atDTS;
		else if (!strcmp(type, "audio/x-raw-int"))
			return atPCM;
	}
	return atUnknown;
}

void eServiceMP3::gstCBpadAdded(GstElement *decodebin, GstPad *pad, gpointer user_data)
{
	const gchar* type;
	GstCaps* caps;
	GstStructure* str;
	caps = gst_pad_get_caps(pad);
	str = gst_caps_get_structure(caps, 0);
	type = gst_structure_get_name(str);

	eDebug("A new pad %s:%s was created", GST_OBJECT_NAME (decodebin), GST_OBJECT_NAME (pad));

	eServiceMP3 *_this = (eServiceMP3*)user_data;
	GstBin *pipeline = GST_BIN(_this->m_gst_pipeline);
	if (g_strrstr(type,"audio"))
	{
		audioStream audio;
		audio.type = _this->gstCheckAudioPad(str);
		GstElement *switch_audio = gst_bin_get_by_name(pipeline , "switch_audio");
		if ( switch_audio )
		{
			GstPad *sinkpad = gst_element_get_request_pad (switch_audio, "sink%d");
			gst_pad_link(pad, sinkpad);
			audio.pad = sinkpad;
			_this->m_audioStreams.push_back(audio);
		
			if ( _this->m_audioStreams.size() == 1 )
			{
				_this->selectAudioStream(0);
				gst_element_set_state (_this->m_gst_pipeline, GST_STATE_PLAYING);
			}
			else
				g_object_set (G_OBJECT (switch_audio), "select-all", FALSE, NULL);
		}
		else
		{
			gst_pad_link(pad, gst_element_get_static_pad(gst_bin_get_by_name(pipeline,"queue_audio"), "sink"));
			_this->m_audioStreams.push_back(audio);
		}
	}
	if (g_strrstr(type,"video"))
	{
		gst_pad_link(pad, gst_element_get_static_pad(gst_bin_get_by_name(pipeline,"queue_video"), "sink"));
	}
	if (g_strrstr(type,"application/x-ssa") || g_strrstr(type,"application/x-ass"))
	{
		GstPad *switchpad = _this->gstCreateSubtitleSink(_this, stSSA);
		gst_pad_link(pad, switchpad);
		subtitleStream subs;
		subs.pad = switchpad;
		subs.type = stSSA;
		_this->m_subtitleStreams.push_back(subs);
	}
	if (g_strrstr(type,"text/plain"))
	{
		GstPad *switchpad = _this->gstCreateSubtitleSink(_this, stPlainText);
		gst_pad_link(pad, switchpad);
		subtitleStream subs;
		subs.pad = switchpad;
		subs.type = stPlainText;
		_this->m_subtitleStreams.push_back(subs);
	}
}

GstPad* eServiceMP3::gstCreateSubtitleSink(eServiceMP3* _this, subtype_t type)
{
	GstBin *pipeline = GST_BIN(_this->m_gst_pipeline);
	GstElement *switch_subparse = gst_bin_get_by_name(pipeline,"switch_subparse");
	if ( !switch_subparse )
	{
		switch_subparse = gst_element_factory_make ("input-selector", "switch_subparse");
		GstElement *sink = gst_element_factory_make("fakesink", "sink_subtitles");
		gst_bin_add_many(pipeline, switch_subparse, sink, NULL);
		gst_element_link(switch_subparse, sink);
		g_object_set (G_OBJECT(sink), "signal-handoffs", TRUE, NULL);
		g_object_set (G_OBJECT(sink), "sync", TRUE, NULL);
		g_object_set (G_OBJECT(sink), "async", FALSE, NULL);
		g_signal_connect(sink, "handoff", G_CALLBACK(_this->gstCBsubtitleAvail), _this);
	
		// order is essential since requested sink pad names can't be explicitely chosen
		GstElement *switch_substream_plain = gst_element_factory_make ("input-selector", "switch_substream_plain");
		gst_bin_add(pipeline, switch_substream_plain);
		GstPad *sinkpad_plain = gst_element_get_request_pad (switch_subparse, "sink%d");
		gst_pad_link(gst_element_get_pad (switch_substream_plain, "src"), sinkpad_plain);
	
		GstElement *switch_substream_ssa = gst_element_factory_make ("input-selector", "switch_substream_ssa");
		GstElement *ssaparse = gst_element_factory_make("ssaparse", "ssaparse");
		gst_bin_add_many(pipeline, switch_substream_ssa, ssaparse, NULL);
		GstPad *sinkpad_ssa = gst_element_get_request_pad (switch_subparse, "sink%d");
		gst_element_link(switch_substream_ssa, ssaparse);
		gst_pad_link(gst_element_get_pad (ssaparse, "src"), sinkpad_ssa);
	
		GstElement *switch_substream_srt = gst_element_factory_make ("input-selector", "switch_substream_srt");
		GstElement *srtparse = gst_element_factory_make("subparse", "srtparse");
		gst_bin_add_many(pipeline, switch_substream_srt, srtparse, NULL);
		GstPad *sinkpad_srt = gst_element_get_request_pad (switch_subparse, "sink%d");
		gst_element_link(switch_substream_srt, srtparse);
		gst_pad_link(gst_element_get_pad (srtparse, "src"), sinkpad_srt);
		g_object_set (G_OBJECT(srtparse), "subtitle-encoding", "ISO-8859-15", NULL);
	}

	switch (type)
	{
		case stSSA:
			return gst_element_get_request_pad (gst_bin_get_by_name(pipeline,"switch_substream_ssa"), "sink%d");
		case stSRT:
			return gst_element_get_request_pad (gst_bin_get_by_name(pipeline,"switch_substream_srt"), "sink%d");
		case stPlainText:
		default:
			break;
	}
	return gst_element_get_request_pad (gst_bin_get_by_name(pipeline,"switch_substream_plain"), "sink%d");
}

void eServiceMP3::gstCBfilterPadAdded(GstElement *filter, GstPad *pad, gpointer user_data)
{
	eServiceMP3 *_this = (eServiceMP3*)user_data;
	GstElement *decoder = gst_bin_get_by_name(GST_BIN(_this->m_gst_pipeline),"decoder");
	gst_pad_link(pad, gst_element_get_static_pad (decoder, "sink"));
}

void eServiceMP3::gstCBnewPad(GstElement *decodebin, GstPad *pad, gboolean last, gpointer user_data)
{
	eServiceMP3 *_this = (eServiceMP3*)user_data;
	GstCaps *caps;
	GstStructure *str;
	GstPad *audiopad;

	/* only link once */
	GstElement *audiobin = gst_bin_get_by_name(GST_BIN(_this->m_gst_pipeline),"audiobin");
	audiopad = gst_element_get_static_pad (audiobin, "sink");
	if ( !audiopad || GST_PAD_IS_LINKED (audiopad)) {
		eDebug("audio already linked!");
		g_object_unref (audiopad);
		return;
	}

	/* check media type */
	caps = gst_pad_get_caps (pad);
	str = gst_caps_get_structure (caps, 0);
	eDebug("gst new pad! %s", gst_structure_get_name (str));

	if (!g_strrstr (gst_structure_get_name (str), "audio")) {
		gst_caps_unref (caps);
		gst_object_unref (audiopad);
		return;
	}
	
	gst_caps_unref (caps);
	gst_pad_link (pad, audiopad);
}

void eServiceMP3::gstCBunknownType(GstElement *decodebin, GstPad *pad, GstCaps *caps, gpointer user_data)
{
	GstStructure *str;

	/* check media type */
	caps = gst_pad_get_caps (pad);
	str = gst_caps_get_structure (caps, 0);
	eDebug("unknown type: %s - this can't be decoded.", gst_structure_get_name (str));
	gst_caps_unref (caps);
}

void eServiceMP3::gstPoll(const int&)
{
		/* ok, we have a serious problem here. gstBusSyncHandler sends 
		   us the wakup signal, but likely before it was posted.
		   the usleep, an EVIL HACK (DON'T DO THAT!!!) works around this.
		   
		   I need to understand the API a bit more to make this work 
		   proplerly. */
	usleep(1);
	
	GstBus *bus = gst_pipeline_get_bus (GST_PIPELINE (m_gst_pipeline));
	GstMessage *message;
	while ((message = gst_bus_pop (bus)))
	{
		gstBusCall(bus, message);
		gst_message_unref (message);
	}
}

eAutoInitPtr<eServiceFactoryMP3> init_eServiceFactoryMP3(eAutoInitNumbers::service+1, "eServiceFactoryMP3");

void eServiceMP3::gstCBsubtitleAvail(GstElement *element, GstBuffer *buffer, GstPad *pad, gpointer user_data)
{
	gint64 duration_ns = GST_BUFFER_DURATION(buffer);
	const unsigned char *text = (unsigned char *)GST_BUFFER_DATA(buffer);
	eDebug("gstCBsubtitleAvail: %s",text);
	eServiceMP3 *_this = (eServiceMP3*)user_data;
	if ( _this->m_subtitle_widget )
	{
		ePangoSubtitlePage page;
		gRGB rgbcol(0xD0,0xD0,0xD0);
		page.m_elements.push_back(ePangoSubtitlePageElement(rgbcol, (const char*)text));
		page.m_timeout = duration_ns / 1000000;
		(_this->m_subtitle_widget)->setPage(page);
	}
}

RESULT eServiceMP3::enableSubtitles(eWidget *parent, ePyObject tuple)
{
	ePyObject entry;
	int tuplesize = PyTuple_Size(tuple);
	int pid;
	int type;
	gint nb_sources;
	GstPad *active_pad;
	GstElement *switch_substream = NULL;
	GstElement *switch_subparse = gst_bin_get_by_name (GST_BIN(m_gst_pipeline), "switch_subparse");

	if (!PyTuple_Check(tuple))
		goto error_out;
	if (tuplesize < 1)
		goto error_out;
	entry = PyTuple_GET_ITEM(tuple, 1);
	if (!PyInt_Check(entry))
		goto error_out;
	pid = PyInt_AsLong(entry);
	entry = PyTuple_GET_ITEM(tuple, 2);
	if (!PyInt_Check(entry))
		goto error_out;
	type = PyInt_AsLong(entry);

	switch ((subtype_t)type)
	{
		case stPlainText:
			switch_substream = gst_bin_get_by_name(GST_BIN(m_gst_pipeline),"switch_substream_plain");
			break;
		case stSSA:
			switch_substream = gst_bin_get_by_name(GST_BIN(m_gst_pipeline),"switch_substream_ssa");
			break;
		case stSRT:
			switch_substream = gst_bin_get_by_name(GST_BIN(m_gst_pipeline),"switch_substream_srt");
			break;
		default:
			goto error_out;
	}

	m_subtitle_widget = new eSubtitleWidget(parent);
	m_subtitle_widget->resize(parent->size()); /* full size */

	if ( !switch_substream )
	{
		eDebug("can't switch subtitle tracks! gst-plugin-selector needed");
		return -2;
	}
	g_object_get (G_OBJECT (switch_substream), "n-pads", &nb_sources, NULL);
 	if ( (unsigned int)pid >= m_subtitleStreams.size() || pid >= nb_sources || (unsigned int)m_currentSubtitleStream >= m_subtitleStreams.size() )
		return -2;
	g_object_get (G_OBJECT (switch_subparse), "n-pads", &nb_sources, NULL);
	if ( type < 0 || type >= nb_sources )
		return -2;

	char sinkpad[6];
	sprintf(sinkpad, "sink%d", type);
	g_object_set (G_OBJECT (switch_subparse), "active-pad", gst_element_get_pad (switch_subparse, sinkpad), NULL);
	sprintf(sinkpad, "sink%d", pid);
	g_object_set (G_OBJECT (switch_substream), "active-pad", gst_element_get_pad (switch_substream, sinkpad), NULL);
	m_currentSubtitleStream = pid;

	return 0;
error_out:
	eDebug("enableSubtitles needs a tuple as 2nd argument!\n"
		"for gst subtitles (2, subtitle_stream_count, subtitle_type)");
	return -1;
}

RESULT eServiceMP3::disableSubtitles(eWidget *parent)
{
	eDebug("eServiceMP3::disableSubtitles");
	delete m_subtitle_widget;
	m_subtitle_widget = 0;
	return 0;
}

PyObject *eServiceMP3::getCachedSubtitle()
{
	eDebug("eServiceMP3::getCachedSubtitle");
	Py_RETURN_NONE;
}

PyObject *eServiceMP3::getSubtitleList()
{
	eDebug("eServiceMP3::getSubtitleList");

	ePyObject l = PyList_New(0);
	int stream_count[sizeof(subtype_t)];
	for ( unsigned int i = 0; i < sizeof(subtype_t); i++ )
		stream_count[i] = 0;

	for (std::vector<subtitleStream>::iterator IterSubtitleStream(m_subtitleStreams.begin()); IterSubtitleStream != m_subtitleStreams.end(); ++IterSubtitleStream)
	{
		subtype_t type = IterSubtitleStream->type;
		ePyObject tuple = PyTuple_New(5);
		PyTuple_SET_ITEM(tuple, 0, PyInt_FromLong(2));
		PyTuple_SET_ITEM(tuple, 1, PyInt_FromLong(stream_count[type]));
		PyTuple_SET_ITEM(tuple, 2, PyInt_FromLong(int(type)));
		PyTuple_SET_ITEM(tuple, 3, PyInt_FromLong(0));
		PyTuple_SET_ITEM(tuple, 4, PyString_FromString((IterSubtitleStream->language_code).c_str()));
		PyList_Append(l, tuple);
		Py_DECREF(tuple);
		stream_count[type]++;
	}
	return l;
}

#else
#warning gstreamer not available, not building media player
#endif