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
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
|
/*
* device.c: xine-lib output device for the Video Disk Recorder
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: device.c,v 1.6 2006-07-21 22:47:12 phintuka Exp $
*
*/
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#include <vdr/config.h>
#include <vdr/thread.h>
#include <vdr/dvbspu.h>
#include <vdr/channels.h>
#include <vdr/skins.h>
#include <vdr/status.h>
#include <vdr/remote.h>
//#define XINELIBOUTPUT_DEBUG
//#define XINELIBOUTPUT_DEBUG_STDOUT
//#define XINELIBOUTPUT_DEBUG_STDERR
#include "logdefs.h"
#include "config.h"
#include "osd.h"
#ifdef ENABLE_SUSPEND
# include "tools/timer.h"
# include "tools/timer.c"
# ifdef SUSPEND_BY_PLAYER
# include "dummy_player.h"
# include "dummy_player.c"
# endif
# define ACTIVITY m_inactivityTimer = 0;
#else
# define ACTIVITY
#endif
#include "tools/listiter.h"
#include "tools/pes.h"
#include "frontend_local.h"
#include "frontend_svr.h"
#include "device.h"
#define STILLPICTURE_REPEAT_COUNT 3
//---------------------------- status monitor -------------------------------
#define DEBUG_SWITCHING_TIME
#ifdef DEBUG_SWITCHING_TIME
int64_t switchtimeOff = 0LL;
int64_t switchtimeOn = 0LL;
bool switchingIframe;
#endif
class cXinelibStatusMonitor : public cStatus
{
private:
cXinelibStatusMonitor();
cXinelibStatusMonitor(cXinelibStatusMonitor&);
public:
cXinelibStatusMonitor(cXinelibDevice& device, int cardIndex) :
m_Device(device), m_cardIndex(cardIndex) {};
protected:
virtual void ChannelSwitch(const cDevice *Device, int ChannelNumber);
#if VDRVERSNUM < 10338
virtual void Replaying(const cControl *Control, const char *Name);
#else
virtual void Replaying(const cControl *Control, const char *Name,
const char *FileName, bool On);
#endif
cXinelibDevice& m_Device;
int m_cardIndex;
};
void cXinelibStatusMonitor::ChannelSwitch(const cDevice *Device,
int ChannelNumber)
{
TRACEF("cXinelibStatusMonitor::ChannelSwitch");
if (ChannelNumber) {
if (Device->CardIndex() == m_cardIndex) {
#ifdef DEBUG_SWITCHING_TIME
switchtimeOn = cTimeMs::Now();
#endif
m_Device.SetTvMode(Channels.GetByNumber(ChannelNumber));
TRACE("cXinelibStatusMonitor: Set to TvMode");
}
} else {
if (Device->CardIndex() == m_cardIndex) {
#ifdef DEBUG_SWITCHING_TIME
switchtimeOff = cTimeMs::Now();
#endif
m_Device.StopOutput();
TRACE("cXinelibStatusMonitor: received stop");
}
}
}
#if VDRVERSNUM < 10338
void cXinelibStatusMonitor::Replaying(const cControl *Control,
const char *Name)
{
TRACEF("cXinelibStatusMonitor::Replaying");
if (Name != NULL) {
TRACE("cXinelibStatusMonitor: Replaying " << Name);
m_Device.SetReplayMode();
}
}
#else
void cXinelibStatusMonitor::Replaying(const cControl *Control,
const char *Name,
const char *FileName, bool On)
{
TRACEF("cXinelibStatusMonitor::Replaying");
if (On /*&& Name != NULL*/) {
TRACE("cXinelibStatusMonitor: Replaying " << Name << "("<<FileName")");
m_Device.SetReplayMode();
}
}
#endif
//----------------------------- device ----------------------------------------
// Singleton
cXinelibDevice* cXinelibDevice::m_pInstance = NULL;
cXinelibDevice& cXinelibDevice::Instance(void)
{
TRACEF("cXinelibDevice::Instance");
if (!m_pInstance) {
m_pInstance = new cXinelibDevice();
TRACE("cXinelibDevice::Instance(): create, cardindex = "
<< m_pInstance->CardIndex());
}
return *m_pInstance;
}
void cXinelibDevice::Dispose(void)
{
TRACEF("cXinelibDevice::Dispose");
delete m_pInstance;
m_pInstance = NULL;
}
//
// init and shutdown
//
cXinelibDevice::cXinelibDevice()
{
TRACEF("cXinelibDevice::cXinelibDevice");
m_statusMonitor = NULL;
m_spuDecoder = NULL;
m_local = NULL;
m_server = NULL;
if(*xc.local_frontend && strncmp(xc.local_frontend, "none", 4))
m_clients.Add(m_local = new cXinelibLocal(xc.local_frontend));
if(xc.remote_mode && xc.listen_port>0)
m_clients.Add(m_server = new cXinelibServer(xc.listen_port));
m_ac3Present = false;
m_spuPresent = false;
ClrAvailableDvdSpuTracks();
#ifdef ENABLE_SUSPEND
m_suspended = false;
ACTIVITY
#endif
m_liveMode = false;
m_TrickSpeed = -1;
m_SkipAudio = false;
m_PlayingFile = false;
m_StreamStart = true;
m_RadioStream = false;
m_AudioCount = 0;
}
cXinelibDevice::~cXinelibDevice()
{
TRACEF("cXinelibDevice::~cXinelibDevice");
StopDevice();
m_pInstance = NULL;
}
bool cXinelibDevice::StartDevice()
{
TRACEF("cXinelibDevice::StartDevice");
// if(dynamic_cast<cXinelibLocal*>(it))
if(m_local) {
m_local->Start();
while(!m_local->IsReady()) {
cCondWait::SleepMs(100);
if(m_local->IsFinished()) {
LOGMSG("cXinelibDevice::Start(): Local frontend init failed");
return false;
}
}
if(xc.force_primary_device)
ForcePrimaryDevice(true);
}
if(m_server) {
m_server->Start();
while(!m_server->IsReady()) {
cCondWait::SleepMs(100);
if(m_server->IsFinished()) {
LOGMSG("cXinelibDevice::Start(): Server init failed");
return false;
}
}
}
#ifdef ENABLE_SUSPEND
m_suspended = false;
ACTIVITY
#endif
m_statusMonitor = new cXinelibStatusMonitor(*this, CardIndex());
#ifdef ENABLE_SUSPEND
CreateTimerEvent(this, &cXinelibDevice::CheckInactivityTimer, 60*1000, false);
#endif
LOGDBG("cXinelibDevice::StartDevice(): Device started");
return true;
}
void cXinelibDevice::StopDevice(void)
{
TRACEF("cXinelibDevice::StopDevice");
LOGDBG("cXinelibDevice::StopDevice(): Stopping device ...");
#ifdef ENABLE_SUSPEND
CancelTimerEvents(this);
#endif
if(m_statusMonitor) {
delete m_statusMonitor;
m_statusMonitor = NULL;
}
if (m_spuDecoder) {
delete m_spuDecoder;
m_spuDecoder = NULL;
}
ForEach(m_clients, &cXinelibThread::SetLiveMode, false);
TrickSpeed(-1);
ForEach(m_clients, &cXinelibThread::Stop);
m_local = m_server = NULL;
m_clients.Clear();
}
void cXinelibDevice::MakePrimaryDevice(bool On)
{
TRACEF("cXinelibDevice::MakePrimaryDevice");
if(On)
new cXinelibOsdProvider(this);
}
void cXinelibDevice::ForcePrimaryDevice(bool On)
{
static int Original = 0;
static int Counter = 0;
TRACEF("cXinelibDevice::ForcePrimaryDevice");
if(On) {
Counter++;
if(xc.force_primary_device) {
if(cDevice::PrimaryDevice() && this != cDevice::PrimaryDevice()) {
/* TODO: may need to use vdr main thread for this */
Original = cDevice::PrimaryDevice()->DeviceNumber() + 1;
cControl::Shutdown();
LOGMSG("Forcing primary device, original index = %d", Original);
if(cOsd::IsOpen()) {
LOGMSG("Forcing primary device, old OSD still open !");
#if VDRVERSNUM >= 10400
xc.main_menu_mode = CloseOsd;
cRemote::CallPlugin("xineliboutput");
#endif
}
SetPrimaryDevice(DeviceNumber() + 1);
}
}
} else /* Off */ {
Counter--;
if(Counter<0)
LOGMSG("ForcePrimaryDevice: Internal error (ForcePrimaryDevice < 0)");
if(!Counter) {
if(Original) {
LOGMSG("Restoring original primary device %d", Original);
cControl::Shutdown();
if(cOsd::IsOpen()) {
LOGMSG("Restoring primary device, xineliboutput OSD still open !");
#if VDRVERSNUM >= 10400
xc.main_menu_mode = CloseOsd;
cRemote::CallPlugin("xineliboutput");
#endif
}
cDevice::SetPrimaryDevice(Original);
Original = 0;
}
}
}
}
//
// Configuration
//
void cXinelibDevice::ConfigureOSD(bool prescale_osd, bool unscaled_osd)
{
TRACEF("cXinelibDevice::ConfigureOSD");
ACTIVITY
if(m_local)
m_local->ConfigureOSD(prescale_osd, unscaled_osd);
if(m_server)
m_server->ConfigureOSD(prescale_osd, unscaled_osd);
}
void cXinelibDevice::ConfigurePostprocessing(const char *deinterlace_method,
int audio_delay,
int audio_compression,
const int *audio_equalizer,
int audio_surround)
{
TRACEF("cXinelibDevice::ConfigurePostprocessing");
ACTIVITY
if(m_local)
m_local->ConfigurePostprocessing(deinterlace_method, audio_delay,
audio_compression, audio_equalizer,
audio_surround);
if(m_server)
m_server->ConfigurePostprocessing(deinterlace_method, audio_delay,
audio_compression, audio_equalizer,
audio_surround);
}
void cXinelibDevice::ConfigurePostprocessing(const char *name, bool on,
const char *args)
{
TRACEF("cXinelibDevice::ConfigurePostprocessing");
ACTIVITY
if(m_local)
m_local->ConfigurePostprocessing(name, on, args);
if(m_server)
m_server->ConfigurePostprocessing(name, on, args);
}
void cXinelibDevice::ConfigureVideo(int hue, int saturation, int brightness, int contrast)
{
TRACEF("cXinelibDevice::ConfigureVideo");
ACTIVITY
if(m_local)
m_local->ConfigureVideo(hue, saturation, brightness, contrast);
if(m_server)
m_server->ConfigureVideo(hue, saturation, brightness, contrast);
}
void cXinelibDevice::ConfigureDecoder(int pes_buffers, int priority)
{
TRACEF("cXinelibDevice::ConfigureDecoder");
ACTIVITY
if(m_local)
m_local->ConfigureDecoder(pes_buffers, priority);
//if(m_server)
// m_server->ConfigureDecoder(pes_buffers, priority);
cXinelibOsdProvider::RefreshOsd();
}
void cXinelibDevice::ConfigureWindow(int fullscreen, int width, int height,
int modeswitch, const char *modeline,
int aspect, int scale_video,
int field_order)
{
TRACEF("cXinelibDevice::ConfigureWindow");
ACTIVITY
if((!*xc.local_frontend || !strncmp(xc.local_frontend, "none", 4)) && m_local) {
cXinelibThread *tmp = m_local;
m_clients.Del(tmp, false);
m_local = NULL;
cCondWait::SleepMs(5);
tmp->Stop();
cCondWait::SleepMs(5);
delete tmp;
if(xc.force_primary_device)
ForcePrimaryDevice(false);
}
if(m_local)
m_local->ConfigureWindow(fullscreen, width, height, modeswitch, modeline,
aspect, scale_video, field_order);
else if(*xc.local_frontend && strncmp(xc.local_frontend, "none", 4)) {
cXinelibThread *tmp = new cXinelibLocal(xc.local_frontend);
tmp->Start();
m_clients.Add(m_local = tmp);
cCondWait::SleepMs(25);
while(!m_local->IsReady() && !m_local->IsFinished())
cCondWait::SleepMs(25);
if(m_local->IsFinished()) {
m_local = NULL;
m_clients.Del(tmp, true);
Skins.QueueMessage(mtError, tr("Frontend initialization failed"), 10);
} else {
if(xc.force_primary_device)
ForcePrimaryDevice(true);
m_local->ConfigureWindow(fullscreen, width, height, modeswitch, modeline,
aspect, scale_video, field_order);
}
}
}
void cXinelibDevice::Listen(bool activate, int port)
{
TRACEF("cXinelibDevice::Listen");
ACTIVITY
if(activate && port>0) {
if(!m_server) {
cXinelibThread *tmp = new cXinelibServer(port);
tmp->Start();
m_clients.Add(m_server = tmp);
cCondWait::SleepMs(10);
while(!m_server->IsReady() && !m_server->IsFinished())
cCondWait::SleepMs(10);
if(m_server->IsFinished()) {
Skins.QueueMessage(mtError, tr("Server initialization failed"), 10);
m_server = NULL;
m_clients.Del(tmp, true);
}
} else {
if(! m_server->Listen(port))
Skins.QueueMessage(mtError, tr("Server initialization failed"), 10);
}
} else if( /*((!activate) || port<=0) && */ m_server) {
cXinelibThread *tmp = m_server;
m_clients.Del(tmp, false);
m_server = NULL;
cCondWait::SleepMs(5);
tmp->Stop();
cCondWait::SleepMs(5);
delete tmp;
}
}
//
// OSD
//
void cXinelibDevice::OsdCmd(void *cmd)
{
TRACEF("cXinelibDevice::OsdCmd");
ACTIVITY
if(m_server) // call first server, local frontend modifies contents of the message ...
m_server->OsdCmd(cmd);
if(m_local)
m_local->OsdCmd(cmd);
}
//
// Play mode control
//
void cXinelibDevice::StopOutput(void)
{
TRACEF("cXinelibDevice::StopOutput");
ACTIVITY
m_RadioStream = false;
m_AudioCount = 0;
ForEach(m_clients, &cXinelibThread::SetLiveMode, false);
Clear();
ForEach(m_clients, &cXinelibThread::QueueBlankDisplay);
ForEach(m_clients, &cXinelibThread::SetNoVideo, false);
}
void cXinelibDevice::SetTvMode(cChannel *Channel)
{
TRACEF("cXinelibDevice::SetTvMode");
m_RadioStream = false;
if (Channel && !Channel->Vpid() && (Channel->Apid(0) || Channel->Apid(1)))
m_RadioStream = true;
if(/*playMode==pmAudioOnly||*/playMode==pmAudioOnlyBlack)
m_RadioStream = true;
TRACE("cXinelibDevice::SetTvMode - isRadio = "<<m_RadioStream);
m_StreamStart = true;
m_liveMode = true;
ACTIVITY
m_TrickSpeed = -1;
m_SkipAudio = false;
m_AudioCount = 0;
Clear();
ForEach(m_clients, &cXinelibThread::SetNoVideo, m_RadioStream);
ForEach(m_clients, &cXinelibThread::SetLiveMode, true);
ForEach(m_clients, &cXinelibThread::QueueBlankDisplay);
ForEach(m_clients, &cXinelibThread::ResumeOutput);
}
void cXinelibDevice::SetReplayMode(void)
{
TRACEF("cXinelibDevice::SetReplayMode");
//m_RadioStream = false;
#if 1
//m_RadioStream = (playMode==pmAudioOnly || playMode==pmAudioOnlyBlack);
//TRACE("cXinelibDevice::SetReplayMode - isRadio = "<<m_RadioStream);
m_RadioStream = true; // first seen replayed video packet resets this
m_AudioCount = 15;
#endif
ForEach(m_clients, &cXinelibThread::SetLiveMode, false);
TrickSpeed(-1);
ForEach(m_clients, &cXinelibThread::Clear);
ForEach(m_clients, &cXinelibThread::SetNoVideo, false /*m_RadioStream*/);
if(m_RadioStream && !m_liveMode)
ForEach(m_clients, &cXinelibThread::BlankDisplay);
ForEach(m_clients, &cXinelibThread::ResumeOutput);
m_liveMode = false;
ACTIVITY
}
bool cXinelibDevice::SetPlayMode(ePlayMode PlayMode)
{
TRACEF("cXinelibDevice::SetPlayMode");
ACTIVITY
#ifdef XINELIBOUTPUT_DEBUG
switch (PlayMode) {
case pmNone:
TRACE("cXinelibDevice::SetPlayMode audio/video from decoder"); break;
case pmAudioVideo:
TRACE("cXinelibDevice::SetPlayMode audio/video from player"); break;
case pmVideoOnly:
TRACE("cXinelibDevice::SetPlayMode video from player, audio from decoder"); break;
case pmAudioOnly:
TRACE("cXinelibDevice::SetPlayMode audio from player, video from decoder"); break;
case pmAudioOnlyBlack:
TRACE("cXinelibDevice::SetPlayMode audio only from player, no video (black screen)"); break;
case pmExtern_THIS_SHOULD_BE_AVOIDED:
TRACE("cXinelibDevice::SetPlayMode this should be avoided"); break;
}
#endif
m_ac3Present = false;
m_spuPresent = false;
ClrAvailableDvdSpuTracks();
playMode = PlayMode;
TrickSpeed(-1);
if (playMode == pmAudioOnlyBlack /*|| playMode == pmNone*/) {
TRACE("pmAudioOnlyBlack --> BlankDisplay, NoVideo");
ForEach(m_clients, &cXinelibThread::BlankDisplay);
ForEach(m_clients, &cXinelibThread::SetNoVideo, true);
}
return true;
}
//
// Playback control
//
void cXinelibDevice::TrickSpeed(int Speed)
{
TRACEF("cXinelibDevice::TrickSpeed");
int RealSpeed = abs(Speed);
ACTIVITY
m_TrickSpeed = Speed;
m_TrickSpeedPts = 0;
ForEach(m_clients, &cXinelibThread::TrickSpeed, RealSpeed);
}
void cXinelibDevice::Clear(void)
{
TRACEF("cXinelibDevice::Clear");
m_StreamStart = 1;
TrickSpeed(-1);
ForEach(m_clients, &cXinelibThread::Clear);
}
void cXinelibDevice::Play(void)
{
TRACEF("cXinelibDevice::Play");
ACTIVITY
m_SkipAudio = false;
ForEach(m_clients, &cXinelibThread::SetLiveMode, false);
TrickSpeed(-1);
}
void cXinelibDevice::Freeze(void)
{
TRACEF("cXinelibDevice::Freeze");
ACTIVITY
TrickSpeed(0);
}
//
// Suspend device, inactivity timer
//
#ifdef ENABLE_SUSPEND
void cXinelibDevice::CheckInactivityTimer()
{
TRACEF("cXinelibDevice::CheckInactivityTimer");
Lock();
if(xc.inactivity_timer>0) {
int old_Timer = m_inactivityTimer++;
TRACE("cXinelibDevice::CheckInactivityTimer @" << time(NULL));
TRACE("cXinelibDevice::CheckInactivityTimer: m_inactivityTimer = " << m_inactivityTimer);
if(old_Timer<=xc.inactivity_timer && m_inactivityTimer>xc.inactivity_timer) {
SuspendedAction();
Unlock();
# ifndef SUSPEND_BY_PLAYER
CreateTimerEvent(this, &cXinelibDevice::SuspendedAction, 5000);
# endif
return;
}
}
Unlock();
}
bool cXinelibDevice::SuspendedAction(void)
{
TRACEF("cXinelibDevice::SuspendedAction");
LOCK_THREAD;
if(m_suspended || (xc.inactivity_timer>0 && m_inactivityTimer>xc.inactivity_timer)) {
if(m_liveMode) {
# ifndef SUSPEND_BY_PLAYER
TRACE("cXinelibDevice::SuspendedAction - DECODER SUSPENDED");
ForEach(m_clients, &cXinelibThread::SetLiveMode, false);
ForEach(m_clients, &cXinelibThread::LogoDisplay);
# else
if(!cDummyPlayerControl::IsOpen())
cControl::Launch(new cDummyPlayerControl);
# endif
}
return true;
}
# ifndef SUSPEND_BY_PLAYER
ForEach(m_clients, &cXinelibThread::SetLiveMode, m_liveMode);
# else
if(cDummyPlayerControl::IsOpen())
cDummyPlayerControl::Close();
# endif
return false;
}
void cXinelibDevice::Suspend(bool onoff)
{
TRACEF("cXinelibDevice::Suspend");
TRACE("cXinelibDevice::Suspend = " << onoff);
Lock();
ACTIVITY
if(!m_suspended && onoff) {
m_suspended = onoff;
SuspendedAction();
Unlock();
#ifndef SUSPEND_BY_PLAYER
CreateTimerEvent(this, &cXinelibDevice::SuspendedAction, 5000);
#endif
return;
}
m_suspended = onoff;
Unlock();
}
#endif // ENABLE_SUSPEND
//
// Playback of files and images
//
int cXinelibDevice::PlayFileCtrl(const char *Cmd)
{
TRACEF("cXinelibDevice::PlayFile");
int result = -1;
if(m_PlayingFile) {
if(m_server)
result = m_server->PlayFileCtrl(Cmd);
if(m_local)
result = m_local->PlayFileCtrl(Cmd);
}
return result;
}
bool cXinelibDevice::EndOfStreamReached(void)
{
return (((!m_server) || m_server->EndOfStreamReached()) &&
((!m_local) || m_local->EndOfStreamReached()));
}
bool cXinelibDevice::PlayFile(const char *FileName, int Position, bool LoopPlay)
{
TRACEF("cXinelibDevice::PlayFile");
TRACE("cXinelibDevice::PlayFile(\"" << FileName << "\")");
bool result = true;
if(FileName) {
if(!m_PlayingFile) {
m_PlayingFile = true;
StopOutput();
}
result = (((!m_server) ||
m_server->PlayFile(FileName, Position, LoopPlay)) &&
((!m_local) ||
m_local->PlayFile(FileName, Position, LoopPlay)));
} else if(/*!FileName &&*/m_PlayingFile) {
result = (((!m_server) || m_server->PlayFile(NULL, 0)) &&
((!m_local) || m_local->PlayFile(NULL, 0)));
if(!m_liveMode)
SetReplayMode();
else
SetTvMode(Channels.GetByNumber(cDevice::CurrentChannel()));
m_PlayingFile = false;
}
return result;
}
//
// Data stream handling
//
int cXinelibDevice::PlayAny(const uchar *buf, int length)
{
TRACEF("cXinelibDevice::PlayAny");
if(m_PlayingFile)
return length;
#ifdef ENABLE_SUSPEND
if(m_suspended || (xc.inactivity_timer > 0 &&
m_inactivityTimer > xc.inactivity_timer)) {
if(m_liveMode) {
return length;
}
}
#endif
bool isMpeg1 = false;
int len = pes_packet_len(buf, length, isMpeg1);
if(len>0 && len != length)
LOGMSG("cXinelibDevice::PlayAny: invalid data !");
// strip timestamps in trick speed modes
if(m_SkipAudio || m_TrickSpeed > 0) {
if(!m_SkipAudio) {
#ifdef TEST_TRICKSPEEDS
#warning Experimental trickspeed mode handling included !
// TODO: re-gen pts or signal pts+trickspeed for udp scheduler
bool Video = false, Audio = false;
uchar PictureType = NO_PICTURE;
int64_t pts = pes_extract_pts(buf, length, Audio, Video);
if(m_TrickSpeedPts <= 0LL) {
if(pts>0 && Video) {
m_TrickSpeedPts = pts;
if(ScanVideoPacket(buf, length, PictureType) > 0)
;
LOGMSG("TrickSpeed: VIDEO PTS %" PRId64 " (%s)", pts,
PictureTypeStr(PictureType));
}
} else if(Audio) {
LOGMSG("TrickSpeed: AUDIO PTS %" PRId64, pts);
} else if(pts > 0LL) {
if(ScanVideoPacket(buf, length, PictureType) > 0)
;
LOGMSG("TrickSpeed: VIDEO PTS DIFF %" PRId64 " (%s)", pts - m_TrickSpeedPts,
PictureTypeStr(PictureType));
//m_TrickSpeedPts += (int64_t)(40*90 * m_TrickSpeed); /* 40ms * 90kHz */
//pes_change_pts((uchar *)buf, length);
}
pes_strip_pts((uchar*)buf, length);
#else
pes_strip_pts((uchar*)buf, length);
#endif
} else {
pes_strip_pts((uchar*)buf, length);
}
}
if(m_local) {
length = (isMpeg1 ? m_local->Play_Mpeg1_PES(buf,length) :
m_local->Play_PES(buf,length));
}
if(m_server && length > 0) {
int length2 = isMpeg1 ? m_server->Play_Mpeg1_PES(buf, length) :
m_server->Play_PES(buf, length);
if(!m_local)
return length2;
}
return length;
}
int cXinelibDevice::PlayVideo(const uchar *buf, int length)
{
TRACEF("cXinelibDevice::PlayVideo");
if(m_RadioStream) {
m_RadioStream = false;
m_AudioCount = 0;
ForEach(m_clients, &cXinelibThread::SetNoVideo, m_RadioStream);
}
#ifdef START_IFRAME
// Start with I-frame if stream has video
if(m_StreamStart) {
// wait for first I-frame
uchar pictureType;
if( ScanVideoPacket(buf, length, /*0,*/pictureType) > 0 &&
pictureType == I_FRAME) {
m_StreamStart = false;
} else {
return length;
}
}
#else
m_StreamStart = false;
#endif
#ifdef DEBUG_SWITCHING_TIME
if(switchtimeOff && switchtimeOn) {
uchar pictureType;
if( ScanVideoPacket(buf, length, /*0,*/pictureType) > 0 &&
pictureType == I_FRAME) {
if(!switchingIframe) {
int64_t now = cTimeMs::Now();
switchingIframe = true;
LOGMSG("Channel switch: off -> on %" PRId64 " ms, "
"on -> 1. I-frame %" PRId64 " ms",
switchtimeOn-switchtimeOff, now-switchtimeOn);
} else {
int64_t now = cTimeMs::Now();
LOGMSG("Channel switch: on -> 2. I-frame %" PRId64 " ms, "
"Total %" PRId64 " ms",
now-switchtimeOn, now-switchtimeOff);
switchtimeOff = 0LL;
switchtimeOn = 0LL;
switchingIframe = false;
}
}
}
#endif
return PlayAny(buf, length);
}
void cXinelibDevice::StillPicture(const uchar *Data, int Length)
{
TRACEF("cXinelibDevice::StillPicture");
bool isPes = (!Data[0] && !Data[1] && Data[2] == 0x01 &&
(Data[3] & 0xF0) == 0xE0);
bool isMpeg1 = isPes && ((Data[6] & 0xC0) != 0x80);
int i;
if(m_PlayingFile)
return;
TRACE("cXinelibDevice::StillPicture: isPes = "<<isPes
<<", isMpeg1 = "<<isMpeg1);
ForEach(m_clients, &cXinelibThread::Clear);
ForEach(m_clients, &cXinelibThread::SetNoVideo, false);
ForEach(m_clients, &cXinelibThread::SetLiveMode, false);
ForEach(m_clients, &cXinelibThread::SetStillMode, true);
ForEach(m_clients, &cXinelibThread::TrickSpeed, 1);
m_TrickSpeed = -1; // to make Poll work ...
m_SkipAudio = 1; // enables audio and pts stripping
for(i=0; i<STILLPICTURE_REPEAT_COUNT; i++)
if(isMpeg1) {
ForEach(m_clients, &cXinelibThread::Play_Mpeg1_PES, Data, Length,
&mmin<int>, Length);
} else if(isPes) {
/*cDevice::*/PlayPes(Data, Length, m_SkipAudio);
} else {
ForEach(m_clients, &cXinelibThread::Play_Mpeg2_ES,
Data, Length, VIDEO_STREAM,
&mand<bool>, true);
}
ForEach(m_clients, &cXinelibThread::Play_Mpeg2_ES,
Data, 0, VIDEO_STREAM,
&mand<bool>, true);
m_TrickSpeed = 0;
m_SkipAudio = 0;
}
int cXinelibDevice::PlayAudio(const uchar *buf, int length, uchar Id)
{
TRACEF("cXinelibDevice::PlayAudio");
#ifdef SKIP_AC3_AUDIO
// skip AC3 audio
if(((unsigned char *)buf)[3] == PRIVATE_STREAM1) {
TRACE("cXinelibDevice::PlayVideo: PRIVATE_STREAM1 discarded");
return length;
}
#endif
// strip audio in trick speed modes
if(m_SkipAudio || m_TrickSpeed > 0)
return length;
if(m_RadioStream) {
if(m_AudioCount) {
m_AudioCount--;
if(!m_AudioCount)
ForEach(m_clients, &cXinelibThread::SetNoVideo, m_RadioStream);
}
}
return PlayAny(buf, length);
}
int cXinelibDevice::PlaySpu(const uchar *buf, int length, uchar Id)
{
TRACEF("cXinelibDevice::PlaySpu");
#ifdef SKIP_DVDSPU
return length;
#else
if(((unsigned char *)buf)[3] == PRIVATE_STREAM1) {
if(!m_spuPresent) {
TRACE("cXinelibDevice::PlaySpu first DVD SPU frame");
Skins.QueueMessage(mtInfo,"DVD SPU");
m_spuPresent = true;
ForEach(m_clients, &cXinelibThread::SpuStreamChanged, (int)Id);
}
if(Id != m_CurrentDvdSpuTrack)
return length;
}
printf("SPU %d\n", Id);
//
// TODO: channel must be selectable
//
return PlayAny(buf, length);
#endif
}
void cXinelibDevice::SetVolumeDevice(int Volume)
{
TRACEF("cXinelibDevice::SetVolumeDevice");
ACTIVITY
ForEach(m_clients, &cXinelibThread::SetVolume, Volume);
}
void cXinelibDevice::SetAudioTrackDevice(eTrackType Type)
{
TRACEF("cXinelibDevice::SetAudioTrackDevice");
LOGDBG("SetAudioTrackDevice(%d)", (int)Type);
#if 0
if(IS_DOLBY_TRACK(Type))
ForEach(m_clients, &cXinelibThread::AudioStreamChanged,
true, (int)(Type - ttDolbyFirst));
if(IS_AUDIO_TRACK(Type))
ForEach(m_clients, &cXinelibThread::AudioStreamChanged,
false, AUDIO_STREAM + (int)(Type - ttAudioFirst));
#endif
}
void cXinelibDevice::SetAudioChannelDevice(int AudioChannel)
{
TRACEF("cXinelibDevice::SetAudioChannelDevice");
LOGDBG("SetAudioChannelDevice(%d)", (int)AudioChannel);
m_AudioChannel = AudioChannel;
//
// TODO
//
// - stereo, left only, right only
//
}
void cXinelibDevice::SetDigitalAudioDevice(bool On)
{
TRACEF("cXinelibDevice::SetDigitalAudioDevice");
LOGDBG("SeDigitalAudioDevice(%s)", On ? "on" : "off");
eTrackType CurrTrack = GetCurrentAudioTrack();
if(m_LastTrack != CurrTrack) {
bool ac3 = IS_DOLBY_TRACK(CurrTrack);
int index = CurrTrack - (ac3 ? ttDolbyFirst : ttAudioFirst);
m_LastTrack = CurrTrack;
#if 0
LOGDBG(" Switching audio track -> %d (%02x:%s:%d)", m_LastTrack,
ac3 ? PRIVATE_STREAM1 : (index+AUDIO_STREAM),
ac3 ? "AC3" : "MPEG", index);
#endif
if(ac3)
ForEach(m_clients, &cXinelibThread::AudioStreamChanged, true,
(PRIVATE_STREAM1 << 8) | index);
else
ForEach(m_clients, &cXinelibThread::AudioStreamChanged, false,
(index + AUDIO_STREAM) << 8);
}
}
void cXinelibDevice::SetVideoFormat(bool VideoFormat16_9)
{
TRACEF("cXinelibDevice::SetVideoFormat");
LOGDBG("SetVideoFormat(%s)", VideoFormat16_9 ? "16:9" : "4:3");
ACTIVITY
cDevice::SetVideoFormat(VideoFormat16_9);
//
// TODO
//
#if 0
if(xc.aspect != ASPECT_AUTO &&
xc.aspect != ASPECT_DEFAULT) {
if(VideoFormat16_9)
xc.aspect = ASPECT_16_9;
else if(xc.aspect == ASPECT_16_9)
xc.aspect = ASPECT_4_3;
ConfigureDecoder(,,,xc.aspect,,,);
}
#endif
}
void cXinelibDevice::SetVideoDisplayFormat(eVideoDisplayFormat VideoDisplayFormat)
{
TRACEF("cXinelibDevice::SetVideoDisplayFormat");
LOGDBG("SetVideoDisplayFormat(%d)", VideoDisplayFormat);
cDevice::SetVideoDisplayFormat(VideoDisplayFormat);
//
// TODO
//
// - set normal, pan&scan, letterbox (only for 4:3?)
//
#if 0
if(xc.aspect != ASPECT_AUTO &&
xc.aspect != ASPECT_DEFAULT) {
switch(VideoDisplayFormat) {
case vdfPanAndScan:
xc.aspect = ASPECT_PAN_SCAN;
break;
case vdfLetterBox:
xc.aspect = ASPECT_4_3; /* borders are added automatically if needed */
break;
case vdfCenterCutOut:
xc.aspect = ASPECT_CENTER_CUT_OUT;
break;
}
ConfigureDecoder(,,,xc.aspect,,,);
}
#endif
}
eVideoSystem cXinelibDevice::GetVideoSystem(void)
{
TRACEF("cXinelibDevice::GetVideoSystem");
return cDevice::GetVideoSystem();
}
bool cXinelibDevice::Poll(cPoller &Poller, int TimeoutMs)
{
TRACEF("cXinelibDevice::Poll");
if(m_PlayingFile)
return true;
if(m_TrickSpeed == 0) {
cCondWait::SleepMs(TimeoutMs);
return Poller.Poll(0);
}
if(!m_local && !m_server) {
/* nothing to do... why do I exist ... ? */
cCondWait::SleepMs(TimeoutMs);
return Poller.Poll(0);
}
bool result = true;
if(m_local)
result = result && m_local->Poll(Poller, TimeoutMs);
if(m_server)
result = result && m_server->Poll(Poller, TimeoutMs);
return result /*|| Poller.Poll(0)*/;
}
bool cXinelibDevice::Flush(int TimeoutMs)
{
TRACEF("cXinelibDevice::Flush");
if(m_TrickSpeed == 0) {
ForEach(m_clients, &cXinelibThread::SetLiveMode, false);
TrickSpeed(-1);
}
bool r = ForEach(m_clients, &cXinelibThread::Flush, TimeoutMs,
&mand<bool>, true);
return r;
}
#if 0
//
// TODO
// - forward spu's directly to Xine
//
class cXineSpuDecoder : public cDvbSpuDecoder
{
private:
cSpuDecoder::eScaleMode scaleMode;
cXinelibDevice *m_Device;
public:
cXineSpuDecoder(cXinelibDevice *dev) {
scaleMode = eSpuNormal;
m_Device = dev;
}
virtual ~cXineSpuDecoder() {};
virtual int setTime(uint32_t pts) { return 1; }
cSpuDecoder::eScaleMode getScaleMode(void) { return scaleMode; }
virtual void setScaleMode(cSpuDecoder::eScaleMode ScaleMode)
{ scaleMode = ScaleMode; }
virtual void setPalette(uint32_t * pal) {};
virtual void setHighlight(uint16_t sx, uint16_t sy,
uint16_t ex, uint16_t ey,
uint32_t palette) {};
virtual void clearHighlight(void) {};
virtual void Empty(void) {};
virtual void Hide(void) {};
virtual void Draw(void) {};
virtual bool IsVisible(void) { return true; }
virtual void processSPU(uint32_t pts, uint8_t * buf,
bool AllowedShow = true);
};
#define CMD_SPU_MENU 0x00
#define CMD_SPU_SHOW 0x01
#define CMD_SPU_HIDE 0x02
#define CMD_SPU_SET_PALETTE 0x03
#define CMD_SPU_SET_ALPHA 0x04
#define CMD_SPU_SET_SIZE 0x05
#define CMD_SPU_SET_PXD_OFFSET 0x06
#define CMD_SPU_CHG_COLCON 0x07
#define CMD_SPU_EOF 0xff
#define spuU32(i) ((spu[i] << 8) + spu[i+1])
void cXineSpuDecoder::processSPU(uint32_t pts, uint8_t * buf, bool AllowedShow)
{
uchar buf2[65536+8] = {0, 0, 1, PRIVATE_STREAM1, 0, 0, 0x80, 0x80, 5};
int len = ((buf[0] << 8) | buf[1]);
if(len+8 < 0xffff) {
buf2[4] = ((len+8)<<8) & 0xFF;
buf2[5] = ((len+8)) & 0xFF;
} else {
// should be able to handle this (but only internally ...)
LOGMSG("cXineSpuDecoder: SPU bigger than PES packet !");
buf2[4] = 0xff;
buf2[5] = 0xff;
}
buf2[9] = ((pts>>29) & 0x0E) | 0x21;
buf2[10] = (pts>>22) & 0xFF;
buf2[11] = (pts>>14) & 0xFE;
buf2[12] = (pts>>7) & 0xFF;
buf2[13] = (pts<<1) & 0xFE;
memcpy(buf2+14, buf, len);
m_Device->PlaySpu(buf, len+14, 0);
}
#endif
cSpuDecoder *cXinelibDevice::GetSpuDecoder(void)
{
TRACEF("cXinelibDevice::GetSpuDecoder");
if (!m_spuDecoder && IsPrimaryDevice())
//
// TODO
//
// - use own derived SpuDecoder with special cXinelibOsd
// -> always visible
//
#if 1
m_spuDecoder = new cDvbSpuDecoder();
#else
#warning NON-FUNCTIONAL SPU DECODER SELECTED !!!
m_spuDecoder = new cXineSpuDecoder(this);
#endif
return m_spuDecoder;
}
int64_t cXinelibDevice::GetSTC(void)
{
TRACEF("cXinelibDevice::GetSTC");
if(m_local)
return m_local->GetSTC();
if(m_server)
return m_server->GetSTC();
return cDevice::GetSTC();
}
#if VDRVERSNUM < 10338
bool cXinelibDevice::GrabImage(const char *FileName, bool Jpeg,
int Quality, int SizeX, int SizeY)
{
uchar *Data = NULL;
int Size = 0;
TRACEF("cXinelibDevice::GrabImage");
ACTIVITY
if(m_local)
Data = m_local->GrabImage(Size, Jpeg, Quality, SizeX, SizeY);
if(!Data && m_server)
Data = m_local->GrabImage(Size, Jpeg, Quality, SizeX, SizeY);
if(Data) {
FILE *fp = fopen(FileName, "wb");
if(fp) {
fwrite(Data, Size, 1, fp);
fclose(fp);
free(Data);
return true;
}
LOGERR("Grab: Can't open %s", FileName);
free(Data);
} else {
LOGMSG("Grab to %s failed", FileName);
}
return false;
}
#else
uchar *cXinelibDevice::GrabImage(int &Size, bool Jpeg,
int Quality, int SizeX, int SizeY)
{
TRACEF("cXinelibDevice::GrabImage");
ACTIVITY
if(m_local)
return m_local->GrabImage(Size, Jpeg, Quality, SizeX, SizeY);
if(m_server)
return m_local->GrabImage(Size, Jpeg, Quality, SizeX, SizeY);
return NULL;
}
#endif
#if 1
// override cDevice to get DVD SPUs
int cXinelibDevice::PlayPesPacket(const uchar *Data, int Length,
bool VideoOnly)
{
#ifndef SKIP_DVDSPU
switch (Data[3]) {
case 0xBD: { // private stream 1
int PayloadOffset = Data[8] + 9;
uchar SubStreamId = Data[PayloadOffset];
uchar SubStreamType = SubStreamId & 0xF0;
uchar SubStreamIndex = SubStreamId & 0x1F;
switch (SubStreamType) {
case 0x20: // SPU
case 0x30: // SPU
SetAvailableDvdSpuTrack(SubStreamIndex);
return PlaySpu(Data, Length, SubStreamIndex);
break;
default:
;
}
}
default:
;
}
#endif
return cDevice::PlayPesPacket(Data, Length, VideoOnly);
}
bool cXinelibDevice::SetCurrentDvdSpuTrack(int Type)
{
if(Type == -1 ||
(Type >= 0 &&
Type < 64 &&
m_DvdSpuTrack[Type])) {
m_CurrentDvdSpuTrack = Type;
ForEach(m_clients, &cXinelibThread::SpuStreamChanged, Type);
return true;
}
return false;
}
void cXinelibDevice::ClrAvailableDvdSpuTracks(void)
{
m_DvdSpuTracks = 0;
for(int i=0; i<64; i++)
m_DvdSpuTrack[i] = false;
if(m_CurrentDvdSpuTrack >=0 ) {
m_CurrentDvdSpuTrack = -1;
ForEach(m_clients, &cXinelibThread::SpuStreamChanged, -1);
}
}
bool cXinelibDevice::SetAvailableDvdSpuTrack(int Type)
{
if(Type >= 0 && Type < 64 &&
! m_DvdSpuTrack[Type]) {
m_DvdSpuTrack[Type] = true;
m_DvdSpuTracks++;
return true;
}
return false;
}
bool cXinelibDevice::HasDvdSpuTrack(int Type) const
{
if(Type >= 0 && Type < 64 &&
m_DvdSpuTrack[Type])
return true;
return false;
}
#endif
|