forked from videolan/vlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
24285 lines (19362 loc) · 909 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
------------------------------------------------------------------------
r16637 | courmisch | 2006-09-12 21:15:20 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/demux/asf/libasf.c
M /trunk/modules/demux/mp4/libmp4.c
M /trunk/modules/demux/mp4/mp4.c
M /trunk/modules/demux/nsc.c
M /trunk/modules/demux/playlist/b4s.c
M /trunk/modules/demux/real.c
M /trunk/modules/demux/subtitle.c
M /trunk/modules/demux/ts.c
M /trunk/modules/demux/vobsub.c
Most of demux/
------------------------------------------------------------------------
r16636 | courmisch | 2006-09-12 21:00:51 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/control/http/macro.c
M /trunk/modules/control/http/util.c
M /trunk/modules/control/rc.c
control/
------------------------------------------------------------------------
r16635 | courmisch | 2006-09-12 20:57:45 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access_filter/record.c
M /trunk/modules/access_filter/timeshift.c
M /trunk/modules/audio_filter/converter/a52tospdif.c
M /trunk/modules/audio_filter/converter/dtstospdif.c
M /trunk/modules/audio_filter/converter/s16tofloat32swab.c
M /trunk/modules/audio_output/alsa.c
More
------------------------------------------------------------------------
r16634 | courmisch | 2006-09-12 20:52:13 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
M /trunk/modules/access/http.c
Warnings
------------------------------------------------------------------------
r16633 | courmisch | 2006-09-12 20:49:41 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/audio_output/input.c
M /trunk/src/input/control.c
M /trunk/src/input/es_out.c
M /trunk/src/input/var.c
M /trunk/src/interface/interaction.c
M /trunk/src/misc/messages.c
M /trunk/src/misc/modules.c
M /trunk/src/misc/mtime.c
M /trunk/src/misc/update.c
M /trunk/src/misc/vlm.c
M /trunk/src/network/httpd.c
M /trunk/src/network/io.c
M /trunk/src/stream_output/sap.c
M /trunk/src/stream_output/stream_output.c
M /trunk/src/video_output/video_output.c
M /trunk/src/video_output/vout_intf.c
Ahem: (v)asprintf requires stdio.h; strndup requires string.h
------------------------------------------------------------------------
r16632 | courmisch | 2006-09-12 20:35:04 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/extras/m4/autoconf260.m4
M /trunk/vlc-config.in.in
Modernize configure.ac a bit
------------------------------------------------------------------------
r16631 | courmisch | 2006-09-12 20:03:45 +0200 (Tue, 12 Sep 2006) | 3 lines
Changed paths:
M /trunk/bootstrap
M /trunk/configure.ac
A /trunk/extras/m4
A /trunk/extras/m4/autoconf260.m4
M /trunk/m4
Revert lame revert from [16628].
Provide trivial work-around for users of obsolete autoconf
------------------------------------------------------------------------
r16630 | courmisch | 2006-09-12 19:47:05 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/bootstrap
Fortunately, VLC is not using CVS anymore.
------------------------------------------------------------------------
r16628 | damienf | 2006-09-12 19:03:39 +0200 (Tue, 12 Sep 2006) | 3 lines
Changed paths:
M /trunk/bootstrap
M /trunk/configure.ac
- bootstrap: removed vlcintf.h
- configure.ac: autoconf 2.59c is not yet supported in Cygwin, added Wine support for ActiveX plugin
------------------------------------------------------------------------
r16624 | sam | 2006-09-12 14:19:33 +0200 (Tue, 12 Sep 2006) | 3 lines
Changed paths:
M /trunk/src/network/io.c
* src/network/io.c: zorglub: gnagnagna ! :)
(fixed more coding style, and resolved a conflict I introduced)
------------------------------------------------------------------------
r16623 | sam | 2006-09-12 14:17:41 +0200 (Tue, 12 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
* src/misc/network/io.c: coding style fixes.
------------------------------------------------------------------------
r16622 | courmisch | 2006-09-11 21:53:18 +0200 (Mon, 11 Sep 2006) | 3 lines
Changed paths:
M /trunk/src/network/rootwrap.c
***Partial*** Solaris compile fix
(you don't expect me to actual try to compile VLC on puma.cti.ecp.fr, do you?)
------------------------------------------------------------------------
r16621 | courmisch | 2006-09-11 18:36:07 +0200 (Mon, 11 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
Improve socket polling logic so that errors to avoid silencing errors.
------------------------------------------------------------------------
r16619 | sam | 2006-09-11 17:12:33 +0200 (Mon, 11 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
* configure.ac: don't add AltiVec modules twice.
------------------------------------------------------------------------
r16618 | jb | 2006-09-11 15:34:17 +0200 (Mon, 11 Sep 2006) | 4 lines
Changed paths:
M /trunk/extras/contrib/src/Patches/x264-svn-win32.patch
*Contribs: Yet another x264 patch
------------------------------------------------------------------------
r16617 | jb | 2006-09-11 14:14:17 +0200 (Mon, 11 Sep 2006) | 4 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
D /trunk/extras/contrib/src/Patches/tiff-cross.patch
D /trunk/extras/contrib/src/Patches/tiff.patch
M /trunk/extras/contrib/src/packages.mak
* Contribs: Remove unneeded files
* Contribs: change gz => bz2 for autoconf package
------------------------------------------------------------------------
r16616 | jb | 2006-09-11 13:49:57 +0200 (Mon, 11 Sep 2006) | 3 lines
Changed paths:
M /trunk/extras/contrib/src/Makefile
M /trunk/extras/contrib/src/packages.mak
* Contribs: attempt to update Tiff/SDL/SDL_image
------------------------------------------------------------------------
r16615 | zorglub | 2006-09-11 13:32:31 +0200 (Mon, 11 Sep 2006) | 2 lines
Changed paths:
A /trunk/share/profiles/vsp.xsd
Up-to-date schema for profiles
------------------------------------------------------------------------
r16613 | sam | 2006-09-11 12:51:16 +0200 (Mon, 11 Sep 2006) | 3 lines
Changed paths:
M /trunk/bootstrap
M /trunk/mozilla/Makefile.am
M /trunk/src/Makefile.am
* No longer use the $(pic) variable, since all flags are properly set
in the configure script.
------------------------------------------------------------------------
r16611 | sam | 2006-09-11 11:07:58 +0200 (Mon, 11 Sep 2006) | 2 lines
Changed paths:
M /trunk/mozilla/Makefile.am
M /trunk/src/Makefile.am
* Don't use PIC on WIN32.
------------------------------------------------------------------------
r16608 | sam | 2006-09-11 10:20:43 +0200 (Mon, 11 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/mozilla/Makefile.am
* Always use PIC to build the Mozilla plugin.
------------------------------------------------------------------------
r16607 | zorglub | 2006-09-11 08:07:47 +0200 (Mon, 11 Sep 2006) | 7 lines
Changed paths:
A /trunk/share/profiles
A /trunk/share/profiles/en
A /trunk/share/profiles/en/http_transcode.vsp
Profile sample.
* Remove the l10n stuff, we'll handle it through po4a
* Add the ability to put several profiles in a file
* Split out the name of the elements
* Remove the prefix
Schema is not yet up-to-date.
------------------------------------------------------------------------
r16606 | zorglub | 2006-09-10 23:58:29 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/video_output/vout_subpictures.c
Remove useless debug
------------------------------------------------------------------------
r16604 | fkuehne | 2006-09-10 22:43:14 +0200 (Sun, 10 Sep 2006) | 1 line
Changed paths:
M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
* remove non-committed files from target to make buildbot happy. You obviously need to restore this to get a panel with icons
------------------------------------------------------------------------
r16602 | zorglub | 2006-09-10 22:36:09 +0200 (Sun, 10 Sep 2006) | 3 lines
Changed paths:
M /trunk/modules/gui/qt4/components/preferences.cpp
M /trunk/modules/gui/qt4/dialogs/prefs_dialog.cpp
M /trunk/modules/gui/qt4/dialogs_provider.cpp
M /trunk/modules/gui/qt4/qt4.cpp
M /trunk/modules/gui/qt4/qt4.hpp
A bit of cleanup
Add the qtu (Qt To Utf8) and qta (Qt To Ascii) macros
------------------------------------------------------------------------
r16600 | dionoea | 2006-09-10 22:21:14 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/libvlc.h
vout-filter is now part of the video-filter option. (video output core still needs to be fixed) Based on patch by hobophobe on IRC.
------------------------------------------------------------------------
r16599 | zorglub | 2006-09-10 22:20:21 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/stream_out/transcode.c
Fix typo
------------------------------------------------------------------------
r16598 | fkuehne | 2006-09-10 22:17:19 +0200 (Sun, 10 Sep 2006) | 1 line
Changed paths:
M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
M /trunk/modules/gui/macosx/controls.m
M /trunk/modules/gui/macosx/embeddedwindow.m
M /trunk/modules/gui/macosx/intf.h
* removed some further hangover from the original patch and finally added embeddedWindow to the xcode project
------------------------------------------------------------------------
r16597 | fkuehne | 2006-09-10 22:12:12 +0200 (Sun, 10 Sep 2006) | 16 lines
Changed paths:
M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/classes.nib
M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
M /trunk/extras/MacOSX/Resources/English.lproj/MainMenu.nib/keyedobjects.nib
M /trunk/extras/MacOSX/vlc.pbproj/project.pbxproj
M /trunk/modules/gui/macosx/Modules.am
M /trunk/modules/gui/macosx/controls.h
M /trunk/modules/gui/macosx/controls.m
M /trunk/modules/gui/macosx/embeddedwindow.m
A /trunk/modules/gui/macosx/fspanel.h
A /trunk/modules/gui/macosx/fspanel.m
M /trunk/modules/gui/macosx/intf.h
M /trunk/modules/gui/macosx/intf.m
M /trunk/modules/gui/macosx/vout.m
* New Fullscreen controller panel
- basically written by Jerome Decoodt <djc at videolan dot org> aka DiDjCodt
plus
- various patches, coding-style fixes, etc. here and there
- integration to VLCControls
- automagic fading-in and -out when in fullscreen mode
TODO:
- get and use native graphics. These are currently being prepared by Simon Damkjaer Andersen, who already donated new playback mode icons (to be committed soon)
- implement the volume slider
- fix seeking with the time slider
- check for memory leaks
- further clean-up
ATTENTION:
for the moment, you need certain images from Jerome's patch to get this running. Put them to extras/MacOSX/Resources/ and it'll work. Otherwise, VLC won't crash, but only show strings.
------------------------------------------------------------------------
r16596 | zorglub | 2006-09-10 21:00:21 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/gui/qt4/dialogs/playlist.cpp
M /trunk/modules/gui/qt4/dialogs/playlist.hpp
M /trunk/modules/gui/qt4/dialogs_provider.cpp
M /trunk/modules/gui/qt4/dialogs_provider.hpp
M /trunk/modules/gui/qt4/menus.cpp
Fix SD support
------------------------------------------------------------------------
r16593 | courmisch | 2006-09-10 19:54:17 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/bootstrap
Also control plugin export table
------------------------------------------------------------------------
r16592 | courmisch | 2006-09-10 19:46:50 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/src
Blind svn:ignore update
------------------------------------------------------------------------
r16590 | courmisch | 2006-09-10 19:40:29 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/Makefile.am
M /trunk/vlc-api.pl
Ensure libvlc only export symbols from libvlc API
------------------------------------------------------------------------
r16589 | zorglub | 2006-09-10 19:18:33 +0200 (Sun, 10 Sep 2006) | 3 lines
Changed paths:
M /trunk/modules/gui/qt4/main_interface.cpp
Handle more hotkeys
Prevent the volume slider from stealing the focus
------------------------------------------------------------------------
r16586 | xtophe | 2006-09-10 19:00:09 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
Don't build stream_out_switcher by default
------------------------------------------------------------------------
r16583 | sam | 2006-09-10 18:37:47 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/Makefile.am
* Makefile.am: add empty versioning information to libvlc.so.
------------------------------------------------------------------------
r16582 | sam | 2006-09-10 18:33:18 +0200 (Sun, 10 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/Makefile.am
* src/Makefile.am: do not use -avoid-version. [ported from r16581]
------------------------------------------------------------------------
r16580 | dionoea | 2006-09-09 22:19:32 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/codec/ffmpeg/ffmpeg.c
Also decode VP6 in flash ... this currently decodes video upside down (example file: http://samples.mplayerhq.hu/FLV/flash8/harrypotter-480x272-450-vp6.flv ). If someone knows how to tell the vout/codec to change line order ...
------------------------------------------------------------------------
r16579 | dionoea | 2006-09-09 21:39:31 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/codec/ffmpeg/ffmpeg.c
FFmpeg now has VP5/VP6 decoding (flash uses special variant with codec id VP6F in ffmpeg ... this isn't used in VLC yet)
------------------------------------------------------------------------
r16578 | courmisch | 2006-09-09 15:50:07 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
Switch net_Write to poll() to avoid fd set overflow.
------------------------------------------------------------------------
r16577 | courmisch | 2006-09-09 12:50:29 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
Accept non-socket handles through net_Read* (closes #731)
------------------------------------------------------------------------
r16576 | courmisch | 2006-09-09 12:37:37 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
Fix segfault. FTP access output is now somehow "tested"
------------------------------------------------------------------------
r16575 | courmisch | 2006-09-09 12:24:52 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
More fixes
------------------------------------------------------------------------
r16574 | courmisch | 2006-09-09 12:09:15 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
OSX compile fix
------------------------------------------------------------------------
r16573 | courmisch | 2006-09-09 12:03:06 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
Oups
------------------------------------------------------------------------
r16572 | courmisch | 2006-09-09 11:53:34 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
Untested FTP access output (closes #605)
------------------------------------------------------------------------
r16571 | courmisch | 2006-09-09 11:23:02 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/include/vlc_access.h
Fix typo
------------------------------------------------------------------------
r16570 | zorglub | 2006-09-09 11:12:23 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/interface/interaction.c
One more outdated copyright
------------------------------------------------------------------------
r16569 | zorglub | 2006-09-09 11:05:11 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access_output/shout.c
M /trunk/modules/codec/ffmpeg/mux.c
M /trunk/modules/demux/playlist/xspf.c
M /trunk/modules/demux/ts.c
M /trunk/modules/gui/skins2/commands/cmd_playtree.cpp
M /trunk/modules/gui/skins2/commands/cmd_playtree.hpp
M /trunk/modules/gui/skins2/controls/ctrl_tree.cpp
M /trunk/modules/gui/skins2/controls/ctrl_tree.hpp
M /trunk/modules/gui/skins2/utils/var_tree.cpp
M /trunk/modules/gui/skins2/utils/var_tree.hpp
M /trunk/modules/gui/skins2/vars/playtree.cpp
M /trunk/modules/gui/skins2/vars/playtree.hpp
M /trunk/modules/mux/mpeg/ts.c
Copyright stuff
------------------------------------------------------------------------
r16568 | courmisch | 2006-09-09 10:27:55 +0200 (Sat, 09 Sep 2006) | 3 lines
Changed paths:
M /trunk/modules/access/ftp.c
More cosmetic
(nice reinvention of the while() loop, but I prefer while())
------------------------------------------------------------------------
r16567 | courmisch | 2006-09-09 10:20:18 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
Cosmetic fixes
------------------------------------------------------------------------
r16566 | courmisch | 2006-09-09 10:19:23 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/ftp.c
Don't use someone's else domain in our default values
------------------------------------------------------------------------
r16565 | courmisch | 2006-09-09 09:48:55 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/misc/rtsp.c
M /trunk/modules/stream_out/rtp.c
Really fix SDP ordering here too (closes #716 again)
------------------------------------------------------------------------
r16564 | courmisch | 2006-09-09 09:43:58 +0200 (Sat, 09 Sep 2006) | 6 lines
Changed paths:
M /trunk/src/stream_output/sap.c
* Add multicast source filter (RFC4570),
so that one day we may be able to use IGMPv3/MLDv2 with VLC streams,
* Add recvonly attribute
* Really fix ordering (c= then t= then a=)
* Put type attribute as a session attribute (as per RFC4566)
------------------------------------------------------------------------
r16563 | courmisch | 2006-09-09 09:26:22 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/stream_output/sap.c
Another SDP ordering fix
------------------------------------------------------------------------
r16562 | dionoea | 2006-09-09 00:41:45 +0200 (Sat, 09 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/control/rc.c
Add vcrop, vzoom and vratio commands to the rc interface (code duplication is horrible ... i know)
------------------------------------------------------------------------
r16561 | thresh | 2006-09-08 23:42:19 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
A /trunk/vlc.spec.alt
ALT Linux VLC specfile
------------------------------------------------------------------------
r16560 | thresh | 2006-09-08 23:30:07 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/doc/fortunes.txt
forgot to mention the last fortune is from #videolan
------------------------------------------------------------------------
r16559 | thresh | 2006-09-08 23:27:21 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/doc/fortunes.txt
one more fortune
------------------------------------------------------------------------
r16558 | courmisch | 2006-09-08 21:50:25 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/misc/rtsp.c
M /trunk/modules/stream_out/rtp.c
Fix SDP line ordering (closes #716)
------------------------------------------------------------------------
r16557 | courmisch | 2006-09-08 21:00:04 +0200 (Fri, 08 Sep 2006) | 3 lines
Changed paths:
M /trunk/src/network/httpd.c
M /trunk/src/network/io.c
Complete(?) migration to net_strerror/net_errno
for nicer Win32 error messages
------------------------------------------------------------------------
r16556 | courmisch | 2006-09-08 20:33:32 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/error.c
Well, this time maybe
------------------------------------------------------------------------
r16555 | courmisch | 2006-09-08 20:26:50 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/error.c
Might fix Win32 compilation
------------------------------------------------------------------------
r16554 | courmisch | 2006-09-08 20:14:25 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/include/network.h
M /trunk/include/vlc_symbols.h
M /trunk/src/network/io.c
Add missing const qualifier and fix warnings
------------------------------------------------------------------------
r16553 | courmisch | 2006-09-08 20:08:39 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/share/Makefile.am
Don't rebuild the skin all the time
------------------------------------------------------------------------
r16552 | courmisch | 2006-09-08 20:07:18 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
Actually wreak havoc to the network API.
------------------------------------------------------------------------
r16551 | courmisch | 2006-09-08 19:56:58 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
Fixes
------------------------------------------------------------------------
r16550 | courmisch | 2006-09-08 19:53:14 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
M /trunk/src/network/tcp.c
Reallow file descriptor above FD_SETSIZE since we now use poll()
------------------------------------------------------------------------
r16549 | courmisch | 2006-09-08 19:51:58 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/src/network/io.c
Experimental poll()-capable merge of net_Read, net_ReadNonBlock and net_Select
------------------------------------------------------------------------
r16548 | courmisch | 2006-09-08 18:29:56 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
More cleanup
------------------------------------------------------------------------
r16547 | courmisch | 2006-09-08 18:26:49 +0200 (Fri, 08 Sep 2006) | 4 lines
Changed paths:
M /trunk/src/network/error.c
Add message for most of the Winsock errors
(not compile tested, but since no one else wanted to do such a boring commit,
you can't complain)
------------------------------------------------------------------------
r16546 | courmisch | 2006-09-08 18:04:29 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/network/io.c
Partial cleanup and improved Windows error messages
------------------------------------------------------------------------
r16545 | sam | 2006-09-08 17:48:21 +0200 (Fri, 08 Sep 2006) | 3 lines
Changed paths:
M /trunk/modules/stream_out/rtp.c
* modules/stream_out/rtp.c:
+ Remove SDP file when bailing out. Patch by Fabrice Ollivier.
------------------------------------------------------------------------
r16543 | xtophe | 2006-09-08 00:58:14 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/po/POTFILES.in
M /trunk/po/ca.po
M /trunk/po/cs.po
M /trunk/po/da.po
M /trunk/po/de.po
M /trunk/po/en_GB.po
M /trunk/po/es.po
M /trunk/po/fr.po
M /trunk/po/gl.po
M /trunk/po/he.po
M /trunk/po/hi.po
M /trunk/po/hu.po
M /trunk/po/it.po
M /trunk/po/ja.po
M /trunk/po/ka.po
M /trunk/po/ko.po
M /trunk/po/nl.po
M /trunk/po/oc.po
M /trunk/po/pt_BR.po
M /trunk/po/ro.po
M /trunk/po/ru.po
M /trunk/po/sv.po
M /trunk/po/tr.po
M /trunk/po/vlc.pot
M /trunk/po/zh_CN.po
M /trunk/po/zh_TW.po
Update-po
------------------------------------------------------------------------
r16542 | xtophe | 2006-09-08 00:20:04 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/extras/contrib/src/packages.mak
We need the latest autoconf. see [16537]
------------------------------------------------------------------------
r16541 | hartman | 2006-09-08 00:01:06 +0200 (Fri, 08 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access/cdda/access.c
M /trunk/modules/access/vcd/vcd.c
M /trunk/modules/access/vcdx/access.c
* Reset access->info.b_eof when we search. After you have read up untill the end, (like ps does), you can search back to the beginning, provided the access module allows this.
------------------------------------------------------------------------
r16540 | hartman | 2006-09-07 23:58:59 +0200 (Thu, 07 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/demux/ps.c
M /trunk/modules/demux/ps.h
* Improve duration calculation
------------------------------------------------------------------------
r16539 | courmisch | 2006-09-07 21:49:30 +0200 (Thu, 07 Sep 2006) | 2 lines
Changed paths:
M /trunk/include/network.h
M /trunk/include/vlc_symbols.h
M /trunk/src/network/udp.c
Implement net_SetDSCP() to set Diffserv code point on a socket.
------------------------------------------------------------------------
r16538 | courmisch | 2006-09-07 21:23:03 +0200 (Thu, 07 Sep 2006) | 4 lines
Changed paths:
M /trunk/include/vlc_threads.h
M /trunk/modules/misc/gnutls.c
Make GnuTLS use pthread directly rather than VLC's API when appropriate.
This would be needed if libvlc is ever embedded in an application that
also uses GnuTLS.
------------------------------------------------------------------------
r16537 | courmisch | 2006-09-07 21:09:27 +0200 (Thu, 07 Sep 2006) | 3 lines
Changed paths:
M /trunk/configure.ac
M /trunk/modules/misc/gnutls.c
- Check x509 certificates start and end date (*ahem*)
- Some cleanup
------------------------------------------------------------------------
r16536 | courmisch | 2006-09-07 20:27:41 +0200 (Thu, 07 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/modules/misc/gnutls.c
Require more recent GnuTLS and get rid of broken algos.
------------------------------------------------------------------------
r16535 | dionoea | 2006-09-07 19:02:46 +0200 (Thu, 07 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/access_output/shout.c
:%s/\t/ /g
------------------------------------------------------------------------
r16534 | damienf | 2006-09-07 00:15:29 +0200 (Thu, 07 Sep 2006) | 2 lines
Changed paths:
M /trunk/mozilla/vlcplugin.cpp
vlcplugin.cpp: don't forget to increment argc
------------------------------------------------------------------------
r16533 | damienf | 2006-09-07 00:07:22 +0200 (Thu, 07 Sep 2006) | 2 lines
Changed paths:
M /trunk/AUTHORS
M /trunk/THANKS
M /trunk/configure.ac
M /trunk/modules/video_filter/Modules.am
A /trunk/modules/video_filter/filter_event_info.h
A /trunk/modules/video_filter/opencv_example.cpp
A /trunk/modules/video_filter/opencv_wrapper.c
- OpenCV video filter module by Dugal Harris
------------------------------------------------------------------------
r16532 | zorglub | 2006-09-06 23:32:39 +0200 (Wed, 06 Sep 2006) | 3 lines
Changed paths:
M /trunk/modules/stream_out/transcode.c
Use the "video filter2" capability for transcode's vfilter option so we don't get vfilter1.
We need to fix the --video-filter option to accept both vfilter1 and vfilter2 and react correctly
------------------------------------------------------------------------
r16531 | xtophe | 2006-09-06 23:30:14 +0200 (Wed, 06 Sep 2006) | 2 lines
Changed paths:
M /trunk/mozilla/vlcplugin.cpp
Don't use the media library in the mozilla plugin
------------------------------------------------------------------------
r16530 | zorglub | 2006-09-06 23:05:21 +0200 (Wed, 06 Sep 2006) | 2 lines
Changed paths:
M /trunk/include/vlc_config_cat.h
M /trunk/modules/video_filter/adjust.c
M /trunk/modules/video_filter/gradient.c
M /trunk/modules/video_filter/invert.c
M /trunk/modules/video_filter/psychedelic.c
M /trunk/modules/video_filter/ripple.c
M /trunk/modules/video_filter/wave.c
Preferences categories are *not* categories. They are *user* strings.
------------------------------------------------------------------------
r16529 | zorglub | 2006-09-06 23:03:03 +0200 (Wed, 06 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/gui/qt4/components/preferences.cpp
One more encoding fix
------------------------------------------------------------------------
r16528 | jpsaman | 2006-09-06 12:02:20 +0200 (Wed, 06 Sep 2006) | 1 line
Changed paths:
M /trunk/modules/access_filter/timeshift.c
Typo tha -> that
------------------------------------------------------------------------
r16527 | fkuehne | 2006-09-05 23:11:46 +0200 (Tue, 05 Sep 2006) | 1 line
Changed paths:
M /trunk/configure.ac
* quick n dirty fix to get the OSX builds compiling for now
------------------------------------------------------------------------
r16526 | dionoea | 2006-09-05 18:42:10 +0200 (Tue, 05 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/codec/ffmpeg/ffmpeg.c
FFmpeg now has support for VMware's video codec.
------------------------------------------------------------------------
r16525 | thresh | 2006-09-05 15:22:38 +0200 (Tue, 05 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
link stream_out_switcher with ffmpeg libs (should fix w32 build)
------------------------------------------------------------------------
r16524 | thresh | 2006-09-05 14:33:53 +0200 (Tue, 05 Sep 2006) | 3 lines
Changed paths:
M /trunk/configure.ac
We can build ffmpeg and stream_out_switcher as plugins when found by pkg-config.
Can we?
------------------------------------------------------------------------
r16523 | zorglub | 2006-09-05 13:18:44 +0200 (Tue, 05 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/playlist/loadsave.c
Include errno.h
------------------------------------------------------------------------
r16522 | hartman | 2006-09-05 13:07:08 +0200 (Tue, 05 Sep 2006) | 2 lines
Changed paths:
M /trunk/doc/fortunes.txt
* Quote add
------------------------------------------------------------------------
r16521 | zorglub | 2006-09-05 09:16:17 +0200 (Tue, 05 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/gui/qt4/components/preferences.cpp
Convert items in the preferences tree to locale
------------------------------------------------------------------------
r16520 | zorglub | 2006-09-05 08:09:42 +0200 (Tue, 05 Sep 2006) | 2 lines
Changed paths:
M /trunk/include/vlc_playlist.h
M /trunk/po/POTFILES.in
M /trunk/po/ca.po
M /trunk/po/cs.po
M /trunk/po/da.po
M /trunk/po/de.po
M /trunk/po/en_GB.po
M /trunk/po/es.po
M /trunk/po/fr.po
M /trunk/po/gl.po
M /trunk/po/he.po
M /trunk/po/hi.po
M /trunk/po/hu.po
M /trunk/po/it.po
M /trunk/po/ja.po
M /trunk/po/ka.po
M /trunk/po/ko.po
M /trunk/po/nl.po
M /trunk/po/oc.po
M /trunk/po/pt_BR.po
M /trunk/po/ro.po
M /trunk/po/ru.po
M /trunk/po/sv.po
M /trunk/po/tr.po
M /trunk/po/vlc.pot
M /trunk/po/zh_CN.po
M /trunk/po/zh_TW.po
M /trunk/src/Makefile.am
M /trunk/src/playlist/control.c
M /trunk/src/playlist/engine.c
M /trunk/src/playlist/item.c
M /trunk/src/playlist/loadsave.c
A /trunk/src/playlist/playlist_internal.h
M /trunk/src/playlist/search.c
M /trunk/src/playlist/services_discovery.c
M /trunk/src/playlist/sort.c
M /trunk/src/playlist/thread.c
M /trunk/src/playlist/tree.c
Split playlist include file in public/private
------------------------------------------------------------------------
r16519 | damienf | 2006-09-04 23:48:45 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/input/input_internal.h
input.c: fixed state (broke pause)
------------------------------------------------------------------------
r16518 | xtophe | 2006-09-04 21:28:53 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/po/pt_PT.po
New update of the Portuguese l10n
------------------------------------------------------------------------
r16517 | damienf | 2006-09-04 20:19:03 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/gui/ncurses.c
fixed typo
------------------------------------------------------------------------
r16516 | damienf | 2006-09-04 20:17:10 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/mozilla/control/npolibvlc.cpp
M /trunk/mozilla/test.html
M /trunk/mozilla/vlcshell.cpp
mozilla: more clean-ups
------------------------------------------------------------------------
r16515 | damienf | 2006-09-04 19:51:10 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/include/vlc/libvlc.h
M /trunk/src/control/input.c
- added input state & input rate in control APIs
------------------------------------------------------------------------
r16514 | damienf | 2006-09-04 19:50:19 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/include/vlc_input.h
forgot that one in last commit
------------------------------------------------------------------------
r16513 | damienf | 2006-09-04 19:48:38 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/modules/control/http/http.c
M /trunk/modules/gui/beos/MediaControlView.cpp
M /trunk/modules/gui/ncurses.c
M /trunk/src/input/input.c
M /trunk/src/input/input_internal.h
- input: added intermediate state info opening & buffering
------------------------------------------------------------------------
r16512 | xtophe | 2006-09-04 15:32:02 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/activex/Makefile.am
As a second effect of the recent libtool/build system commits, libvlc.dll has loose the extra .a. hurray.
------------------------------------------------------------------------
r16511 | xtophe | 2006-09-04 12:43:50 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/configure.ac
M /trunk/po/ca.po
M /trunk/po/cs.po
M /trunk/po/da.po
M /trunk/po/de.po
M /trunk/po/en_GB.po
M /trunk/po/es.po
M /trunk/po/fr.po
M /trunk/po/gl.po
M /trunk/po/he.po
M /trunk/po/hi.po
M /trunk/po/hu.po
M /trunk/po/it.po
M /trunk/po/ja.po
M /trunk/po/ka.po
M /trunk/po/ko.po
M /trunk/po/nl.po
M /trunk/po/oc.po
M /trunk/po/pt_BR.po
M /trunk/po/ro.po
M /trunk/po/ru.po
M /trunk/po/sv.po
M /trunk/po/tr.po
M /trunk/po/vlc.pot
M /trunk/po/zh_CN.po
M /trunk/po/zh_TW.po
We don't use utf-8 in localisable string so drop the option.
------------------------------------------------------------------------
r16510 | sam | 2006-09-04 12:12:03 +0200 (Mon, 04 Sep 2006) | 2 lines
Changed paths:
M /trunk/src/input/decoder.c
* src/input/decoder.c: sorry, I'm not allowed to put UTF-8 here.
------------------------------------------------------------------------
r16509 | xtophe | 2006-09-04 11:27:21 +0200 (Mon, 04 Sep 2006) | 4 lines
Changed paths:
M /trunk/configure.ac
M /trunk/po/POTFILES.in