forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
23880 lines (19002 loc) · 902 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
------------------------------------------------------------------------
r6214 | zorglub | 2003-12-31 13:50:11 +0100 (Wed, 31 Dec 2003) | 2 lines
Changed paths:
M /trunk/po/fr.po
M /trunk/po/pt_BR.po
Updated french and Brazilian Portuguese translations
------------------------------------------------------------------------
r6215 | rocky | 2004-01-01 14:51:38 +0100 (Thu, 01 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/codec/ogt/render.c
Add RV16 rendering. With transparancy, but still only Y plane is done.
------------------------------------------------------------------------
r6216 | rocky | 2004-01-01 14:55:17 +0100 (Thu, 01 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/codec/ogt/cvd.c
M /trunk/modules/codec/ogt/ogt.c
Remove a magic number.
------------------------------------------------------------------------
r6217 | zorglub | 2004-01-01 15:33:15 +0100 (Thu, 01 Jan 2004) | 2 lines
Changed paths:
M /trunk/po/pt_BR.po
Updated brazilian portuguese translation
------------------------------------------------------------------------
r6218 | rocky | 2004-01-01 16:56:56 +0100 (Thu, 01 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/codec/ogt/render.c
RenderRV16 handles scaling. But seems to slow to render subtitles.
------------------------------------------------------------------------
r6219 | zorglub | 2004-01-01 18:41:25 +0100 (Thu, 01 Jan 2004) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/configure.ac
M /trunk/extras/MacOSX/Resources/English.lproj/InfoPlist.strings
M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
M /trunk/po/de.po
M /trunk/po/fr.po
* Updated german and french translations
* Updated version number and Changelog
------------------------------------------------------------------------
r6220 | rocky | 2004-01-02 05:44:34 +0100 (Fri, 02 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/codec/ogt/render.c
Attempt to make easier to understand and easier to complete.
------------------------------------------------------------------------
r6221 | gbazin | 2004-01-02 14:30:17 +0100 (Fri, 02 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/gui/wxwindows/preferences_widgets.cpp
* modules/gui/wxwindows/preferences_widgets.cpp: use wxL2U() (Thanks Anil).
------------------------------------------------------------------------
r6222 | sam | 2004-01-02 14:48:37 +0100 (Fri, 02 Jan 2004) | 2 lines
Changed paths:
A /trunk/doc/ChangeLog-2003
M /trunk/doc/Makefile.am
M /trunk/doc/fortunes.txt
* doc/ChangeLog-2003: Happy new year!
------------------------------------------------------------------------
r6223 | gbazin | 2004-01-02 23:17:57 +0100 (Fri, 02 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/video_output/directx/directx.c
M /trunk/modules/video_output/directx/events.c
M /trunk/modules/video_output/directx/vout.h
* modules/video_output/directx/*: fixed overlay on 24bpp displays.
------------------------------------------------------------------------
r6224 | zorglub | 2004-01-03 00:22:37 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/configure.ac
My name is Bond
VLC Media Player 0.7.0 Bond
------------------------------------------------------------------------
r6225 | gbazin | 2004-01-03 01:23:04 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/demux/mpeg/mpga.c
M /trunk/src/input/stream.c
* modules/demux/mpeg/mpga.c, src/input/stream.c: fixed mem leaks.
------------------------------------------------------------------------
r6226 | gbazin | 2004-01-03 01:39:07 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/stream_out/transcode.c
* modules/stream_out/transcode.c: added YV12 raw video fourcc (chroma planes will likely be inverted though).
------------------------------------------------------------------------
r6227 | gbazin | 2004-01-03 11:55:07 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/gui/wxwindows/interface.cpp
* modules/gui/wxwindows/interface.cpp: fixed and re-enabled aspect-ratio combobox in the extended gui.
------------------------------------------------------------------------
r6228 | gbazin | 2004-01-03 13:02:12 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/po/POTFILES.in
M /trunk/po/de.po
M /trunk/po/en_GB.po
M /trunk/po/es.po
M /trunk/po/fr.po
M /trunk/po/hu.po
M /trunk/po/it.po
M /trunk/po/ja.po
M /trunk/po/nl.po
M /trunk/po/no.po
M /trunk/po/pl.po
M /trunk/po/pt_BR.po
M /trunk/po/ru.po
M /trunk/po/sv.po
M /trunk/po/vlc.pot
* po/*, ChangeLog: preparing for the 0.7.0 release.
------------------------------------------------------------------------
r6229 | rocky | 2004-01-03 13:54:56 +0100 (Sat, 03 Jan 2004) | 4 lines
Changed paths:
M /trunk/modules/codec/ogt/common.c
M /trunk/modules/codec/ogt/common.h
M /trunk/modules/codec/ogt/cvd.c
M /trunk/modules/codec/ogt/cvd_parse.c
M /trunk/modules/codec/ogt/ogt.c
M /trunk/modules/codec/ogt/ogt_parse.c
M /trunk/modules/codec/ogt/subtitle.h
ogt.c cvd.c, subtitle.h: move common debug string help into subtitle.h
{cvd,ogt}_parse.c, common.c, subtitle.h: add ability to dump subtitles via
libpng.
------------------------------------------------------------------------
r6230 | zorglub | 2004-01-03 14:13:07 +0100 (Sat, 03 Jan 2004) | 2 lines
Changed paths:
M /trunk/po/de.po
Updated german translation
------------------------------------------------------------------------
r6231 | gbazin | 2004-01-03 14:18:30 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/po/de.po
M /trunk/po/en_GB.po
M /trunk/po/es.po
M /trunk/po/fr.po
M /trunk/po/hu.po
M /trunk/po/it.po
M /trunk/po/ja.po
M /trunk/po/nl.po
M /trunk/po/no.po
M /trunk/po/pl.po
M /trunk/po/pt_BR.po
M /trunk/po/ru.po
M /trunk/po/sv.po
M /trunk/po/vlc.pot
* po/*: another ./toolbox --update-po before 0.7.0 because some commits where done.
------------------------------------------------------------------------
r6232 | rocky | 2004-01-03 18:19:41 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/codec/ogt/render.c
RenderI420 now handles U and V planes. (Probably completely
accurately, though.)
------------------------------------------------------------------------
r6233 | rocky | 2004-01-03 18:48:38 +0100 (Sat, 03 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
Spelling - probably cut and pated from somewhere else.
------------------------------------------------------------------------
r6234 | rocky | 2004-01-03 18:49:35 +0100 (Sat, 03 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/access/http.c
Spelling - See I told you it was cut and pasted from somehwere!
------------------------------------------------------------------------
r6235 | rocky | 2004-01-03 18:52:15 +0100 (Sat, 03 Jan 2004) | 6 lines
Changed paths:
M /trunk/modules/demux/mpeg/Modules.am
A /trunk/modules/demux/mpeg/private.h
M /trunk/modules/demux/mpeg/ps.c
M /trunk/modules/demux/mpeg/system.c
M /trunk/modules/demux/mpeg/ts.c
Ignore timestamp in PACK header in a private stream. This is to get
around a WinSubMux bug in multiplexing CVD and SVCD subtitles.
(Patch probably could be made more precise.)
To do this we've got to save the timestamp in the header.
------------------------------------------------------------------------
r6236 | rocky | 2004-01-03 19:40:01 +0100 (Sat, 03 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/access/v4l/v4l.c
Spelling.
------------------------------------------------------------------------
r6237 | rocky | 2004-01-03 19:41:36 +0100 (Sat, 03 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
M /trunk/modules/access/http.c
M /trunk/modules/access/v4l/v4l.c
Sorry to be so pedantic - grammar (and spelling)
------------------------------------------------------------------------
r6238 | rocky | 2004-01-03 21:43:24 +0100 (Sat, 03 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/access/vcdx/access.c
M /trunk/modules/access/vcdx/vcdplayer.h
Put track information in Media Info. If we have SVD information, show
audio tracks and add that to the audio-selection window.
------------------------------------------------------------------------
r6239 | asmax | 2004-01-04 00:31:34 +0100 (Sun, 04 Jan 2004) | 19 lines
Changed paths:
A /trunk/modules/gui/skins2
A /trunk/modules/gui/skins2/Modules.am
A /trunk/modules/gui/skins2/commands
A /trunk/modules/gui/skins2/commands/async_queue.cpp
A /trunk/modules/gui/skins2/commands/async_queue.hpp
A /trunk/modules/gui/skins2/commands/cmd_add_item.cpp
A /trunk/modules/gui/skins2/commands/cmd_add_item.hpp
A /trunk/modules/gui/skins2/commands/cmd_change_skin.cpp
A /trunk/modules/gui/skins2/commands/cmd_change_skin.hpp
A /trunk/modules/gui/skins2/commands/cmd_dialogs.hpp
A /trunk/modules/gui/skins2/commands/cmd_dummy.hpp
A /trunk/modules/gui/skins2/commands/cmd_generic.hpp
A /trunk/modules/gui/skins2/commands/cmd_input.cpp
A /trunk/modules/gui/skins2/commands/cmd_input.hpp
A /trunk/modules/gui/skins2/commands/cmd_layout.cpp
A /trunk/modules/gui/skins2/commands/cmd_layout.hpp
A /trunk/modules/gui/skins2/commands/cmd_notify_playlist.cpp
A /trunk/modules/gui/skins2/commands/cmd_notify_playlist.hpp
A /trunk/modules/gui/skins2/commands/cmd_on_top.cpp
A /trunk/modules/gui/skins2/commands/cmd_on_top.hpp
A /trunk/modules/gui/skins2/commands/cmd_playlist.cpp
A /trunk/modules/gui/skins2/commands/cmd_playlist.hpp
A /trunk/modules/gui/skins2/commands/cmd_quit.cpp
A /trunk/modules/gui/skins2/commands/cmd_quit.hpp
A /trunk/modules/gui/skins2/commands/cmd_resize.cpp
A /trunk/modules/gui/skins2/commands/cmd_resize.hpp
A /trunk/modules/gui/skins2/commands/cmd_show_window.hpp
A /trunk/modules/gui/skins2/controls
A /trunk/modules/gui/skins2/controls/ctrl_button.cpp
A /trunk/modules/gui/skins2/controls/ctrl_button.hpp
A /trunk/modules/gui/skins2/controls/ctrl_checkbox.cpp
A /trunk/modules/gui/skins2/controls/ctrl_checkbox.hpp
A /trunk/modules/gui/skins2/controls/ctrl_flat.hpp
A /trunk/modules/gui/skins2/controls/ctrl_generic.cpp
A /trunk/modules/gui/skins2/controls/ctrl_generic.hpp
A /trunk/modules/gui/skins2/controls/ctrl_image.cpp
A /trunk/modules/gui/skins2/controls/ctrl_image.hpp
A /trunk/modules/gui/skins2/controls/ctrl_list.cpp
A /trunk/modules/gui/skins2/controls/ctrl_list.hpp
A /trunk/modules/gui/skins2/controls/ctrl_move.cpp
A /trunk/modules/gui/skins2/controls/ctrl_move.hpp
A /trunk/modules/gui/skins2/controls/ctrl_radialslider.cpp
A /trunk/modules/gui/skins2/controls/ctrl_radialslider.hpp
A /trunk/modules/gui/skins2/controls/ctrl_resize.cpp
A /trunk/modules/gui/skins2/controls/ctrl_resize.hpp
A /trunk/modules/gui/skins2/controls/ctrl_slider.cpp
A /trunk/modules/gui/skins2/controls/ctrl_slider.hpp
A /trunk/modules/gui/skins2/controls/ctrl_text.cpp
A /trunk/modules/gui/skins2/controls/ctrl_text.hpp
A /trunk/modules/gui/skins2/events
A /trunk/modules/gui/skins2/events/evt_enter.hpp
A /trunk/modules/gui/skins2/events/evt_focus.hpp
A /trunk/modules/gui/skins2/events/evt_generic.hpp
A /trunk/modules/gui/skins2/events/evt_input.cpp
A /trunk/modules/gui/skins2/events/evt_input.hpp
A /trunk/modules/gui/skins2/events/evt_key.cpp
A /trunk/modules/gui/skins2/events/evt_key.hpp
A /trunk/modules/gui/skins2/events/evt_leave.hpp
A /trunk/modules/gui/skins2/events/evt_motion.hpp
A /trunk/modules/gui/skins2/events/evt_mouse.cpp
A /trunk/modules/gui/skins2/events/evt_mouse.hpp
A /trunk/modules/gui/skins2/events/evt_refresh.hpp
A /trunk/modules/gui/skins2/events/evt_scroll.cpp
A /trunk/modules/gui/skins2/events/evt_scroll.hpp
A /trunk/modules/gui/skins2/events/evt_special.cpp
A /trunk/modules/gui/skins2/events/evt_special.hpp
A /trunk/modules/gui/skins2/parser
A /trunk/modules/gui/skins2/parser/builder.cpp
A /trunk/modules/gui/skins2/parser/builder.hpp
A /trunk/modules/gui/skins2/parser/builder_data.hpp
A /trunk/modules/gui/skins2/parser/flex.c
A /trunk/modules/gui/skins2/parser/gen.sh
A /trunk/modules/gui/skins2/parser/gen_builder.py
A /trunk/modules/gui/skins2/parser/interpreter.cpp
A /trunk/modules/gui/skins2/parser/interpreter.hpp
A /trunk/modules/gui/skins2/parser/parser_context.hpp
A /trunk/modules/gui/skins2/parser/skin.act
A /trunk/modules/gui/skins2/parser/skin.dtd
A /trunk/modules/gui/skins2/parser/skin.h
A /trunk/modules/gui/skins2/parser/skin.l
A /trunk/modules/gui/skins2/parser/wrappers.cpp
A /trunk/modules/gui/skins2/parser/wrappers.h
A /trunk/modules/gui/skins2/src
A /trunk/modules/gui/skins2/src/anchor.cpp
A /trunk/modules/gui/skins2/src/anchor.hpp
A /trunk/modules/gui/skins2/src/dialogs.cpp
A /trunk/modules/gui/skins2/src/dialogs.hpp
A /trunk/modules/gui/skins2/src/ft2_bitmap.cpp
A /trunk/modules/gui/skins2/src/ft2_bitmap.hpp
A /trunk/modules/gui/skins2/src/ft2_font.cpp
A /trunk/modules/gui/skins2/src/ft2_font.hpp
A /trunk/modules/gui/skins2/src/generic_bitmap.hpp
A /trunk/modules/gui/skins2/src/generic_font.hpp
A /trunk/modules/gui/skins2/src/generic_layout.cpp
A /trunk/modules/gui/skins2/src/generic_layout.hpp
A /trunk/modules/gui/skins2/src/generic_window.cpp
A /trunk/modules/gui/skins2/src/generic_window.hpp
A /trunk/modules/gui/skins2/src/logger.cpp
A /trunk/modules/gui/skins2/src/logger.hpp
A /trunk/modules/gui/skins2/src/os_factory.cpp
A /trunk/modules/gui/skins2/src/os_factory.hpp
A /trunk/modules/gui/skins2/src/os_graphics.hpp
A /trunk/modules/gui/skins2/src/os_loop.hpp
A /trunk/modules/gui/skins2/src/os_timer.hpp
A /trunk/modules/gui/skins2/src/os_tooltip.hpp
A /trunk/modules/gui/skins2/src/os_window.hpp
A /trunk/modules/gui/skins2/src/png_bitmap.cpp
A /trunk/modules/gui/skins2/src/png_bitmap.hpp
A /trunk/modules/gui/skins2/src/scaled_bitmap.cpp
A /trunk/modules/gui/skins2/src/scaled_bitmap.hpp
A /trunk/modules/gui/skins2/src/skin_common.hpp
A /trunk/modules/gui/skins2/src/skin_main.cpp
A /trunk/modules/gui/skins2/src/theme.cpp
A /trunk/modules/gui/skins2/src/theme.hpp
A /trunk/modules/gui/skins2/src/theme_loader.cpp
A /trunk/modules/gui/skins2/src/theme_loader.hpp
A /trunk/modules/gui/skins2/src/tooltip.cpp
A /trunk/modules/gui/skins2/src/tooltip.hpp
A /trunk/modules/gui/skins2/src/var_manager.cpp
A /trunk/modules/gui/skins2/src/var_manager.hpp
A /trunk/modules/gui/skins2/src/vlcproc.cpp
A /trunk/modules/gui/skins2/src/vlcproc.hpp
A /trunk/modules/gui/skins2/src/window_manager.cpp
A /trunk/modules/gui/skins2/src/window_manager.hpp
A /trunk/modules/gui/skins2/utils
A /trunk/modules/gui/skins2/utils/bezier.cpp
A /trunk/modules/gui/skins2/utils/bezier.hpp
A /trunk/modules/gui/skins2/utils/fsm.cpp
A /trunk/modules/gui/skins2/utils/fsm.hpp
A /trunk/modules/gui/skins2/utils/observer.hpp
A /trunk/modules/gui/skins2/utils/pointer.hpp
A /trunk/modules/gui/skins2/utils/position.cpp
A /trunk/modules/gui/skins2/utils/position.hpp
A /trunk/modules/gui/skins2/utils/ustring.cpp
A /trunk/modules/gui/skins2/utils/ustring.hpp
A /trunk/modules/gui/skins2/utils/var_bool.cpp
A /trunk/modules/gui/skins2/utils/var_bool.hpp
A /trunk/modules/gui/skins2/utils/var_list.cpp
A /trunk/modules/gui/skins2/utils/var_list.hpp
A /trunk/modules/gui/skins2/utils/var_percent.cpp
A /trunk/modules/gui/skins2/utils/var_percent.hpp
A /trunk/modules/gui/skins2/utils/var_text.cpp
A /trunk/modules/gui/skins2/utils/var_text.hpp
A /trunk/modules/gui/skins2/utils/variable.hpp
A /trunk/modules/gui/skins2/vars
A /trunk/modules/gui/skins2/vars/playlist.cpp
A /trunk/modules/gui/skins2/vars/playlist.hpp
A /trunk/modules/gui/skins2/vars/time.cpp
A /trunk/modules/gui/skins2/vars/time.hpp
A /trunk/modules/gui/skins2/vars/vlcvars.cpp
A /trunk/modules/gui/skins2/vars/vlcvars.hpp
A /trunk/modules/gui/skins2/vars/volume.cpp
A /trunk/modules/gui/skins2/vars/volume.hpp
A /trunk/modules/gui/skins2/win32
A /trunk/modules/gui/skins2/win32/win32_dragdrop.cpp
A /trunk/modules/gui/skins2/win32/win32_dragdrop.hpp
A /trunk/modules/gui/skins2/win32/win32_factory.cpp
A /trunk/modules/gui/skins2/win32/win32_factory.hpp
A /trunk/modules/gui/skins2/win32/win32_graphics.cpp
A /trunk/modules/gui/skins2/win32/win32_graphics.hpp
A /trunk/modules/gui/skins2/win32/win32_loop.cpp
A /trunk/modules/gui/skins2/win32/win32_loop.hpp
A /trunk/modules/gui/skins2/win32/win32_timer.cpp
A /trunk/modules/gui/skins2/win32/win32_timer.hpp
A /trunk/modules/gui/skins2/win32/win32_tooltip.cpp
A /trunk/modules/gui/skins2/win32/win32_tooltip.hpp
A /trunk/modules/gui/skins2/win32/win32_window.cpp
A /trunk/modules/gui/skins2/win32/win32_window.hpp
A /trunk/modules/gui/skins2/x11
A /trunk/modules/gui/skins2/x11/x11_display.cpp
A /trunk/modules/gui/skins2/x11/x11_display.hpp
A /trunk/modules/gui/skins2/x11/x11_dragdrop.cpp
A /trunk/modules/gui/skins2/x11/x11_dragdrop.hpp
A /trunk/modules/gui/skins2/x11/x11_factory.cpp
A /trunk/modules/gui/skins2/x11/x11_factory.hpp
A /trunk/modules/gui/skins2/x11/x11_graphics.cpp
A /trunk/modules/gui/skins2/x11/x11_graphics.hpp
A /trunk/modules/gui/skins2/x11/x11_loop.cpp
A /trunk/modules/gui/skins2/x11/x11_loop.hpp
A /trunk/modules/gui/skins2/x11/x11_timer.cpp
A /trunk/modules/gui/skins2/x11/x11_timer.hpp
A /trunk/modules/gui/skins2/x11/x11_tooltip.cpp
A /trunk/modules/gui/skins2/x11/x11_tooltip.hpp
A /trunk/modules/gui/skins2/x11/x11_window.cpp
A /trunk/modules/gui/skins2/x11/x11_window.hpp
* all: brand new skins interface ( still _experimental_) for x11 and
win32, by ipkiss and myself...
Among the features:
- framework rewritten from scratch, heavily based on design patterns
=> new controls can be (hopefully) created more easily, portability
to other OS is better, and the interface is less dependant from
the vlc core
- new concept of "layout", to provide a window with several different
views (as in winamp3 skins)
- controls can now be placed at a relative position to the edges of
a window, which allow controls and layouts to be resizable (e.g
for the playlist window)
- Use of libpng and libfreetype2 for better portability between x11 and
win32 => ttf fonts and antialiasing
- New DTD for the xml theme ( *it will probably change again* )
- Very very beginning of scripting in the xml file
- And many things I miss
- And probably many bugs ;)
------------------------------------------------------------------------
r6240 | asmax | 2004-01-04 00:37:08 +0100 (Sun, 04 Jan 2004) | 2 lines
Changed paths:
M /trunk/configure.ac
* configure.ac: added the skins2 module (_should_ work ;)
------------------------------------------------------------------------
r6241 | asmax | 2004-01-04 00:54:51 +0100 (Sun, 04 Jan 2004) | 11 lines
Changed paths:
A /trunk/modules/gui/skins2/theme
A /trunk/modules/gui/skins2/theme/FreeSansBold.ttf
A /trunk/modules/gui/skins2/theme/add_item.png
A /trunk/modules/gui/skins2/theme/add_item_onclick.png
A /trunk/modules/gui/skins2/theme/body.png
A /trunk/modules/gui/skins2/theme/close.png
A /trunk/modules/gui/skins2/theme/close_mouseover.png
A /trunk/modules/gui/skins2/theme/close_onclick.png
A /trunk/modules/gui/skins2/theme/delete_item.png
A /trunk/modules/gui/skins2/theme/delete_item_onclick.png
A /trunk/modules/gui/skins2/theme/disabled.png
A /trunk/modules/gui/skins2/theme/fast.png
A /trunk/modules/gui/skins2/theme/fast_disabled.png
A /trunk/modules/gui/skins2/theme/fast_onclick.png
A /trunk/modules/gui/skins2/theme/next.png
A /trunk/modules/gui/skins2/theme/next_disabled.png
A /trunk/modules/gui/skins2/theme/next_onclick.png
A /trunk/modules/gui/skins2/theme/pause.png
A /trunk/modules/gui/skins2/theme/pause_onclick.png
A /trunk/modules/gui/skins2/theme/play.png
A /trunk/modules/gui/skins2/theme/play_onclick.png
A /trunk/modules/gui/skins2/theme/playlist.png
A /trunk/modules/gui/skins2/theme/playlist_body1.png
A /trunk/modules/gui/skins2/theme/playlist_body2.png
A /trunk/modules/gui/skins2/theme/playlist_body3.png
A /trunk/modules/gui/skins2/theme/playlist_body4.png
A /trunk/modules/gui/skins2/theme/playlist_body6.png
A /trunk/modules/gui/skins2/theme/playlist_body7.png
A /trunk/modules/gui/skins2/theme/playlist_body8.png
A /trunk/modules/gui/skins2/theme/playlist_body9.png
A /trunk/modules/gui/skins2/theme/playlist_button.png
A /trunk/modules/gui/skins2/theme/playlist_button2.png
A /trunk/modules/gui/skins2/theme/playlist_button_onclick.png
A /trunk/modules/gui/skins2/theme/playlist_button_onclick2.png
A /trunk/modules/gui/skins2/theme/preferences.png
A /trunk/modules/gui/skins2/theme/preferences_onclick.png
A /trunk/modules/gui/skins2/theme/previous.png
A /trunk/modules/gui/skins2/theme/previous_disabled.png
A /trunk/modules/gui/skins2/theme/previous_onclick.png
A /trunk/modules/gui/skins2/theme/reduce.png
A /trunk/modules/gui/skins2/theme/reduce_disabled.png
A /trunk/modules/gui/skins2/theme/reduce_onclick.png
A /trunk/modules/gui/skins2/theme/resize.png
A /trunk/modules/gui/skins2/theme/rev.png
A /trunk/modules/gui/skins2/theme/rev_disabled.png
A /trunk/modules/gui/skins2/theme/rev_onclick.png
A /trunk/modules/gui/skins2/theme/slider.png
A /trunk/modules/gui/skins2/theme/slider2.png
A /trunk/modules/gui/skins2/theme/slider_onclick.png
A /trunk/modules/gui/skins2/theme/slider_playlist.png
A /trunk/modules/gui/skins2/theme/slider_volume.png
A /trunk/modules/gui/skins2/theme/slider_volume_onclick.png
A /trunk/modules/gui/skins2/theme/slow.png
A /trunk/modules/gui/skins2/theme/slow_disabled.png
A /trunk/modules/gui/skins2/theme/slow_onclick.png
A /trunk/modules/gui/skins2/theme/sort.png
A /trunk/modules/gui/skins2/theme/sort_onclick.png
A /trunk/modules/gui/skins2/theme/stop.png
A /trunk/modules/gui/skins2/theme/stop_disabled.png
A /trunk/modules/gui/skins2/theme/stop_onclick.png
A /trunk/modules/gui/skins2/theme/theme.xml
A /trunk/modules/gui/skins2/theme/volume.png
* all: sample theme for skins2 interface
Warning: by default the interface will try to open the skin from the
vlc share, which is probably an old skin, so the load will fail, and
afterwards a wxwindows dialog allows to load another skin.
BUT there seems to be a bug which make the interface crash
when it tries to load this second skin... workarounds are:
- deleting the old theme
- setting the "skin_last2=/path/to/xml/file" in the [Skins] section
of vlcrc
- solving the bug ;)
------------------------------------------------------------------------
r6242 | asmax | 2004-01-04 01:06:10 +0100 (Sun, 04 Jan 2004) | 2 lines
Changed paths:
A /trunk/modules/gui/skins2/parser/skin.c
* first forgotten file...
------------------------------------------------------------------------
r6243 | asmax | 2004-01-04 01:17:10 +0100 (Sun, 04 Jan 2004) | 2 lines
Changed paths:
A /trunk/modules/gui/skins2/theme/FreeSans.ttf
* the sample theme should work better with that...
------------------------------------------------------------------------
r6244 | sam | 2004-01-04 05:50:24 +0100 (Sun, 04 Jan 2004) | 7 lines
Changed paths:
M /trunk/include/codecs.h
M /trunk/modules/video_output/caca.c
* modules/video_output/caca.c:
+ Ported to libcaca 0.6.
+ Removed dithering configuration variable; use the CACA_DITHERING
environment variable instead, until the API is polished.
* include/codecs.h:
+ Minor coding style fix.
------------------------------------------------------------------------
r6245 | sam | 2004-01-04 05:53:07 +0100 (Sun, 04 Jan 2004) | 7 lines
Changed paths:
M /trunk/debian/changelog
M /trunk/debian/control
M /trunk/debian/rules
M /trunk/doc/fortunes.txt
* debian/control:
+ Build-depend on fixed linux-kernel-headers packages.
* debian/rules:
+ Look for faad in extras/faad2, not extras/faad.
+ Enable postprocessing in the ffmpeg configuration.
+ Activated libcaca video output.
------------------------------------------------------------------------
r6246 | rocky | 2004-01-04 05:56:21 +0100 (Sun, 04 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/codec/ogt/cvd.c
M /trunk/modules/codec/ogt/cvd.h
M /trunk/modules/codec/ogt/cvd_parse.c
M /trunk/modules/codec/ogt/subtitle.h
Was putting 1 byte of garbage for each packet.
------------------------------------------------------------------------
r6247 | fenrir | 2004-01-04 15:28:11 +0100 (Sun, 04 Jan 2004) | 3 lines
Changed paths:
A /trunk/modules/demux/demux2.c
A /trunk/modules/demux/nsv.c
* demux2: a dummy demuxer to adapt to new demuxer API (experimental, and
will be removed later).
------------------------------------------------------------------------
r6248 | fenrir | 2004-01-04 15:35:12 +0100 (Sun, 04 Jan 2004) | 3 lines
Changed paths:
A /trunk/modules/demux/real.c
* real.c: begin of a real demuxer (using new API). Can't work yet as it
needs modification to ffmpeg decoder that I need to finish.
------------------------------------------------------------------------
r6249 | zorglub | 2004-01-04 16:24:27 +0100 (Sun, 04 Jan 2004) | 2 lines
Changed paths:
M /trunk/configure.ac
Do not link twice zlib
------------------------------------------------------------------------
r6250 | fenrir | 2004-01-04 16:32:13 +0100 (Sun, 04 Jan 2004) | 5 lines
Changed paths:
M /trunk/configure.ac
M /trunk/modules/codec/ffmpeg/encoder.c
M /trunk/modules/demux/Modules.am
M /trunk/modules/demux/demux2.c
M /trunk/src/input/es_out.c
* encoder.c: corrected required LIBAVCODEC_BUILD
* es_out.c: ES_OUT_SET_PCR works now with microsecond.
* configure.ac, Modules.am: enable demux2, nsv, real.
* demux2.c: increased priority.
------------------------------------------------------------------------
r6251 | rocky | 2004-01-04 17:25:00 +0100 (Sun, 04 Jan 2004) | 3 lines
Changed paths:
A /trunk/doc/subtitles
A /trunk/doc/subtitles/cvd-subtitles.txt
A /trunk/doc/subtitles/svcd-ogt-subtitles.txt
A start for what little public documentation there is for CVD and OGT
subtitles.
------------------------------------------------------------------------
r6252 | rocky | 2004-01-04 17:51:59 +0100 (Sun, 04 Jan 2004) | 4 lines
Changed paths:
M /trunk/configure.ac
M /trunk/doc/subtitles/cvd-subtitles.txt
A /trunk/modules/codec/ogt/.cvsignore
A /trunk/modules/codec/ogt/Modules.am
M /trunk/modules/codec/ogt/cvd.c
M /trunk/modules/codec/ogt/cvd_parse.c
A /trunk/modules/codec/ogt/write_png.c
A /trunk/modules/codec/ogt/write_png.h
Add OGT and CVD subtitle demuxers.
write_png: might be made into a module and moved elsewhere
cvd*: went over documentation a little bit.
------------------------------------------------------------------------
r6253 | fenrir | 2004-01-04 18:35:02 +0100 (Sun, 04 Jan 2004) | 6 lines
Changed paths:
M /trunk/modules/demux/avi/avi.c
M /trunk/modules/demux/avi/avi.h
* avi: May fix #1545
(From mplayer:
"count blocks by rounded-up chunksizes instead of chunks -
we need full emulation of dshow avi demuxer bugs :(
fixes silly nandub-style a-v delaying in avi with vbr mp3..." )
------------------------------------------------------------------------
r6254 | sam | 2004-01-04 19:18:45 +0100 (Sun, 04 Jan 2004) | 3 lines
Changed paths:
M /trunk/toolbox
* toolbox:
+ Minor fixes to the woody packages.
------------------------------------------------------------------------
r6255 | kuehne | 2004-01-04 22:44:44 +0100 (Sun, 04 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/intf.h
M /trunk/modules/gui/macosx/intf.m
Fixed a small bug which prevented the translation of a string.
------------------------------------------------------------------------
r6256 | gbazin | 2004-01-04 23:03:20 +0100 (Sun, 04 Jan 2004) | 3 lines
Changed paths:
M /trunk/configure.ac
M /trunk/extras/MacOSX/Resources/English.lproj/InfoPlist.strings
M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
* ALL: bumping version number to 0.7.1-cvs.
------------------------------------------------------------------------
r6257 | gbazin | 2004-01-04 23:22:10 +0100 (Sun, 04 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/codec/ogt/cvd_parse.c
M /trunk/modules/codec/ogt/ogt_parse.c
M /trunk/modules/codec/ogt/subtitle.h
* modules/codec/ogt/*: win32 compilation fixes.
------------------------------------------------------------------------
r6258 | gbazin | 2004-01-04 23:38:49 +0100 (Sun, 04 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/gui/skins2/vars/playlist.cpp
M /trunk/modules/gui/skins2/vars/playlist.hpp
* modules/gui/skins2/vars/playlist.*: win32 compilation fix (not sure it is the right one).
------------------------------------------------------------------------
r6259 | fenrir | 2004-01-05 04:19:00 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/demux/nsv.c
* nsv: clean up, added seek support.
------------------------------------------------------------------------
r6260 | jlj | 2004-01-05 13:24:51 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/AUTHORS
* ./AUTHORS: updated my country entry.
------------------------------------------------------------------------
r6261 | jlj | 2004-01-05 13:37:52 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/modules/demux/mp4/Modules.am
A /trunk/modules/demux/mp4/drms.c
A /trunk/modules/demux/mp4/drms.h
A /trunk/modules/demux/mp4/drmstables.h
M /trunk/modules/demux/mp4/libmp4.c
M /trunk/modules/demux/mp4/libmp4.h
M /trunk/modules/demux/mp4/mp4.c
M /trunk/modules/demux/mp4/mp4.h
* ./modules/demux/mp4: DRMS support.
------------------------------------------------------------------------
r6262 | zorglub | 2004-01-05 13:59:43 +0100 (Mon, 05 Jan 2004) | 33 lines
Changed paths:
M /trunk/Makefile.am
M /trunk/include/vlc_common.h
M /trunk/include/vlc_playlist.h
M /trunk/src/input/input.c
M /trunk/src/libvlc.c
M /trunk/src/playlist/group.c
A /trunk/src/playlist/info.c
A /trunk/src/playlist/item-ext.c
M /trunk/src/playlist/item.c
M /trunk/src/playlist/loadsave.c
M /trunk/src/playlist/playlist.c
M /trunk/src/playlist/sort.c
* Makefile.am : Added src/playlist/item-ext.c and src/playlist/info.c
* src/playlist/item.c
src/playlist/info.c
src/playlist/item-ext.c
src/playlist/group.c
src/playlist/sort.c
src/playlist/loadsave.c
include/vlc_playlist.h
- New playlist_info structures and accessors
It works pretty like the old input_info (with categories)
It provides modularity to the playlist
- Removed ppsz_options and i_options from playlist_item
(we use the special category Options)
- Added a unique id to each playlist_item to be able to track the
items accross playlist reorders
- Simplified adding of items.
- playlist_AddExt is removed
- playlist_AddItem is still here and exported but should not be used
- use playlist_Add( p_playlist, uri, name, duration, mode, pos )
and use the accessors for all other things
- Added setters for fields of the playlist_item structure
- Introduced "item-change" and "playlist-current" playlist variables
to give more flexibility than only intf-change
At the moment, duration is still in the structure (easier to use, IMHO)
* src/input/input.c
src/libvlc.c :
playlist item options parsing changed
* include/vlc_common.h : added playlist_info structures
------------------------------------------------------------------------
r6263 | zorglub | 2004-01-05 13:59:54 +0100 (Mon, 05 Jan 2004) | 5 lines
Changed paths:
M /trunk/modules/misc/sap.c
* modules/misc/sap.c :
- Use the new playlist API
- Track title changes
- Timeout. Delete an item if we haven't heard about it for too long.
------------------------------------------------------------------------
r6264 | zorglub | 2004-01-05 14:00:20 +0100 (Mon, 05 Jan 2004) | 6 lines
Changed paths:
M /trunk/modules/demux/asf/asf.c
M /trunk/modules/demux/avi/avi.c
M /trunk/modules/demux/util/id3tag.c
M /trunk/src/input/es_out.c
modules/demux/util/id3tag.c
modules/demux/avi/avi.c
modules/demux/asf/asf.c
src/input/es_out.c
- Fill the playlist info structures
------------------------------------------------------------------------
r6265 | zorglub | 2004-01-05 14:00:39 +0100 (Mon, 05 Jan 2004) | 9 lines
Changed paths:
M /trunk/modules/gui/wxwindows/dialogs.cpp
M /trunk/modules/gui/wxwindows/interface.cpp
M /trunk/modules/gui/wxwindows/iteminfo.cpp
M /trunk/modules/gui/wxwindows/open.cpp
M /trunk/modules/gui/wxwindows/playlist.cpp
M /trunk/modules/gui/wxwindows/streamwizard.cpp
M /trunk/modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/playlist.cpp
modules/gui/wxwindows/iteminfo.cpp
- Show the info as a tree view.
At the moment, all is shown. We should maybe hide the "Options" tree
as it rather "internal"
- Improved a little the layout
- Added a popup menu to to the playlist
- Minimize playlist rebuilds
------------------------------------------------------------------------
r6266 | zorglub | 2004-01-05 14:07:03 +0100 (Mon, 05 Jan 2004) | 16 lines
Changed paths:
M /trunk/modules/LIST
M /trunk/modules/access/cdda/access.c
M /trunk/modules/access/http.c
M /trunk/modules/access/slp.c
M /trunk/modules/access/vcdx/access.c
M /trunk/modules/codec/speex.c
M /trunk/modules/codec/theora.c
M /trunk/modules/codec/vorbis.c
M /trunk/modules/control/corba/corba.c
M /trunk/modules/control/http.c
M /trunk/modules/control/rc/rc.c
M /trunk/modules/demux/m3u.c
M /trunk/modules/demux/mkv.cpp
M /trunk/modules/demux/mp4/mp4.c
M /trunk/modules/gui/beos/VlcWrapper.cpp
M /trunk/modules/gui/gtk/open.c
M /trunk/modules/gui/gtk/playlist.c
M /trunk/modules/gui/kde/interface.cpp
M /trunk/modules/gui/macosx/applescript.m
M /trunk/modules/gui/macosx/playlist.m
M /trunk/modules/gui/pda/pda_callbacks.c
M /trunk/modules/gui/qt/intf.cpp
M /trunk/modules/gui/skins/src/vlcproc.cpp
M /trunk/modules/gui/skins2/commands/cmd_add_item.cpp
* ALL: playlist API changes
What may be broken (untested):
------------------------------
- Theora and Speex decoders
- some interfaces
- VCDX and CDDAX access
The problems shouldn't hopefully excess compilation glitches.
(removal of AddExt, of psz_author, and prototype of Add)
Additionnaly, interfaces that do not support item-change will have
update problems.
* Updated modules list
------------------------------------------------------------------------
r6267 | fenrir | 2004-01-05 15:10:58 +0100 (Mon, 05 Jan 2004) | 7 lines
Changed paths:
M /trunk/Makefile.am
M /trunk/configure.ac
M /trunk/include/network.h
M /trunk/src/misc/modules.c
A /trunk/src/misc/net.c
* configure.ac: readded AX_ADD_PLUGINS([mpgv mpga m4v mpeg_system ps ts
avi asf aac mp4 rawdv demux2 nsv real]), it was probably a mistake ....
( ouiiinnn, another bootstrap ;)
* all: added net_* helpers functions.
------------------------------------------------------------------------
r6268 | zorglub | 2004-01-05 15:42:14 +0100 (Mon, 05 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/misc/sap.c
M /trunk/src/playlist/item-ext.c
* modules/misc/sap.c : let the user configure timeout delay
* src/playlist/item-ext.c : sanity checks when adding items
------------------------------------------------------------------------
r6269 | hartman | 2004-01-05 15:50:42 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
M /trunk/extras/contrib/src/packages.mak
* Fix mpeg2dec buildsystem
------------------------------------------------------------------------
r6270 | fenrir | 2004-01-05 16:07:16 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/access/tcp.c
* tcp: use net_*.
------------------------------------------------------------------------
r6271 | hartman | 2004-01-05 17:22:40 +0100 (Mon, 05 Jan 2004) | 4 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
A /trunk/extras/contrib/src/Patches/caca.patch
M /trunk/extras/contrib/src/packages.mak
* Fixed mpeg2dec newer libcaca, newer matroska, www.videolan.org should now
be download.videolan.org etc etc etc.
A lot of small fixes
------------------------------------------------------------------------
r6272 | gbazin | 2004-01-05 18:42:36 +0100 (Mon, 05 Jan 2004) | 5 lines
Changed paths:
M /trunk/configure.ac
M /trunk/modules/gui/skins2/Modules.am
M /trunk/modules/gui/skins2/vars/playlist.cpp
* configure.ac: win32 compilation fixes for the skins2 plugin.
* modules/gui/skins2/Modules.am: renamed the plugin name into skins2 so it doesn't conflict with the old plugin.
* modules/gui/skins2/vars/playlist.cpp: fixed invalid cast.
------------------------------------------------------------------------
r6273 | hartman | 2004-01-05 19:15:12 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/demux/mkv.cpp
* API change in mkv. Everyone should update to the latest libraries.
------------------------------------------------------------------------
r6274 | bigben | 2004-01-05 19:43:17 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/intf.m
Added a callback on item-change, so that the playlist is updated.
------------------------------------------------------------------------
r6275 | sam | 2004-01-05 20:33:11 +0100 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/gui/skins2/vars/playlist.cpp
* modules/gui/skins2/vars/playlist.cpp: Hack to prevent compilation errors.
------------------------------------------------------------------------
r6276 | gbazin | 2004-01-05 21:02:21 +0100 (Mon, 05 Jan 2004) | 3 lines
Changed paths:
M /trunk/modules/gui/skins2/vars/playlist.cpp
* modules/gui/skins2/vars/playlist.cpp: use ICONV_CONST to deal with the different prototypes for iconv(). Thanks sam!
------------------------------------------------------------------------
r6277 | gbazin | 2004-01-05 23:06:15 +0100 (Mon, 05 Jan 2004) | 4 lines
Changed paths:
M /trunk/modules/video_output/directx/directx.c
* modules/video_output/directx/directx.c: patch by Mike Schrag to add a config var
for the directx preferred display device.
------------------------------------------------------------------------
r6278 | asmax | 2004-01-05 23:17:32 +0100 (Mon, 05 Jan 2004) | 4 lines
Changed paths:
M /trunk/modules/gui/skins2/Modules.am
M /trunk/modules/gui/skins2/commands/cmd_dummy.hpp
A /trunk/modules/gui/skins2/commands/cmd_fullscreen.cpp
A /trunk/modules/gui/skins2/commands/cmd_fullscreen.hpp
M /trunk/modules/gui/skins2/commands/cmd_notify_playlist.hpp
M /trunk/modules/gui/skins2/commands/cmd_on_top.hpp
M /trunk/modules/gui/skins2/commands/cmd_quit.hpp
M /trunk/modules/gui/skins2/parser/interpreter.cpp
M /trunk/modules/gui/skins2/vars/playlist.cpp
M /trunk/modules/gui/skins2/vars/playlist.hpp
* commands/cmd_*.hpp: use the DEFINE_COMMAND macro for simple commands
* commands/cmd_fullscreen.*, parser/interpreter.cpp: added a
"vlc.fullscreen()" command
------------------------------------------------------------------------
r6279 | jlj | 2004-01-06 02:41:10 +0100 (Tue, 06 Jan 2004) | 2 lines
Changed paths:
M /trunk/modules/demux/mp4/libmp4.c
M /trunk/modules/demux/mp4/mp4.c