forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10367 lines (8416 loc) · 408 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
------------------------------------------------------------------------
r10980 | dionoea | 2005-05-12 16:29:58 +0200 (Thu, 12 May 2005) | 3 lines
Changed paths:
M /trunk/ChangeLog
M /trunk/NEWS
M /trunk/configure.ac
M /trunk/extras/MacOSX/Resources/English.lproj/InfoPlist.strings
M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
* prepare 0.8.2-test1
* update NEWS
------------------------------------------------------------------------
r10979 | gbazin | 2005-05-12 14:18:38 +0200 (Thu, 12 May 2005) | 1 line
Changed paths:
M /trunk/src/libvlc.c
M /trunk/src/playlist/services_discovery.c
* src/libvlc.c, src/playlist/services_discovery.c: fixed --services-discovery and --extraintf to use the new modules list syntax.
------------------------------------------------------------------------
r10978 | djc | 2005-05-12 02:12:44 +0200 (Thu, 12 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs_widgets.m
Change , to : in MacOSX preferences. Refs #111
------------------------------------------------------------------------
r10977 | damienf | 2005-05-11 18:59:28 +0200 (Wed, 11 May 2005) | 2 lines
Changed paths:
M /trunk/activex/test.html
test.html: improved user feedback, especially for live stream
------------------------------------------------------------------------
r10976 | damienf | 2005-05-11 18:56:46 +0200 (Wed, 11 May 2005) | 6 lines
Changed paths:
M /trunk/activex/axvlc.idl
M /trunk/activex/axvlc.tlb
M /trunk/activex/axvlc_idl.c
M /trunk/activex/axvlc_idl.h
M /trunk/activex/main.cpp
M /trunk/activex/viewobject.cpp
M /trunk/activex/viewobject.h
M /trunk/activex/vlccontrol.cpp
M /trunk/activex/vlccontrol.h
M /trunk/include/variables.h
M /trunk/include/vlc/vlc.h
M /trunk/src/libvlc.c
src/libvlc.c,include/vlc/vlc.h, include/variables.h: added a new a API to libvlc called VLC_VariableType, this API allows to retrieve the type of a VLC variable. this API is very useful for binding with highlevel languages, such as javascript, VBScript, etc... which allow for weakly typed variables such as Javascript. in order to support the VLC_VariableType API, i've had to move the variable type definitions from variables.h to vlc/vlc.h
vlccontrol.cpp, axvlc.idl, axvlc.tlb, axvlc_idl.h: added a getVariable and setVariable to provide support for VLC_GetVariable and VLC_SetVariable respectively,and requires the new VLC_VariableType API.
main.cpp, viewobject.h, viewobject.cpp: support for advise on viewobject
------------------------------------------------------------------------
r10975 | bigben | 2005-05-11 17:44:28 +0200 (Wed, 11 May 2005) | 5 lines
Changed paths:
M /trunk/modules/gui/macosx/intf.m
M /trunk/modules/gui/macosx/playlist.m
* Transmit keyboard events from the arrow and enter key to the main controller, so that playlist navigation with the keyboard is possible.
* This doesn't conflict with dvd menu navigation.
* If these keys are set to an action that is handled by Cocoa, this action will have priority.
------------------------------------------------------------------------
r10974 | gbazin | 2005-05-11 17:34:24 +0200 (Wed, 11 May 2005) | 1 line
Changed paths:
M /trunk/modules/gui/wxwindows/extrapanel.cpp
M /trunk/modules/gui/wxwindows/preferences_widgets.cpp
M /trunk/src/audio_output/input.c
M /trunk/src/video_output/video_output.c
M /trunk/src/video_output/vout_subpictures.c
* src/*, modules/gui/wxwindows/*: audio/video/sub-filter config options are now a colon (':') separated list of filters to keep the same syntax as the stream output.
------------------------------------------------------------------------
r10973 | hartman | 2005-05-11 15:50:49 +0200 (Wed, 11 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/vout.m
* vout.m: small codefixes that were not 100% problems.
------------------------------------------------------------------------
r10972 | gbazin | 2005-05-11 15:18:00 +0200 (Wed, 11 May 2005) | 1 line
Changed paths:
M /trunk/Makefile.am
* Makefile.am: fixed build problem.
------------------------------------------------------------------------
r10971 | djc | 2005-05-11 14:19:05 +0200 (Wed, 11 May 2005) | 3 lines
Changed paths:
M /trunk/modules/gui/macosx/intf.h
M /trunk/modules/gui/macosx/playlist.h
M /trunk/modules/gui/macosx/playlist.m
M /trunk/modules/gui/macosx/prefs_widgets.m
Change the searchField in NSSearchField when macos >= 10.3
Move MACOS_VERSION macro to intf.h
------------------------------------------------------------------------
r10970 | gbazin | 2005-05-11 13:30:12 +0200 (Wed, 11 May 2005) | 1 line
Changed paths:
M /trunk/Makefile.am
M /trunk/configure.ac
* configure.ac, Makefile.am: fixes for WinCE build.
------------------------------------------------------------------------
r10969 | hartman | 2005-05-11 12:19:28 +0200 (Wed, 11 May 2005) | 2 lines
Changed paths:
M /trunk/extras/contrib/src/packages.mak
* Use a newer liveMedia version. November one is a bit old.
------------------------------------------------------------------------
r10968 | djc | 2005-05-11 11:59:41 +0200 (Wed, 11 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs_widgets.m
Use new selectors only if they exist...
------------------------------------------------------------------------
r10967 | djc | 2005-05-11 11:42:34 +0200 (Wed, 11 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
M /trunk/modules/gui/macosx/prefs_widgets.m
*: remove fprintf debug messages
------------------------------------------------------------------------
r10966 | djc | 2005-05-11 11:37:49 +0200 (Wed, 11 May 2005) | 3 lines
Changed paths:
M /trunk/modules/gui/macosx/intf.m
M /trunk/modules/gui/macosx/prefs_widgets.m
Preferences panel can be viewed on X.2. Closes #104.
+ fix hotkeys widget with macos < 10.3
------------------------------------------------------------------------
r10965 | gbazin | 2005-05-11 09:05:09 +0200 (Wed, 11 May 2005) | 1 line
Changed paths:
M /trunk/evc/config.h.in
M /trunk/msvc/config.h.in
* ms(e)vc/config.h.in: define HAVE_DYNAMIC_PLUGINS.
------------------------------------------------------------------------
r10964 | djc | 2005-05-11 01:08:52 +0200 (Wed, 11 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/controls.h
M /trunk/modules/gui/macosx/controls.m
M /trunk/modules/gui/macosx/intf.h
M /trunk/modules/gui/macosx/intf.m
M /trunk/modules/gui/macosx/playlist.m
Fix a bug in playlist + delete updateVolumeSlider (closes #93)
------------------------------------------------------------------------
r10963 | dionoea | 2005-05-11 00:05:54 +0200 (Wed, 11 May 2005) | 3 lines
Changed paths:
M /trunk/modules/gui/wxwindows/playlist.cpp
check if pointers are NULL (Closes #86 -> we can release test1)
event reporting in wxwin32 seems to be different than in wxgtk
------------------------------------------------------------------------
r10962 | zorglub | 2005-05-10 23:19:08 +0200 (Tue, 10 May 2005) | 2 lines
Changed paths:
M /trunk/src/playlist/item-ext.c
Fix playlist behaviour with delete in HTTP intf (Closes #105)
------------------------------------------------------------------------
r10961 | xtophe | 2005-05-10 21:31:07 +0200 (Tue, 10 May 2005) | 4 lines
Changed paths:
M /trunk/share/http/index.html
* Work around for the lag (close #3)
* Change the playlist because at least FX and IE don't like cascading forms
* control=sout is not a valid control
------------------------------------------------------------------------
r10960 | djc | 2005-05-10 18:18:43 +0200 (Tue, 10 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/playlistinfo.m
Should fix prolems during launch of VLC on xserve...
------------------------------------------------------------------------
r10956 | hartman | 2005-05-10 15:35:27 +0200 (Tue, 10 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/Makefile
compile gpg-error without nls support because it isn't really used by VLC and it complicates the contrib system. (this should fix the OSX 10.2 compile). Also switch back to ffmpeg CVS
------------------------------------------------------------------------
r10955 | dionoea | 2005-05-10 15:02:11 +0200 (Tue, 10 May 2005) | 4 lines
Changed paths:
M /trunk/src/misc/vlm.c
* show number of broadcast and vod media items within show command
When we end the feature freeze, we'll have to complete the show command to
show (for example) the number of clients connected
------------------------------------------------------------------------
r10954 | dionoea | 2005-05-10 14:56:02 +0200 (Tue, 10 May 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/configure.ac
change version number to 0.8.2-svn2 (0.8.2.svn broke the windows build)
------------------------------------------------------------------------
r10953 | courmisch | 2005-05-10 13:39:32 +0200 (Tue, 10 May 2005) | 4 lines
Changed paths:
M /trunk/modules/access_output/file.c
Support for large files in stream output
Closes #48
Closes Debian #306110
------------------------------------------------------------------------
r10952 | gbazin | 2005-05-10 12:38:35 +0200 (Tue, 10 May 2005) | 1 line
Changed paths:
M /trunk/modules/codec/ffmpeg/encoder.c
M /trunk/modules/codec/ffmpeg/video.c
M /trunk/modules/stream_out/switcher.c
* modules/codec/ffmpeg/*, modules/stream_out/switcher.c: fix compilation with new ffmpeg versions (use native timebase).
------------------------------------------------------------------------
r10951 | fkuehne | 2005-05-10 09:30:52 +0200 (Tue, 10 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/packages.mak
* there seem to be problems with SourceForge's heanet-mirror, using switch (located in CH) instead now
------------------------------------------------------------------------
r10950 | fkuehne | 2005-05-09 22:00:43 +0200 (Mon, 09 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/packages.mak
* changed the download-location of libtheora to our server since their own refuses to work once again
------------------------------------------------------------------------
r10949 | fkuehne | 2005-05-09 21:29:48 +0200 (Mon, 09 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/packages.mak
* updated GnuTLS to 1.2.3, fixes #95 on BeOS and OSX
------------------------------------------------------------------------
r10948 | dionoea | 2005-05-09 21:23:39 +0200 (Mon, 09 May 2005) | 3 lines
Changed paths:
M /trunk/src/libvlc.h
* change snapshot hotkey for non OS X users to ctrl-alt-s (instead of
ctrl-s which is also used for changing skins)
------------------------------------------------------------------------
r10947 | courmisch | 2005-05-09 21:01:25 +0200 (Mon, 09 May 2005) | 3 lines
Changed paths:
M /trunk/src/misc/net.c
Don't print an error message when attempting to recv returns EAGAIN
(can only happens if we're using SSL and it is a not an error situation)
------------------------------------------------------------------------
r10946 | bigben | 2005-05-09 20:59:11 +0200 (Mon, 09 May 2005) | 3 lines
Changed paths:
M /trunk/modules/gui/macosx/equalizer.m
* Fixes initialization when a preset is saved in the prefs or provided from command line. Could be cleaner, but it seems at least to work.
------------------------------------------------------------------------
r10945 | courmisch | 2005-05-09 20:31:29 +0200 (Mon, 09 May 2005) | 2 lines
Changed paths:
M /trunk/modules/demux/livedotcom.cpp
Encode URL if needed (should fix Debian bug #279735)
------------------------------------------------------------------------
r10944 | courmisch | 2005-05-09 20:23:32 +0200 (Mon, 09 May 2005) | 2 lines
Changed paths:
M /trunk/include/network.h
Fix C++ compilation
------------------------------------------------------------------------
r10943 | bigben | 2005-05-09 19:00:15 +0200 (Mon, 09 May 2005) | 3 lines
Changed paths:
M /trunk/modules/gui/macosx/equalizer.m
* Fix some variable initilization bugs
------------------------------------------------------------------------
r10942 | fkuehne | 2005-05-09 18:46:13 +0200 (Mon, 09 May 2005) | 1 line
Changed paths:
M /trunk/modules/access/vcdx/vcd.c
* fix the compilation which were accidentally broken in r10922
------------------------------------------------------------------------
r10941 | sam | 2005-05-09 18:22:10 +0200 (Mon, 09 May 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/configure.ac
* Changed temporary version to 0.8.2.svn. Sorry about that, but it
conflicts with the version in Debian which I am unable to change.
------------------------------------------------------------------------
r10940 | fkuehne | 2005-05-09 17:55:46 +0200 (Mon, 09 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/bootstrap
* fix to the svn-recognition
------------------------------------------------------------------------
r10939 | dionoea | 2005-05-09 11:46:31 +0200 (Mon, 09 May 2005) | 6 lines
Changed paths:
M /trunk/share/http/index.html
M /trunk/share/http/style.css
index.html : fix ?\194?\171 Weird URLs
(?control=stop&control=seek&control=seek&seek_value=&control=seek) ?\194?\187
style.css : small esthetic fix
------------------------------------------------------------------------
r10938 | djc | 2005-05-09 04:11:31 +0200 (Mon, 09 May 2005) | 2 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
Change gpgerror to gpg-error and add $(INSTALL_NAME) to it
------------------------------------------------------------------------
r10937 | dionoea | 2005-05-09 03:58:09 +0200 (Mon, 09 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/wxwindows/extrapanel.cpp
fix a segfault (i didn't know strstr segfaulted when the haystak was NULL ...)
------------------------------------------------------------------------
r10936 | djc | 2005-05-09 01:58:04 +0200 (Mon, 09 May 2005) | 2 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
This should fix libs dependences
------------------------------------------------------------------------
r10935 | djc | 2005-05-09 00:56:34 +0200 (Mon, 09 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs_widgets.m
Fix hotkeys view in macosx.3 + UTF8 strings in module list
------------------------------------------------------------------------
r10934 | fkuehne | 2005-05-08 21:55:18 +0200 (Sun, 08 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/Makefile
* let's build libtwolame by default on OSX and Linux; we might want to disable the original lame in the final release
------------------------------------------------------------------------
r10933 | robux4 | 2005-05-08 16:14:20 +0200 (Sun, 08 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/Makefile
contrib: make the SVN vs release build really work on OS X
------------------------------------------------------------------------
r10932 | robux4 | 2005-05-08 16:14:12 +0200 (Sun, 08 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/bootstrap
contrib: make the SVN vs release build really work on OS X
------------------------------------------------------------------------
r10931 | bigben | 2005-05-08 15:56:18 +0200 (Sun, 08 May 2005) | 3 lines
Changed paths:
M /trunk/extras/contrib/bootstrap
get rid of windows style line breaks
------------------------------------------------------------------------
r10930 | robux4 | 2005-05-08 13:11:08 +0200 (Sun, 08 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/bootstrap
M /trunk/extras/contrib/src/Makefile
contrib: improve the detection of SVN
------------------------------------------------------------------------
r10929 | robux4 | 2005-05-08 12:45:37 +0200 (Sun, 08 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/bootstrap
M /trunk/extras/contrib/src/Makefile
contrib: use SVN only if a client is available
------------------------------------------------------------------------
r10928 | dionoea | 2005-05-08 12:42:32 +0200 (Sun, 08 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/wxwindows/extrapanel.cpp
check if equalizer and equalizer-2pass are enabled upon panel creation
------------------------------------------------------------------------
r10927 | dionoea | 2005-05-08 12:20:24 +0200 (Sun, 08 May 2005) | 3 lines
Changed paths:
M /trunk/modules/gui/wxwindows/extrapanel.cpp
M /trunk/modules/gui/wxwindows/wxwindows.h
* disable equalizer commands in the extended GUI if the equalizer isn't
enabled.
------------------------------------------------------------------------
r10926 | robux4 | 2005-05-08 11:29:18 +0200 (Sun, 08 May 2005) | 1 line
Changed paths:
M /trunk/msvc/vlc.dsw
MSVC build: only keep the plugins that compile out of the box
------------------------------------------------------------------------
r10925 | robux4 | 2005-05-08 11:14:15 +0200 (Sun, 08 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/Makefile
contrib: build libebml/libmatroska from SVN
------------------------------------------------------------------------
r10924 | zorglub | 2005-05-08 09:40:39 +0200 (Sun, 08 May 2005) | 2 lines
Changed paths:
M /trunk/BUGS
M /trunk/TODO
Clean BUGS and TODO
------------------------------------------------------------------------
r10923 | robux4 | 2005-05-07 22:52:48 +0200 (Sat, 07 May 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: code cleaning
------------------------------------------------------------------------
r10922 | fkuehne | 2005-05-07 22:02:48 +0200 (Sat, 07 May 2005) | 6 lines
Changed paths:
M /trunk/modules/access/vcdx/vcd.c
M /trunk/modules/access/vcdx/vcdplayer.c
M /trunk/modules/audio_filter/converter/a52tofloat32.c
M /trunk/modules/codec/svcdsub.c
M /trunk/modules/gui/macosx/controls.m
* controls.m: added l10n of the volume-string shown when changing the volume
* vcdx/vcdplayer.c: disabled l10n of various error messages
* vcdx/vcd.c: disabled l10n of 2 debug masks. They are horribly to translate and used by advanced users only, who should speak English well enough for this purpose
* rest: disabled l10n of various strings or debug masks which cannot be translated
more to come
------------------------------------------------------------------------
r10921 | courmisch | 2005-05-07 21:09:11 +0200 (Sat, 07 May 2005) | 2 lines
Changed paths:
M /trunk/configure.ac
Do not attempt to run "--cflags" and "--idlflags" which are non-existant commands
------------------------------------------------------------------------
r10920 | robux4 | 2005-05-07 20:19:32 +0200 (Sat, 07 May 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: improve the button logic and fix the LinkPGC DVD command (stay in the current segment)
------------------------------------------------------------------------
r10919 | robux4 | 2005-05-07 18:38:20 +0200 (Sat, 07 May 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: better handling of quitting an ordered edition, add support for the LinkCN DVD command
------------------------------------------------------------------------
r10918 | djc | 2005-05-07 18:34:25 +0200 (Sat, 07 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
Typo
------------------------------------------------------------------------
r10917 | djc | 2005-05-07 18:12:31 +0200 (Sat, 07 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
Add a notice if advanced items are not shown
------------------------------------------------------------------------
r10916 | robux4 | 2005-05-07 17:08:54 +0200 (Sat, 07 May 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: process the LinkPGCN DVD command correctly
------------------------------------------------------------------------
r10915 | robux4 | 2005-05-07 16:33:16 +0200 (Sat, 07 May 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: make the DVD command interpretor global to the demuxer, interpret the command when a button is clicked
------------------------------------------------------------------------
r10914 | djc | 2005-05-07 11:27:53 +0200 (Sat, 07 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
Fix a refcount error
------------------------------------------------------------------------
r10913 | zorglub | 2005-05-07 08:18:17 +0200 (Sat, 07 May 2005) | 2 lines
Changed paths:
M /trunk/NEWS
Document SAP syntax change
------------------------------------------------------------------------
r10912 | djc | 2005-05-07 03:12:16 +0200 (Sat, 07 May 2005) | 4 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
M /trunk/modules/gui/macosx/prefs_widgets.h
M /trunk/modules/gui/macosx/prefs_widgets.m
*: fix alignment of widgets.
- What shall we do for files and module list ?
- Why is there a space after "Audio viualization" in src/libvlc.h ?
------------------------------------------------------------------------
r10911 | djc | 2005-05-06 20:54:09 +0200 (Fri, 06 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
M /trunk/modules/gui/macosx/prefs_widgets.h
M /trunk/modules/gui/macosx/prefs_widgets.m
*: remove useless code
------------------------------------------------------------------------
r10910 | djc | 2005-05-06 20:15:50 +0200 (Fri, 06 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.h
M /trunk/modules/gui/macosx/prefs.m
M /trunk/modules/gui/macosx/prefs_widgets.h
M /trunk/modules/gui/macosx/prefs_widgets.m
*: fix problems about advanced button
------------------------------------------------------------------------
r10909 | fkuehne | 2005-05-06 19:42:56 +0200 (Fri, 06 May 2005) | 1 line
Changed paths:
M /trunk/modules/gui/macosx/playlist.m
* sorry, forgot to give svn the playlist.m from the previous commit... tztz
------------------------------------------------------------------------
r10908 | fkuehne | 2005-05-06 19:41:09 +0200 (Fri, 06 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/ncurses.c
* playlist.m: use stringWithUTF8String instead of stringWithCString when creating the Services-Discovery-menus to show UTF8-encoded strings properly
* ncurses.c: don't localise "Ncurses"
------------------------------------------------------------------------
r10907 | fkuehne | 2005-05-06 18:40:01 +0200 (Fri, 06 May 2005) | 2 lines
Changed paths:
M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
M /trunk/modules/gui/macosx/equalizer.m
* equalizer.m: use preset_list_text instead of preset_list when creating the popup-entries to enable l10n of the presets
* MainMenu.nib: made the equaliser's popup a wider so it fits all l10ns
------------------------------------------------------------------------
r10906 | robux4 | 2005-05-06 18:12:53 +0200 (Fri, 06 May 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: minor enhancements/cleanings of the button handling code
------------------------------------------------------------------------
r10905 | robux4 | 2005-05-06 16:51:18 +0200 (Fri, 06 May 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: support highlighting a button when clicked (but the alpha channel doesn't seem to work)
------------------------------------------------------------------------
r10904 | sigmunau | 2005-05-05 23:39:10 +0200 (Thu, 05 May 2005) | 2 lines
Changed paths:
M /trunk/BUGS
M /trunk/TODO
BUGS,TODO: Remove stuff that has been added to Trac
------------------------------------------------------------------------
r10903 | bigben | 2005-05-05 21:34:56 +0200 (Thu, 05 May 2005) | 4 lines
Changed paths:
M /trunk/BUGS
M /trunk/modules/gui/macosx/playlist.h
M /trunk/modules/gui/macosx/playlist.m
* playlist.* support for DnD from Finder
* BUGS: remove OSX playlist (anyone sees some more issue here readd it with a description...)
------------------------------------------------------------------------
r10902 | fkuehne | 2005-05-05 20:53:17 +0200 (Thu, 05 May 2005) | 1 line
Changed paths:
M /trunk/src/misc/vlm.c
* add the option keyword to the help of vlm and the streaming howto -- patch by Christophe Mutricy
------------------------------------------------------------------------
r10901 | fkuehne | 2005-05-05 20:23:53 +0200 (Thu, 05 May 2005) | 1 line
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
* compilation fix
------------------------------------------------------------------------
r10900 | fkuehne | 2005-05-05 20:02:30 +0200 (Thu, 05 May 2005) | 1 line
Changed paths:
M /trunk/po/es.po
* update to the Spanish translation by Javier Varela (99% complete now)
------------------------------------------------------------------------
r10899 | fkuehne | 2005-05-05 19:03:43 +0200 (Thu, 05 May 2005) | 1 line
Changed paths:
M /trunk/extras/contrib/src/Makefile
* use the ffmpeg-cvs from 2005-04-30 until our ffmpeg-module is fixed
------------------------------------------------------------------------
r10898 | djc | 2005-05-05 18:48:22 +0200 (Thu, 05 May 2005) | 3 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.m
M /trunk/modules/gui/macosx/prefs_widgets.h
M /trunk/modules/gui/macosx/prefs_widgets.m
- added macosx version detection at runtime with /System/Library/CoreServices/SystemVersion.plist file
- wrapped code
------------------------------------------------------------------------
r10897 | djc | 2005-05-05 12:57:55 +0200 (Thu, 05 May 2005) | 5 lines
Changed paths:
M /trunk/modules/gui/macosx/prefs.h
M /trunk/modules/gui/macosx/prefs.m
M /trunk/modules/gui/macosx/prefs_widgets.h
M /trunk/modules/gui/macosx/prefs_widgets.m
Added widget, fix save, etc.
Known bugs: changing advanced view, detection of MacOS X version at
runtime and many others...
------------------------------------------------------------------------
r10896 | asmax | 2005-05-04 22:52:43 +0200 (Wed, 04 May 2005) | 7 lines
Changed paths:
M /trunk/modules/gui/skins2/controls/ctrl_image.cpp
M /trunk/modules/gui/skins2/controls/ctrl_image.hpp
M /trunk/modules/gui/skins2/parser/builder.cpp
M /trunk/modules/gui/skins2/parser/builder_data.def
M /trunk/modules/gui/skins2/parser/builder_data.hpp
M /trunk/modules/gui/skins2/parser/skin_parser.cpp
M /trunk/share/skins2/skin.dtd
* skin.dtd: added an attribute "resize" in the "Image" element, to define
the method used to resize the image, which can be "mosaic" (the default)
or "scale". Note that the previous behaviour was always "scale" before,
but mosaic is much much faster, so use scale method only for fun ;)
* skins2/*: support of the new mosaic method; playlist resize with this
method is significantly faster!
------------------------------------------------------------------------
r10895 | sam | 2005-05-04 16:43:00 +0200 (Wed, 04 May 2005) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/misc/modules.c
* do not use a dynamic linker if no plugin support was detected/requested.
------------------------------------------------------------------------
r10894 | bigben | 2005-05-04 01:18:04 +0200 (Wed, 04 May 2005) | 3 lines
Changed paths:
M /trunk/BUGS
Forgot this one...
------------------------------------------------------------------------
r10893 | bigben | 2005-05-04 01:14:39 +0200 (Wed, 04 May 2005) | 3 lines
Changed paths:
M /trunk/BUGS
One more bug
------------------------------------------------------------------------
r10892 | bigben | 2005-05-04 01:04:10 +0200 (Wed, 04 May 2005) | 3 lines
Changed paths:
M /trunk/BUGS
some more bugs...
------------------------------------------------------------------------
r10891 | bigben | 2005-05-04 00:44:17 +0200 (Wed, 04 May 2005) | 5 lines
Changed paths:
M /trunk/modules/gui/macosx/playlist.m
* Fixes a silly bug in the filling of the NSMutableDictionary that stores the p_item->node correspondance in the playlist
* A side effect of this fix seems to be that adding a directory, deleting it and adding a new playlist item doesn't seem to crash VLC anymore
* Make the currently playling item, as well as its parent items bold
------------------------------------------------------------------------
r10887 | fkuehne | 2005-05-03 22:10:10 +0200 (Tue, 03 May 2005) | 1 line
Changed paths:
M /trunk/configure.ac
M /trunk/src/misc/darwin_specific.m
* aded the new Catalan translation
------------------------------------------------------------------------
r10885 | courmisch | 2005-05-03 13:07:20 +0200 (Tue, 03 May 2005) | 2 lines
Changed paths:
M /trunk/src/libvlc.h
M /trunk/src/misc/iso-639_def.h
Enable catalan translation
------------------------------------------------------------------------
r10884 | courmisch | 2005-05-03 12:55:49 +0200 (Tue, 03 May 2005) | 2 lines
Changed paths:
M /trunk/po/POTFILES.in
Fixes no longer existing files
------------------------------------------------------------------------
r10883 | courmisch | 2005-05-03 12:47:17 +0200 (Tue, 03 May 2005) | 3 lines
Changed paths:
M /trunk/THANKS
A /trunk/po/ca.po
Initial Catalan translation by
Lorena Gomes and X?\195?\168nia Alb?\195?\160 Cantero
------------------------------------------------------------------------
r10882 | courmisch | 2005-05-03 12:43:27 +0200 (Tue, 03 May 2005) | 2 lines
Changed paths:
M /trunk/po/zh_TW.po
.po are not executable
------------------------------------------------------------------------
r10879 | fkuehne | 2005-05-02 20:36:58 +0200 (Mon, 02 May 2005) | 1 line
Changed paths:
M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
* fixed icons for bin, AIFF, WAV
------------------------------------------------------------------------
r10873 | rocky | 2005-05-02 11:01:55 +0200 (Mon, 02 May 2005) | 9 lines
Changed paths:
M /trunk/modules/gui/skins2/src/ft2_font.cpp
gcc 3.4.3 gave this error:
src/ft2_font.cpp: In member function `virtual GenericBitmap* FT2Font::drawString(const UString&, uint32_t, int) const':
src/ft2_font.cpp:172: error: array bound forbidden after parenthesized type-id
src/ft2_font.cpp:172: note: try removing the parentheses around the type-id
Follow the suggestion.
------------------------------------------------------------------------
r10872 | fenrir | 2005-05-02 09:25:15 +0200 (Mon, 02 May 2005) | 2 lines
Changed paths:
M /trunk/modules/gui/wxwindows/playlist.cpp
* playlist: fix Playlist::OnKeyDown (added event.Skip when needed).
------------------------------------------------------------------------
r10871 | bigben | 2005-05-02 01:04:18 +0200 (Mon, 02 May 2005) | 3 lines
Changed paths:
M /trunk/src/video_output/video_output.c
* Hopefully fixes --aspect-ratio computation when giving float values as argument
------------------------------------------------------------------------
r10869 | asmax | 2005-05-01 23:36:53 +0200 (Sun, 01 May 2005) | 4 lines
Changed paths:
M /trunk/modules/gui/skins2/src/ft2_font.cpp
M /trunk/modules/gui/skins2/src/ft2_font.hpp
M /trunk/modules/gui/skins2/x11/x11_display.cpp
* ft2_font.cpp: added a cache for glyphs rendered with freetype, because
freetype is so slooow: now FT2Font::drawString() is about 100 times faster
in average !
------------------------------------------------------------------------
r10863 | asmax | 2005-05-01 17:17:40 +0200 (Sun, 01 May 2005) | 3 lines
Changed paths:
M /trunk/include/vlc_stream.h
* vlc_stream.h: added missing extern "C" (prevented compilation of skins2
module in builtin mode)
------------------------------------------------------------------------
r10862 | rocky | 2005-05-01 16:48:08 +0200 (Sun, 01 May 2005) | 6 lines
Changed paths:
M /trunk/modules/access/cdda/access.c
M /trunk/modules/access/cdda/info.c
M /trunk/modules/access/vcdx/access.c
fix next/previous chapter in disc mode
fix updating meta (caused by a recent change of mine)
vcdx/access.c: hack to try to fix still-handling problem
------------------------------------------------------------------------
r10861 | asmax | 2005-05-01 15:19:04 +0200 (Sun, 01 May 2005) | 4 lines
Changed paths:
M /trunk/modules/gui/skins2/controls/ctrl_list.cpp
M /trunk/modules/gui/skins2/controls/ctrl_text.cpp
M /trunk/modules/gui/skins2/macosx/macosx_loop.cpp
M /trunk/modules/gui/skins2/macosx/macosx_loop.hpp
M /trunk/modules/gui/skins2/src/ft2_bitmap.cpp
M /trunk/modules/gui/skins2/src/os_graphics.hpp
M /trunk/modules/gui/skins2/src/tooltip.cpp
M /trunk/modules/gui/skins2/win32/win32_graphics.cpp
M /trunk/modules/gui/skins2/win32/win32_graphics.hpp
M /trunk/modules/gui/skins2/x11/x11_display.cpp
M /trunk/modules/gui/skins2/x11/x11_display.hpp
M /trunk/modules/gui/skins2/x11/x11_graphics.cpp
M /trunk/modules/gui/skins2/x11/x11_graphics.hpp
* os_graphics.hpp: added a parameter "blend" to drawBitmap(), to perform alpha
blending only when it is useful (i.e. when drawing antialiased text)
* x11/*: optimized drawBitmap when alpha blending is not used: 5 times faster
------------------------------------------------------------------------
r10860 | ipkiss | 2005-05-01 13:15:42 +0200 (Sun, 01 May 2005) | 3 lines
Changed paths:
M /trunk/doc/skins/skins2-howto.xml
* doc/skins/skins2-howto.xml: Added the playlist.sort() action, which was
missing in the doc
------------------------------------------------------------------------
r10859 | rocky | 2005-05-01 10:56:03 +0200 (Sun, 01 May 2005) | 3 lines
Changed paths:
M /trunk/modules/access/cdda/access.c
M /trunk/modules/access/cdda/cdda.h
Work on audio control access.
------------------------------------------------------------------------
r10858 | rocky | 2005-05-01 04:43:17 +0200 (Sun, 01 May 2005) | 3 lines
Changed paths:
M /trunk/modules/access/cdda/access.c
Correct up audio-control stop command.
------------------------------------------------------------------------
r10857 | rocky | 2005-05-01 04:16:02 +0200 (Sun, 01 May 2005) | 2 lines
Changed paths:
M /trunk/modules/access/cdda/access.c
M /trunk/modules/access/cdda/cdda.c
Compatability for different versions of libcdio from 0.71-0.74cvs
------------------------------------------------------------------------
r10856 | rocky | 2005-05-01 04:06:58 +0200 (Sun, 01 May 2005) | 4 lines
Changed paths:
M /trunk/modules/access/cdda/access.c
A couple more fixes. One to set meta information when in disc mode.
Another to pause audio control playing.
------------------------------------------------------------------------
r10855 | rocky | 2005-05-01 02:34:39 +0200 (Sun, 01 May 2005) | 11 lines
Changed paths:
M /trunk/modules/access/cdda/access.c
M /trunk/modules/access/cdda/cdda.c
M /trunk/modules/access/cdda/cdda.h
M /trunk/modules/access/cdda/info.c
Fix some bugs when playlist not in disc but track mode:
play_item initialization accidently lost.
Probably need a vlc_object release of the playlist.
Adjust comments which were wrong because of cut and paste artifacts.
Some changes that may help debugging.
First attempt at playing via audio controls - mostly not working.
------------------------------------------------------------------------
r10854 | massiot | 2005-04-29 17:57:24 +0200 (Fri, 29 Apr 2005) | 5 lines
Changed paths:
M /trunk/configure.ac
M /trunk/extras/contrib/src/Makefile
M /trunk/extras/contrib/src/packages.mak
M /trunk/modules/codec/Modules.am
D /trunk/modules/codec/toolame.c
A /trunk/modules/codec/twolame.c (from /trunk/modules/codec/toolame.c:10731)
* ALL: We are now using libtwolame instead of libtoolame. The reason is that
twolame is thread-safe and maintained. Update your batch files for
--enable-twolame instead of --enable-toolame. See http://twolame.sf.net
for more information.
------------------------------------------------------------------------
r10853 | fenrir | 2005-04-29 09:37:20 +0200 (Fri, 29 Apr 2005) | 3 lines
Changed paths:
M /trunk/modules/access_filter/record.c
* record: use add_directory (instead of add_string) + parse the name to
remove the uri/path part.
------------------------------------------------------------------------
r10852 | robux4 | 2005-04-28 23:15:08 +0200 (Thu, 28 Apr 2005) | 1 line
Changed paths:
M /trunk/modules/demux/mkv.cpp
mkv.cpp: add preliminary code to support the UI hooks
------------------------------------------------------------------------
r10851 | damienf | 2005-04-28 15:58:54 +0200 (Thu, 28 Apr 2005) | 2 lines
Changed paths:
M /trunk/include/vlc_common.h
bad, bad developer ...
------------------------------------------------------------------------
r10850 | damienf | 2005-04-28 15:36:54 +0200 (Thu, 28 Apr 2005) | 4 lines
Changed paths:
M /trunk/modules/access/dshow/dshow.cpp
- added dshow-fps option to configure capture framerate
- added support for IAMStreamConfig interface to configure user settings on capture pin media type
------------------------------------------------------------------------
r10849 | damienf | 2005-04-28 15:30:02 +0200 (Thu, 28 Apr 2005) | 4 lines
Changed paths:
M /trunk/include/vlc_common.h
M /trunk/modules/access_filter/record.c
vlc_common.h: Cygwin & Mingw32 compatibilty update, needs review
record.c: make it compile under mingw32, needs review
------------------------------------------------------------------------
r10848 | gbazin | 2005-04-28 10:18:53 +0200 (Thu, 28 Apr 2005) | 1 line
Changed paths:
M /trunk/modules/access_filter/record.c
* modules/access_filter/record.c: compilation fix.
------------------------------------------------------------------------
r10847 | fenrir | 2005-04-28 09:45:51 +0200 (Thu, 28 Apr 2005) | 2 lines
Changed paths:
M /trunk/src/input/es_out.c
* es_out: oops, make EsOutProgramDel returning an error code.
------------------------------------------------------------------------
r10846 | fenrir | 2005-04-28 09:43:09 +0200 (Thu, 28 Apr 2005) | 2 lines
Changed paths:
M /trunk/modules/access_filter/record.c
* record: grrr, support for system that doesn't have localtime_r.
------------------------------------------------------------------------
r10845 | fenrir | 2005-04-28 09:26:04 +0200 (Thu, 28 Apr 2005) | 3 lines
Changed paths:
M /trunk/include/vlc_es_out.h
M /trunk/modules/demux/ts.c
M /trunk/src/input/es_out.c
es_out*: added ES_OUT_DEL_GROUP
ts.c: use ES_OUT_DEL_GROUP to remove old program.
------------------------------------------------------------------------
r10844 | gbazin | 2005-04-27 14:59:38 +0200 (Wed, 27 Apr 2005) | 1 line
Changed paths:
M /trunk/src/input/es_out.c
* src/input/es_out.c: reverted previous patch since it creates problems with the DVB access plugin.
------------------------------------------------------------------------
r10843 | gbazin | 2005-04-27 13:40:11 +0200 (Wed, 27 Apr 2005) | 1 line
Changed paths:
M /trunk/src/input/es_out.c
* src/input/es_out.c: cleanup empty programs.
------------------------------------------------------------------------
r10842 | courmisch | 2005-04-27 12:19:51 +0200 (Wed, 27 Apr 2005) | 2 lines
Changed paths:
M /trunk/modules/access_filter/record.c
Fix errno undefined error
------------------------------------------------------------------------
r10841 | sigmunau | 2005-04-26 23:35:03 +0200 (Tue, 26 Apr 2005) | 5 lines
Changed paths:
M /trunk/src/input/var.c
input/var.c: don't try to update the "rate" variable directly in callback
for "rate-faster" and "rate-slower". input_ControlPush will handle it. This
fixes a race condition when "rate" ends up at a different value than
p_input->i_rate
------------------------------------------------------------------------