forked from neutrino-mp/libstb-hal
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
3553 lines (1923 loc) · 84.6 KB
/
ChangeLog
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
2018-01-12 GetAway1 <[email protected]>
ShowPicture: return boolean expression
2018-04-27 Thilo Graf <[email protected]>
update to version 1.0.4-mpx
2018-04-27 GetAway <[email protected]>
fix possible segfault
fix HD51 mix-up letterbox<->panscan
2018-04-20 max_10 <[email protected]>
fix-compiler-warnings
2018-04-20 samsamsam <[email protected]>
Fix typo
Fix typo
Add buffering for SH4
2018-04-12 max_10 <[email protected]>
bugfix-last-commits
2018-04-12 samsamsam <[email protected]>
Fix wrong playback file name
Add possibility to provide moov atom data as separate file.
This will allow playback of MP4 files which are under download and
moov atom is located at the end of file.
2018-04-10 Thilo Graf <[email protected]>
generic-pc/dmx.cpp: fix possible compile error
Unused variable
2018-04-10 TangoCash <[email protected]>
fix generic compile
2018-04-10 max_10 <[email protected]>
libeplayer3-arm: insert original blank lines from exteplayer3.git, for better merge
2018-04-10 samsamsam <[email protected]>
Improve STOP command in the buffering mode
Linux DVB output - workaround for BUG? in the DVB drivers
Replace the AAC Main object type to the AAC LC in the ADTS header - workaround for no audio on some TS'streams
Linux DVB output for STBs based on Broadcom - replace active pooling by select (ready to write)
Add buffering for Linux DVB outputs
Do not wait in the FFMPEG thread.
2018-03-23 max_10 <[email protected]>
all: clean up pwrmngr header file
all: clean up cDemux headers
armbox: fix video policy again
Conflicts:
libarmbox/video.cpp
2018-03-22 Thilo Graf <[email protected]>
libeplayer3-arm/container/container_ffmpeg.c: add missing code parts
fix some pick errors
libeplayer3-arm/playback/playback.c: add missing parts for backward play
2018-03-22 max_10 <[email protected]>
container_ffmpeg: fix Write from incompatible pointer type
2018-03-22 samsamsam <[email protected]>
Set discard flag to all not active streams, do not process packets from discarded streams
Conflicts:
libeplayer3-arm/container/container_ffmpeg.c
2018-03-22 Jacek Jendrzej <[email protected]>
fix commit 06f9a1b694c1806a20d18b85b9affde146f0c9bb
2018-03-14 Thilo Graf <[email protected]>
libarmbox/video.cpp: fix possible compile error
error: unused variable 'r' [-Werror=unused-variable]
2018-03-13 samsamsam <[email protected]>
h264 writer - Revert not intended test change
h264 writer - do not inject prive codec data if the Sequence Parameter Set (SPS) and the Picture Parameter Set (PPS) are available in the bitstreamThis should fix playback of stream http://www.djing.com/tv/live.m3u8
2018-03-13 svenhoefer <[email protected]>
- introduce caps.has_button_timer
2018-03-13 BPanther <[email protected]>
missing brightness added for ufs922, hdbox, octagon1008, mini2, av7500
2018-03-13 max_10 <[email protected]>
libeplayer3-arm: cleanup types, use Context_t in commands
libeplayer3-arm: reduce compiler warnings
2018-02-26 Jacek Jendrzej <[email protected]>
add screenshot for hd51
2018-02-11 Jacek Jendrzej <[email protected]>
supplement to b232a8f225056a80b4d732d4a7db3d01a050f288, fix segfault with only audio stream
2018-02-10 Jacek Jendrzej <[email protected]>
remove isContainerRunning, this break next file play aufter eof stop
fix OUTPUT_PLAY error handling
2018-02-09 max_10 <[email protected]>
libeplayer3-arm: reduce compiler warnings
2018-02-02 Frankenstone <[email protected]>
arm different tuner authorization (thx DboxOldie)
2018-01-21 Thilo Graf <[email protected]>
update to version 1.0.3-mpx
libarmbox/video.cpp: add missing lines in setBlank()
Fix lost lines in pick 'add armbox'
libarmbox/hardware_caps.c: add missing init for caps.display_can_deepstandby
libarmbox/playback_gst.cpp: minor format changes
libarmbox/playback_gst.cpp: small format changes
2018-01-21 Jacek Jendrzej <[email protected]>
Revert "return false in decoder have no time"
This reverts commit 6f006f1ce9026cccddfe87a88fb3ebaa1f6a9e98.
return false in decoder have no time
fix null list
fix get play position
2018-01-21 Frankenstone <[email protected]>
libeplayer3-arm: fix fast forward (thx DboxOldie)
2018-01-21 max_10 <[email protected]>
Revert "libeplayer3: switch off the teletext sub"
This reverts commit 96bd1c5c9f631ceb272dd4afb4667e8a976c8620.
libeplayer3-arm: Code formatting
libeplayer3-arm: eliminate some warnings
adding SLOWMOTION, FASTBACKWARD and FASTFORWARD are not working properly yet.
2018-01-21 TangoCash <[email protected]>
fix last commit
generic gestreamer align to armbox
2018-01-21 max_10 <[email protected]>
test
Revert "Revert "libeplayer3: switch off the teletext sub""
This reverts commit a2fc1d51ee2bd5d66263aecdbf2936cf26e91f17.
2018-01-21 Jacek Jendrzej <[email protected]>
Revert "return false in decoder have no time"
This reverts commit 6f006f1ce9026cccddfe87a88fb3ebaa1f6a9e98.
return false in decoder have no time
2018-01-21 max_10 <[email protected]>
libarmbox: fix resolution icon in infoviewer
armbox: Cosmetics replace spaces with tabs and delete unnecessary tabs
2018-01-20 max_10 <[email protected]>
armbox eplayer: fix playing files with subtitles
Conflicts:
libeplayer3-arm/manager/subtitle.c
additional format fixes, solved conflicts and clean up
2018-01-20 max_10 <[email protected]>
libeplayer3-arm: audio.c delete newline
generic-pc: switch to ffmpeg 3.0 API
libarmbox/video: Workaround Channel Change No Black Picture when Show Picture was active.
libeplayer3-arm: fixes segfault on internet streams (thx DboxOldie)
2018-01-20 Frankenstone <[email protected]>
libeplayer3-arm: fix fast forward (thx DboxOldie)
Conflicts:
libeplayer3-arm/playback/playback.c
2018-01-11 TangoCash <[email protected]>
armbox eplayer: fix init jump
2018-01-11 max_10 <[email protected]>
fix ci arm auth (thx DboxOldie)
2018-01-11 svenhoefer <[email protected]>
- fix build for generic-pc
2018-01-11 max_10 <[email protected]>
libeplayer3-arm: update Makefile.am
libeplayer3-arm: eliminate some warnings
libeplayer3-arm: Code formatting
2018-01-07 Frankenstone <[email protected]>
fix ci arm hardware (thx DboxOldie)
2018-01-07 max_10 <[email protected]>
armbox eplayer: remove writeReverseData (unused)
2018-01-03 Jacek Jendrzej <[email protected]>
remove double AV_CODEC_ID_EAC3
2018-01-03 max_10 <[email protected]>
armbox eplayer: noprobe for ts (thx DboxOldie)
armbox eplayer: increase wait time (thx DboxOldie)
armbox eplayer: eplayer3 Binary adaptation to the changed manager list (thx DboxOldie)
2018-01-03 TangoCash <[email protected]>
armbox eplayer: fix playing files with subtitles
2018-01-02 svenhoefer <[email protected]>
- add some missing members for ARM_HARDWARE; mostly dummy functions
2017-12-28 max_10 <[email protected]>
libeplayer3-arm: Code formatting
libarmbox: Code formatting playback_libeplayer3
armbox eplayer: add eplayer3 bin
Code formatting
2017-12-28 TangoCash <[email protected]>
eplayer armbox: fix webtv (thx dbo)
2017-12-21 Thilo Graf <[email protected]>
update version 1.0.2-mpx
eplayer beta
2017-12-21 TangoCash <[email protected]>
armbox eplayer: reactivate audio, subtitle and chapters
armbox eplayer: add chapter.c
armbox eplayer: add chapters
armbox eplayer: align to last commits
armbox eplayer: use other tracklist
armbox eplayer: add metadata
armbox eplayer: small fix TTX
2017-12-21 max_10 <[email protected]>
libeplayer3-arm: fix playback (thx DboxOldie)
fix video policy
2017-12-21 TangoCash <[email protected]>
fix close files
2017-12-21 svenhoefer <[email protected]>
- Makefile: disable libstb_hal_test stuff; this completes 188f10dd8644c30f64b04c99447c165193fb9790
2017-12-21 TangoCash <[email protected]>
generic gestreamer align to armbox
gstreamer: increase seek accuracy
2017-12-18 svenhoefer <[email protected]>
- generic-pc/audio: fix segfault in getAudioInfo() function
2017-12-18 TangoCash <[email protected]>
fix compile
2017-12-18 max_10 <[email protected]>
add libeplayer3-arm test
acinclude: some more minor format changes
libeplayer3: code format
2017-12-04 max_10 <[email protected]>
armbox: fix write value hex
ax needs hex
2017-11-23 Jacek Jendrzej <[email protected]>
fix max apids
disable test
2017-11-22 Jacek Jendrzej <[email protected]>
write m2v direct to device
2017-11-21 TangoCash <[email protected]>
align gststreamer findallpids to eplayers logic
porting av converter to sh4
2017-11-17 Jacek Jendrzej <[email protected]>
fix possible memleak
convert pix fmt
fix logic and possible memleak
2017-11-16 Jacek Jendrzej <[email protected]>
fix last commit
check alloc AVFormatContext
fix close fp
convert jpg to m2v with libavcodec, need --enable-demuxer=image2
2017-11-16 TangoCash <[email protected]>
cleanup
cleanup
2017-11-14 TangoCash <[email protected]>
fix 0648 caid issue (dbo!!!)
2017-11-14 Jacek Jendrzej <[email protected]>
sync with oher repo
fix merge error
fix last commit
remove double keys
2017-11-14 vanhofen <[email protected]>
- add display_has_statusline member
- generic-pc: add our proven keymap to glfb
2017-11-13 Jacek Jendrzej <[email protected]>
try to fix possible race condition
2017-11-12 Jacek Jendrzej <[email protected]>
init mpegts
Revert "return false in decoder have no time"
This reverts commit 6f006f1ce9026cccddfe87a88fb3ebaa1f6a9e98.
2017-11-11 Jacek Jendrzej <[email protected]>
fix last commit, broken check logic
check if tag is gst list
return false in decoder have no time
try to fix freeze with subtitle file , use gst_element_get_state only if need
2017-11-11 TangoCash <[email protected]>
fix missing close fd (thx dbo)
2017-11-10 Jacek Jendrzej <[email protected]>
move gchar * sourceName = gst_object_get_name(source);
check m_stream_tags if not NULL
add check if children not NULL
fix memleak, init and compil
2017-11-10 TangoCash <[email protected]>
gstreamer playback: fix possible race condition
gstreamer playback: fix possible segfault
2017-11-08 TangoCash <[email protected]>
gstreamer playback: remove subtitles until fully supported
gstreamer playback: fix possible segfaults
CI: fix some caid issues (thx dboxoldie)
2017-11-06 Thilo Graf <[email protected]>
Merge branch 'master' of https://github.com/TangoCash/libstb-hal-cst-next.git into mpx
update version 1.0.1
Conflicts:
include/hardware_caps.h
libarmbox/hardware_caps.c
libduckbox/hardware_caps.c
libspark/hardware_caps.c
2017-11-06 max_10 <[email protected]>
ci: armbox fix cpu load
2017-11-05 TangoCash <[email protected]>
fix compile #2
fix compile
2017-11-05 max_10 <[email protected]>
armbox: add dvbci (thx DboxOldie)
2017-11-05 TangoCash <[email protected]>
armbox: tryfix cec
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
ci: let stbhal handle close
2017-11-04 TangoCash <[email protected]>
gstreamer playback, cleanup, fix real pid handling
2017-11-03 TangoCash <[email protected]>
gstreamer playback, avoid segfault
gstreamer playback, fix possible segfault #2
gstreamer playback, fix possible segfault
update generic gstreamer
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
align
2017-11-02 Thilo Graf <[email protected]>
version 1.0.0-mpx
hd51 support
adjust .gitignore for untracked files
add default files
add update script
2017-11-02 svenhoefer <[email protected]>
- rename can_set_display_brightness => display_can_set_brightness
- add display_can_deepstandby member
2017-11-02 Jacek Jendrzej <[email protected]>
fix null list
fix get play position
2017-11-01 TangoCash <[email protected]>
gstreamer: reset pids at start
gstreamer playback - get real apid from TS
2017-10-31 TangoCash <[email protected]>
armbox: fullscreen osd ;)
2017-10-30 TangoCash <[email protected]>
gstreamer: fix lang detection
2017-10-29 TangoCash <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
2017-10-28 max_10 <[email protected]>
libdvbci: log cosmetic
2017-10-28 TangoCash <[email protected]>
armbox: fix get blank
fixup gstreamer tags
armbox: gstreamer tags support
2017-10-27 TangoCash <[email protected]>
fix coverart
armbox: fix audio playback #2
armbox: fix audio playback
armbox: add video/audio pid
2017-10-24 TangoCash <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
2017-10-24 Jacek Jendrzej <[email protected]>
fix get play position
fix null list
2017-10-24 max_10 <[email protected]>
Merge remote-tracking branch 'tangocash/master'
eDVBCISlot forgotten
2017-10-23 TangoCash <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
2017-10-23 max_10 <[email protected]>
rename tSlot -> eDVBCISlot
2017-10-23 TangoCash <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
2017-10-23 max_10 <[email protected]>
modification sendDateTime
rename tSlot -> eDVBCISlot
2017-10-23 Jacek Jendrzej <[email protected]>
fix uri for http
2017-10-22 TangoCash <[email protected]>
partly revert last commit
armbox: fix gst playback
2017-10-21 TangoCash <[email protected]>
armbox: gstreamer - fix init jump, cleanup
2017-10-20 Jacek Jendrzej <[email protected]>
rmove unused code
2017-10-19 TangoCash <[email protected]>
fix typo
armbox: improve cec
armbox: tryfix cec
2017-10-18 TangoCash <[email protected]>
armbox: tryfix lost of video device after playing something with gst
2017-10-18 max_10 <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
ca_ci: in some situations missing scambled flag (thx DboxOldie)
2017-10-18 TangoCash <[email protected]>
ca_ci: in some situations missing scambled flag (thx dbo)
ca_ci: in some situations missing scambled flag (thx dbo)
2017-10-17 TangoCash <[email protected]>
armbox: fix still image
armbox: fix devices
armbox add missing header file
armbox: start implementing cec support
2017-10-15 TangoCash <[email protected]>
partly revert last commit
armbox: let gst playback handle devices
armbox: adding header and user_agent to gst playback
armbox: gst-playback reformat code
armbox: fix gst seeking
fix last commit
fix last commit
fix gst playback
2017-10-11 TangoCash <[email protected]>
armbox: enable DTS passthrough
2017-10-08 TangoCash <[email protected]>
Revert "libeplayer3: switch off the teletext sub"
This reverts commit 1356d700be203d3107f32dafdf2c22e675898f09.
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
Merge pull request #3 from MaxWiesel/master
:)
2017-10-08 max_10 <[email protected]>
armbox: modification GetVideoSystem
2017-10-07 max_10 <[email protected]>
Merge remote-tracking branch 'tangocash/master'
2017-10-07 TangoCash <[email protected]>
HMDI ac3 passthrough/downmix
armbox: remove audiomixers
2017-10-07 max_10 <[email protected]>
armbox: delete parts of sh4 code
armbox: remove dead code from cDemux
armbox: remove videodecoder hack from dmx destructor
armbox: use proc_tools
2017-10-07 Stefan Seyfried <[email protected]>
spark: remove dead code from cDemux
spark: remove videodecoder hack from dmx destructor
spark: fix race condition in cDemux
cDemux destructor was racing with Read() which did lead to all
sorts of nasty crashes because after poll returned, the dmx object
could be gone and its memory replaced with totally different things.
2017-10-07 max_10 <[email protected]>
fix cherry-pick
2017-10-07 Stefan Seyfried <[email protected]>
libspark: implement cVideo::GetVideoSystemFormatName()
libspark: implement cVideo::GetVideoSystem()
2017-10-07 max_10 <[email protected]>
Revert "implement GetVideoSystem"
This reverts commit 23afdef65c2442eeabb4760c274372d86fd065ed.
Revert "align videomodes"
This reverts commit b66a63553b50b3b0acb79898854e54ab63c7ab21.
Revert "align videomodes"
This reverts commit 7f9a31d29c903df9913ec5d656c65be424867a17.
2017-10-07 Stefan Seyfried <[email protected]>
spark/video: add missing O_CLOEXEC to memory fd
spark/video: implicitly do StopPicture() on CVideo::Start()
This seems to be what the coolstream code does.
TODO: look out for side effects (in radio mode etc...)
spark: use proc_tools
2017-10-07 max_10 <[email protected]>
add video_cs.h header to reduce number of #ifdefs needed
2017-10-07 Stefan Seyfried <[email protected]>
spark: remove dead code from cDemux
spark: remove videodecoder hack from dmx destructor
spark: fix race condition in cDemux
cDemux destructor was racing with Read() which did lead to all
sorts of nasty crashes because after poll returned, the dmx object
could be gone and its memory replaced with totally different things.
2017-10-07 max_10 <[email protected]>
fix cherry-pick
acinclude: remove unused TUXBOX_APPS_* stuff
acinclude: remove unused boxtypes
2017-10-07 Stefan Seyfried <[email protected]>
libspark: implement cVideo::GetVideoSystemFormatName()
libspark: implement cVideo::GetVideoSystem()
2017-10-07 max_10 <[email protected]>
Revert "implement GetVideoSystem"
This reverts commit 23afdef65c2442eeabb4760c274372d86fd065ed.
Revert "align videomodes"
This reverts commit b66a63553b50b3b0acb79898854e54ab63c7ab21.
Revert "align videomodes"
This reverts commit 7f9a31d29c903df9913ec5d656c65be424867a17.
2017-10-07 Stefan Seyfried <[email protected]>
spark/video: add missing O_CLOEXEC to memory fd
spark/video: implicitly do StopPicture() on CVideo::Start()
This seems to be what the coolstream code does.
TODO: look out for side effects (in radio mode etc...)
spark: use proc_tools
2017-10-06 max_10 <[email protected]>
Merge remote-tracking branch 'tangocash/master'
2017-10-06 TangoCash <[email protected]>
armbox: make open/close device public
2017-10-05 max_10 <[email protected]>
Merge remote-tracking branch 'tangocash/master'
2017-10-05 TangoCash <[email protected]>
re-arrange gstreamer code
fix audio/video devices
fix armbox realname
2017-10-01 TangoCash <[email protected]>
adding 4k video settings for armbox
fix generic compile
adding 4k video settings for armbox
2017-09-26 max_10 <[email protected]>
libarmbox: adjustments
libarmbox: del libass LDFLAGS
2017-09-25 max_10 <[email protected]>
libarmbox delete unnecessary code
2017-09-19 max_10 <[email protected]>
Merge remote-tracking branch 'tangocash/master'
duplicate entry removed
libeplayer3: switch off the teletext sub
2017-09-18 TangoCash <[email protected]>
fix armbox vfd
2017-09-17 max_10 <[email protected]>
Merge remote-tracking branch 'tangocash/master'
2017-09-17 TangoCash <[email protected]>
armbox: align to demuxes
armbox: fix PIG
fix gst flags
2017-09-15 max_10 <[email protected]>
cs_api.h: add missing cs_get_chip_type() dummy
add video_cs.h header to reduce number of #ifdefs needed
2017-09-14 max_10 <[email protected]>
acinclude: add arm boxtypes
acinclude: remove unused TUXBOX_APPS_* stuff
acinclude: remove unused boxtypes
2017-09-12 TangoCash <[email protected]>
fix armbox frontpanel
adding armbox
Merge branch 'master' of github.com:TangoCash/libstb-hal-cst-next
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
2017-09-01 max_10 <[email protected]>
avoid segfault when ci handler uses the cs_messenger until neutrino has not register it (thx DboxOldie)
2017-07-28 TangoCash <[email protected]>
modify ac3flags
2017-07-28 Jacek Jendrzej <[email protected]>
fix compile
generic-pc/video.cpp dont set output format with negative height size
2017-07-28 TangoCash <[email protected]>
small fix for gstreamer 1.0 playback
small fix for gstreamer 1.0 playback
adding initial support for gstreamer 1.0
2017-07-15 Jacek Jendrzej <[email protected]>
fix compile
generic-pc/video.cpp dont set output format with negative height size
2017-06-20 TangoCash <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
fix indents and brackets
2017-06-20 j00zek <[email protected]>
correct info for dsi87
update tuners info
2017-06-18 TangoCash <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
2017-06-17 TangoCash <[email protected]>
re-enabled Display Brightness (thx dbo)
2017-06-09 TangoCash <[email protected]>
Merge branch 'master' of github.com:Duckbox-Developers/libstb-hal-cst-next
align videomodes
align videomodes
implement GetVideoSystem
2017-05-31 TangoCash <[email protected]>
small fix for gstreamer 1.0 playback
small fix for gstreamer 1.0 playback
adding initial support for gstreamer 1.0
2017-05-04 TangoCash <[email protected]>
-playback: fix compiling generic pc
2017-04-04 TangoCash <[email protected]>
fix generic compile
2017-03-10 TangoCash <[email protected]>
Merge pull request #2 from Duckbox-Developers/master
fix generic
fix generic
Merge pull request #1 from Duckbox-Developers/master
adopt hw_caps
adopt hw_caps
2016-11-18 TangoCash <[email protected]>
modify ac3flags
2016-10-31 max <[email protected]>
Merge pull request #5 from OpenAR-P/duckbox
Enable aac writer and use resmpling for some AAC streams thx Taapat …
2016-10-31 schpuntik <[email protected]>
Enable aac writer and use resmpling for some AAC streams thx Taapat and technik