File: ChangeLog

package info (click to toggle)
xine-plugin 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,472 kB
  • ctags: 3,042
  • sloc: sh: 9,367; ansic: 6,403; cpp: 1,563; makefile: 157
file content (1119 lines) | stat: -rw-r--r-- 28,223 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
2008-07-26   dsalt	18:56	Darren Salt

	Files:	Makefile.am (1.7) (+1 -1)
	
	Don't try to run mkchlog if there's no CVS directory.
	
2008-07-26   dsalt	18:52	Darren Salt

	Files:	src/npentry.c (1.5) (+1 -1)
	
	Avoid crashing Firefox 3 by removing a user agent check.
	This check isn't good anyway because the user agent string is configurable.
	
2008-04-27   dsalt	17:54	Darren Salt

	Files:	README (1.7) (+9 -1)
		src/plugin.c (1.79) (+44 -2)
		configure.ac (1.17) (+1 -1)
	
	Use href= to make the plugin clickable rather than as an alias for src=.
	Indicate that it's clickable by changing the pointer shape.
	(Fixes things such as Apple's film trailers.)
	
2008-04-02   dsalt	21:40	Darren Salt

	Files:	Makefile.am (1.6) (+5 -0)
	
	Cause the changelog to be generated by "make dist" (requires network access).
	We probably really want a manually-updated changelog...
	
2008-04-02   dsalt	21:33	Darren Salt

	Files:	.cvsignore (1.3) (+2 -1)
	
	Update .cvsignore.
	
2008-04-02   dsalt	21:32	Darren Salt

	Files:	ChangeLog (1.4) (+0 -0)
	
	Don't track ChangeLog since it's a generated file.
	
2008-04-02   dsalt	21:24	Darren Salt

	Files:	configure.ac (1.16) (+11 -9)
	
	Minor cleanups and tweaks.
	Bump minimum autoconf version to 2.59 & minimum xine-lib version to 1.1.0.
	Have "make dist" generate a bzipped tarball.
	
2008-04-02   dsalt	21:19	Darren Salt

	Files:	Makefile.am (1.5) (+1 -1)
		cvscompile.sh (1.5) (+0 -0)
		autogen.sh (1.1) ( )
	
	Use autogen.sh instead of cvscompile.sh (for consistency).
	
2008-02-14   dsalt	02:24	Darren Salt

	Files:	debian/changelog (1.4) (+3 -9)
		debian/rules (1.3) (+1 -1)
		debian/docs (1.2) (+1 -1)
		debian/copyright (1.2) (+1225 -17)
		debian/control (1.4) (+3 -0)
	
	Mostly sync debian/* with actual packaging used in Debian.
	
2008-02-14   dsalt	02:13	Darren Salt

	Files:	src/plugin.c (1.78) (+17 -8)
	
	Display negative times properly (even though they Shouldn't Happen).
	
2007-12-15   dsalt	14:04	Darren Salt

	Files:	mkchlog (1.2) (+1 -1)
	
	Use UTF-8 for names in the changelog.
	
2007-12-15   dsalt	04:52	Darren Salt

	Files:	src/plugin.c (1.77) (+11 -11)
	
	Stop using xine_gui_send_vo_data since it's removed from xine-lib 1.2.
	
2007-12-15   dsalt	03:56	Darren Salt

	Files:	src/plugin.c (1.76) (+2 -2)
	
	Fix build failure against xine-lib-1.2.
	
2007-11-15   klan	13:45	Claudio Ciccani

	Files:	configure.ac (1.15) (+11 -0)
		src/plugin.c (1.75) (+13 -7)
		src/playlist.c (1.17) (+10 -2)
	
	Added configure option --disable-playlist-parser.
	
2007-11-05   klan	14:08	Claudio Ciccani

	Files:	src/plugin.c (1.74) (+22 -3)
	
	By default, do not trust the mimetype returned by the server
	(change the DEMUXER_BY_MIME definition to revert to old behaviour).
	
2007-11-03   klan	15:07	Claudio Ciccani

	Files:	src/plugin.c (1.73) (+1 -0)
	
	Do not open playlist's tracks with an explicit demuxer.
	
2007-11-03   klan	15:04	Claudio Ciccani

	Files:	src/playlist.c (1.16) (+5 -5)
	
	Shut up warnings.
	
2007-05-31   klan	13:44	Claudio Ciccani

	Files:	src/plugin.c (1.72) (+42 -22)
	
	No longer force video driver to xshm when multiple instances of the plugin are requested.
	
	Check whether url passed to NPP_NewStream() matches the url that must be played
	(this is a workaround to support plugins, like quicktime and media player, that
	support passing a resource name, e.g. an image, by using the "src" parameter
	while the effective mrl is passed via a non-standard parameter, e.g. "href").
	
2007-05-16   klan	10:05	Claudio Ciccani

	Files:	ChangeLog (1.3) (+978 -4)
		mkchlog (1.1) ( )
	
	Added mkchlog: a small scripts (re)generating ChangeLog from cvs logs.
	(Please, add you own name in the script if not listed).
	
	Updated ChangeLog.
	
2007-05-16   klan	09:53	Claudio Ciccani

	Files:	configure.ac (1.14) (+1 -1)
		src/plugin.c (1.71) (+2 -7)
		src/playlist.c (1.15) (+10 -2)
	
	Switch to version 1.0.1.
	
2007-05-15   dsalt	18:40	Darren Salt

	Files:	ChangeLog (1.2) (+5 -0)
		src/plugin.c (1.70) (+7 -2)
	
	Strip parameters from rtsp URLs received via Real playlists.
	Add some content to the changelog :-)
	
2007-05-04   klan	15:43	Claudio Ciccani

	Files:	src/playlist.c (1.14) (+58 -7)
		src/playlist.h (1.8) (+1 -0)
	
	Handle .qtl playlists.
	Fixed time attribute parsing.
	
2007-02-02   dsalt	23:45	Darren Salt

	Files:	debian/changelog (1.3) (+8 -3)
		debian/control (1.3) (+2 -2)
	
	Updated packaging.
	
2007-02-02   dsalt	23:44	Darren Salt

	Files:	configure.ac (1.13) (+3 -1)
		src/Makefile.am (1.13) (+1 -1)
		m4/_xine.m4 (1.2) (+15 -0)
	
	Cause the plugin to be linked with libX11.
	Prefer pkg-config for detecting X.
	Add a test for -Wl,-z,defs but leave it disabled for now.
	
2007-02-02   klan	13:34	Claudio Ciccani

	Files:	demo/Makefile.am (1.4) (+6 -1)
	
	Added missing extra dist files.
	
2007-02-02   klan	13:33	Claudio Ciccani

	Files:	include/Makefile.am (1.2) (+4 -0)
		include/obsolete/Makefile.am (1.2) (+4 -0)
	
	Added missing targets "debug" and "install-debug".
	
2007-01-28   dsalt	19:10	Darren Salt

	Files:	debian/changelog (1.2) (+3 -3)
		debian/rules (1.2) (+1 -0)
		debian/control (1.2) (+9 -10)
	
	Various cleanups and some build dependency fixes.
	
2007-01-28   dsalt	18:02	Darren Salt

	Files:	Makefile.am (1.4) (+1 -1)
		include/obsolete/Makefile.am (1.1) ( )
		include/obsolete/.cvsignore (1.1) ( )
		include/Makefile.am (1.1) ( )
		include/.cvsignore (1.1) ( )
		configure.ac (1.12) (+2 -0)
	
	Distribute include/*.h and include/obsolete/*.h.
	
2007-01-28   dsalt	17:42	Darren Salt

	Files:	.cvsignore (1.2) (+1 -0)
	
	Have cvs ignore the tarball generated by "make dist".
	
2007-01-28   dsalt	17:37	Darren Salt

	Files:	demo/Makefile.am (1.3) (+1 -1)
	
	Fix "make dist" (test.html doesn't exist).
	
2007-01-23   klan	11:15	Claudio Ciccani

	Files:	src/methods.h (1.2) (+2 -0)
		src/plugin.c (1.69) (+17 -8)
	
	Added support for the Quicktime method Rewind().
	
	When a playlist is detected, remember the type to avoid (re)calling playlist_type() in NPP_StreamAsFile().
	
2007-01-22   klan	18:32	Claudio Ciccani

	Files:	src/playlist.c (1.13) (+58 -152)
		src/plugin.c (1.68) (+1 -0)
		src/playlist.h (1.7) (+1 -0)
	
	Added support for XSPF playlists.
	
2007-01-22   klan	17:52	Claudio Ciccani

	Files:	src/plugin.c (1.67) (+20 -13)
	
	Allocate buffer for mimetypes dinamically.
	
2007-01-22   klan	17:27	Claudio Ciccani

	Files:	src/plugin.c (1.66) (+2 -1)
	
	Added a specific mimetype to identify the plugin (application/x-xine-plugin).
	
2007-01-21   klan	15:14	Claudio Ciccani

	Files:	src/plugin.c (1.65) (+4 -5)
	
	Avoid including the version in the plugin name.
	
2007-01-20   klan	13:50	Claudio Ciccani

	Files:	TODO (1.7) (+1 -2)
	
	Plan to add a context menu (or a control panel) for playback control.
	
2007-01-20   klan	13:47	Claudio Ciccani

	Files:	demo/test_scriptable.html (1.3) (+39 -10)
	
	Use OBJECT tag instead of EMBED (compatibility with XHTML).
	Added some javascript code to display the current time position.
	
2007-01-20   klan	13:45	Claudio Ciccani

	Files:	src/plugin.c (1.64) (+14 -1)
	
	Keep compatibility with older versions of xine-lib (< 1.1.4).
	Check for incompatible version of intalled xine-lib.
	
2007-01-20   klan	09:00	Claudio Ciccani

	Files:	src/Makefile.am (1.12) (+1 -1)
		src/plugin.c (1.63) (+270 -300)
		src/methods.h (1.1) ( )
	
	Assign an ID to each javascript method and use a table of NPIdentifiers for faster resolution.
	
2007-01-19   klan	14:36	Claudio Ciccani

	Files:	src/plugin.c (1.62) (+112 -36)
	
	Renamed playback_start()/playback_stop() to player_start()/player_stop().
	
	Modified the behaviour of the "autostart" parameter,
	i.e. start the player thread but not the playback.
	
	Support for the parameter "autoplay" (Quicktime).
	
	Added javascript methods to control the playlist:
	these are RealPlayer's methods HasNextEntry(), HasPrevEntry(), DoNextEntry(),
	DoPrevEntry(), GetNumEntries(), GetCurrentEntry() + the xine's extension
	SetCurrentEntry() (to select a playlist entry by its ID).
	
2007-01-19   klan	14:30	Claudio Ciccani

	Files:	src/playlist.h (1.6) (+6 -3)
	
	Automatically assign an ID to each playlist entry.
	
2007-01-18   klan	17:18	Claudio Ciccani

	Files:	src/plugin.c (1.61) (+3 -4)
	
	Undone last change: call NPN_GetURL only if the protocol is supported by both mozilla and xine.
	
2007-01-18   klan	17:13	Claudio Ciccani

	Files:	src/plugin.c (1.60) (+7 -2)
	
	Check whether the protocol is supported by mozilla before calling NPN_GetUrl.
	
2007-01-18   klan	16:42	Claudio Ciccani

	Files:	src/npentry.c (1.4) (+1 -1)
	
	Fixed an error message.
	
2007-01-18   klan	15:44	Claudio Ciccani

	Files:	src/npentry.c (1.3) (+50 -35)
	
	Support older NPAPI (at least 0.13).
	
2007-01-18   klan	13:55	Claudio Ciccani

	Files:	src/plugin.c (1.59) (+77 -72)
	
	Support the URL parameter.
	
	Strings returned from NPObject must be duplicated.
	
2007-01-18   klan	11:37	Claudio Ciccani

	Files:	demo/test_object.html (1.2) (+1 -1)
	
	Use parameter "src" instead of "filename" (the latter is not standard).
	
2007-01-18   klan	11:36	Claudio Ciccani

	Files:	configure.ac (1.11) (+10 -0)
	
	Added option --disable-scripting to disable JavaScript support.
	
2007-01-18   klan	11:34	Claudio Ciccani

	Files:	src/plugin.c (1.58) (+73 -27)
	
	More quicktime commands: GetDuration, GetTime, SetTime, GetStartTime,
	                         SetStartTime, GetTimeScale.
	
2007-01-17   klan	15:29	Claudio Ciccani

	Files:	src/plugin.c (1.57) (+7 -2)
	
	Check for NULL arguments passed to the plugin.
	
2007-01-17   klan	15:19	Claudio Ciccani

	Files:	demo/test.html (1.5) (+0 -0)
		demo/test_scriptable.html (1.2) (+12 -1)
		demo/test_object.html (1.1) ( )
		demo/test_embed.html (1.1) ( )
		demo/test_2embeds.html (1.1) ( )
		demo/test2.html (1.3) (+0 -0)
	
	More tests.
	
2007-01-17   klan	15:17	Claudio Ciccani

	Files:	src/plugin.c (1.56) (+232 -47)
	
	Fixed a memory leak.
	
	Added support for the "autostart" parameter.
	
	Implemented more javascript commands:
	     - Real Player: GetClipWidth, GetClipHeight, GetPlayState,
	                    GetAutoStart, SetAutoStart, GetLoop, SetLoop,
	                    GetNumLoop, SetNumLoop, GetSource, SetSource.
	
	     - WMP:         GetCurrentPosition, SetCurrentPosition,
	                    GetPlayCount, SetPlayCount, GetFileName, SetFileName
	                    (also supports the following properties:
	                     plugin.Filaname, plugin.autoStart, plugin.playCount).
	
	     - Quicktime:   GetIsLooping, SetIsLooping, GetURL, SetURL.
	
2007-01-17   klan	15:10	Claudio Ciccani

	Files:	src/npentry.c (1.2) (+3 -2)
	
	Fixed an error message.
	
2007-01-16   klan	16:59	Claudio Ciccani

	Files:	demo/test_scriptable.html (1.1) ( )
	
	Added (simple) scriptability test.
	
2007-01-16   klan	16:57	Claudio Ciccani

	Files:	README (1.6) (+1 -0)
		src/plugin.c (1.55) (+273 -5)
		src/npunix.c (1.5) (+0 -0)
		src/npentry.c (1.1) ( )
		src/Makefile.am (1.11) (+3 -1)
		TODO (1.6) (+0 -2)
	
	Killed another TODO: Implemented JavaScript support!
	
	The plugin actually supports the following RealPlayer methods:
	     - CanPlay, CanPause, CanStop
	     - DoPlay, DoPause, DoStop
	     - GetLength, GetPosition, SetPosition
	and the following WMP methods/properties:
	     - controls::play(), controls::pause(), controls::stop()
	     - controls::currentPosition
	
2007-01-15   klan	13:38	Claudio Ciccani

	Files:	configure.ac (1.10) (+0 -13)
	
	No longer need nspr-config.
	
2007-01-15   klan	13:37	Claudio Ciccani

	Files:	include/jni.h (1.1) ( )
		src/plugin.c (1.54) (+1 -7)
		src/npupp.h (1.2) (+1 -1)
		src/npunix.c (1.4) (+302 -166)
		src/npapi.h (1.3) (+1 -1)
		src/jritypes.h (1.2) (+0 -0)
		src/jri_md.h (1.2) (+0 -0)
		src/jri.h (1.2) (+0 -0)
		src/Makefile.am (1.10) (+4 -4)
		include/obsolete/prsem.h (1.1) ( )
		include/obsolete/protypes.h (1.1) ( )
		include/obsolete/probslet.h (1.1) ( )
		include/obsolete/pralarm.h (1.1) ( )
		include/prtypes.h (1.1) ( )
		include/prcpucfg.h (1.1) ( )
		include/npupp.h (1.1) ( )
		include/nptypes.h (1.1) ( )
		include/npruntime.h (1.1) ( )
		include/npapi.h (1.1) ( )
		include/jritypes.h (1.1) ( )
		include/jri_md.h (1.1) ( )
		include/jri.h (1.1) ( )
		include/jni_md.h (1.1) ( )
	
	Replaced old headers by latest headers from Gecko SDK.
	
2007-01-11   klan	15:07	Claudio Ciccani

	Files:	src/playlist.c (1.12) (+151 -2)
	
	Support parsing playlists by using xine's xmplarser (define USE_XML_PARSER to 0 to disable it).
	
2007-01-10   klan	13:28	Claudio Ciccani

	Files:	src/playlist.c (1.11) (+33 -20)
	
	Mind about <ENTRY>,</ENTRY> tags when parsing ASX playlists.
	
2007-01-03   klan	15:18	Claudio Ciccani

	Files:	src/plugin.c (1.53) (+4 -4)
	
	Privilege global starttime over track's starttime.
	
2007-01-03   klan	11:28	Claudio Ciccani

	Files:	src/plugin.c (1.52) (+5 -7)
	
	Do not close the stream when exiting from the player thread
	(faster if a new mrl must be opened).
	
2006-12-26   klan	14:13	Claudio Ciccani

	Files:	src/playlist.c (1.10) (+27 -3)
	
	Check whether we got a RAM playlist instead of a SMIL playlist or a Ref list instead of an ASX playlist.
	
2006-12-24   klan	14:39	Claudio Ciccani

	Files:	src/playlist.c (1.9) (+6 -0)
	
	Support parsing references embedded into .ram playlists.
	
2006-12-24   klan	14:37	Claudio Ciccani

	Files:	src/plugin.c (1.51) (+4 -2)
	
	Added application/smil to the list of supported mimetypes.
	
2006-12-24   klan	11:37	Claudio Ciccani

	Files:	src/playlist.c (1.8) (+9 -6)
	
	Avoid usage of strdupa().
	
2006-12-24   klan	11:35	Claudio Ciccani

	Files:	src/plugin.c (1.50) (+36 -8)
	
	Support the STARTTIME parameter.
	
2006-12-23   klan	11:22	Claudio Ciccani

	Files:	src/plugin.c (1.49) (+11 -2)
	
	Override mrl passed via "src" parameter with the mrl passed via "href"/"qtsrc"/"filename" parameter by calling NPN_GetURL().
	
2006-12-22   klan	18:11	Claudio Ciccani

	Files:	src/plugin.c (1.48) (+2 -5)
	
	Use start position in units of 65535 when seeking to a percentual position.
	
2006-12-19   klan	14:14	Claudio Ciccani

	Files:	src/plugin.c (1.47) (+14 -9)
	
	Enable cancelation during xine_open() to avoid blocking the browser.
	
2006-12-19   klan	11:18	Claudio Ciccani

	Files:	src/plugin.c (1.46) (+14 -5)
	
	Support the "CurrentPosition" plugin parameter.
	
2006-12-19   klan	11:16	Claudio Ciccani

	Files:	src/playlist.c (1.7) (+28 -17)
	
	Parse the "starttime" tag of ASX playlists, too.
	
2006-12-19   klan	10:35	Claudio Ciccani

	Files:	src/playlist.h (1.5) (+1 -1)
	
	Fixed wrong allocation size.
	
2006-12-18   klan	21:39	Claudio Ciccani

	Files:	src/playlist.c (1.6) (+39 -21)
		src/plugin.c (1.45) (+22 -20)
		src/playlist.h (1.4) (+6 -1)
	
	Support starting the playback of a track at the time specified in playlist.
	
	Setup the stream in SetWindow() to show something until the playback starts.
	
2006-12-12   dsalt	04:13	Darren Salt

	Files:	debian/changelog (1.1) ( )
		debian/xine-plugin.links (1.1) ( )
		debian/rules (1.1) ( )
		debian/docs (1.1) ( )
		debian/copyright (1.1) ( )
		debian/control (1.1) ( )
		debian/compat (1.1) ( )
	
	Initial commit.
	
2006-12-12   dsalt	03:54	Darren Salt

	Files:	src/Makefile.am (1.9) (+1 -1)
	
	Distribute playlist.h.
	
2006-12-12   dsalt	03:15	Darren Salt

	Files:	demo/.cvsignore (1.1) ( )
		m4/.cvsignore (1.1) ( )
	
	Missing ignore files.
	
2006-12-12   dsalt	03:13	Darren Salt

	Files:	configure.ac (1.9) (+13 -0)
		src/plugin.c (1.44) (+2 -2)
		src/npapi.h (1.2) (+500 -182)
		src/Makefile.am (1.8) (+2 -2)
	
	Update npapi.h & npupp.h (copy from gxine) to avoid segfaulting on 64-bit.
	This requires libnspr (config may need fixes for sources other than xulrunner)
	and a couple of changes to plugin.c.
	
2006-12-12   dsalt	02:36	Darren Salt

	Files:	configure.ac (1.8) (+2 -2)
	
	Get some help from autoconf to format our configuration options' help text.
	
2006-11-25   klan	14:17	Claudio Ciccani

	Files:	.cvsignore (1.1) ( )
		src/.cvsignore (1.1) ( )
		misc/.cvsignore (1.1) ( )
	
	Added missing cvsignore.
	
2006-11-25   klan	14:12	Claudio Ciccani

	Files:	configure.ac (1.7) (+26 -2)
		src/plugin.c (1.43) (+1 -1)
		misc/Makefile.am (1.4) (+2 -2)
	
	Added options to specify plugin directory and logo format to use during compilation.
	
2006-11-24   klan	20:59	Claudio Ciccani

	Files:	src/plugin.c (1.42) (+80 -51)
	
	Translate window to video coordinates before sending mouse events.
	Periodically query window position (because the plugin doesn't receive ConfigureNotify events).
	Do not reallocate the video window when the parent window size changes, simply resize it.
	
2006-11-23   klan	16:54	Claudio Ciccani

	Files:	src/Makefile.am (1.7) (+2 -0)
	
	Added -D_GNU_SOURCE.
	
2006-11-23   klan	16:38	Claudio Ciccani

	Files:	src/plugin.c (1.41) (+57 -28)
	
	Avoid calling XInitThreads and use the new x11 visual instead.
	Calling XInitThreads from the plugin is a bit buggy because
	XInitThreads should be called before other Xlib functions.
	
2006-11-23   klan	16:36	Claudio Ciccani

	Files:	src/playlist.c (1.5) (+12 -12)
	
	Avoid conflicting functions names (getline()).
	
2006-11-19   klan	11:46	Claudio Ciccani

	Files:	misc/Makefile.am (1.3) (+3 -2)
		src/plugin.c (1.40) (+1 -1)
		misc/xine-logo.ogg (1.1) ( )
	
	Added logo in Ogg/Theora format to avoid depending on ImageMagick.
	
2006-11-18   klan	16:40	Claudio Ciccani

	Files:	src/plugin.c (1.39) (+24 -20)
	
	Avoid canceling the player thread (it's a bit buggy with libxine).
	
2006-10-31   klan	09:50	Claudio Ciccani

	Files:	src/plugin.c (1.38) (+8 -2)
	
	Enable using unscaled osd when available.
	
2006-10-30   klan	16:45	Claudio Ciccani

	Files:	src/playlist.c (1.4) (+56 -37)
		src/plugin.c (1.37) (+96 -74)
		src/playlist.h (1.3) (+80 -5)
	
	Full playlist implementation.
	
2006-10-24   klan	09:17	Claudio Ciccani

	Files:	src/plugin.c (1.36) (+1 -1)
	
	If audio driver autoload fails, use audio driver "none".
	
2006-10-11   klan	10:04	Claudio Ciccani

	Files:	src/playlist.c (1.3) (+37 -14)
		src/plugin.c (1.35) (+7 -2)
		src/playlist.h (1.2) (+1 -1)
	
	Detect playlists by mimetype, too.
	
2006-10-09   klan	09:09	Claudio Ciccani

	Files:	src/playlist.c (1.2) (+20 -1)
	
	Ignore metainfo in RAM playlists.
	
2006-10-07   klan	16:11	Claudio Ciccani

	Files:	misc/xine-logo.png (1.3) (+102 -49)
	
	288x216.
	
2006-10-07   klan	16:10	Claudio Ciccani

	Files:	src/plugin.c (1.34) (+5 -2)
	
	Set osd size to 288x80 by default.
	
2006-10-07   klan	14:03	Claudio Ciccani

	Files:	misc/xine-logo.png (1.2) (+49 -73)
	
	Use a smaller logo (240x180 instead of 320x240).
	
2006-10-07   klan	13:54	Claudio Ciccani

	Files:	TODO (1.5) (+0 -2)
		src/plugin.c (1.33) (+58 -28)
		misc/xine-logo.png (1.1) ( )
		misc/Makefile.am (1.2) (+5 -1)
		configure.ac (1.6) (+3 -1)
	
	Killed another TODO: display xine's logo on startup.
	
2006-10-06   klan	15:24	Claudio Ciccani

	Files:	src/plugin.c (1.32) (+1 -1)
	
	Fixed a typo.
	
2006-10-06   klan	15:12	Claudio Ciccani

	Files:	src/plugin.c (1.31) (+2 -1)
	
	Make plugins detection scripts happy.
	
2006-10-01   klan	09:00	Claudio Ciccani

	Files:	src/plugin.c (1.30) (+34 -5)
	
	Redirect mouse events to xine.
	
2006-10-01   klan	08:59	Claudio Ciccani

	Files:	configure.ac (1.5) (+1 -1)
	
	Enable logging when compiling for debug.
	
2006-09-30   klan	14:40	Claudio Ciccani

	Files:	src/plugin.c (1.29) (+1 -1)
	
	Set border width of the subwindow to 0.
	
2006-09-30   klan	14:30	Claudio Ciccani

	Files:	demo/test2.html (1.2) (+1 -1)
	
	The previous file was the wrong one.
	
2006-09-30   klan	14:23	Claudio Ciccani

	Files:	demo/test.html (1.4) (+1 -1)
		demo/test2.html (1.1) ( )
		demo/test.ogg (1.1) ( )
	
	Added test with two embed items.
	
2006-09-30   klan	14:19	Claudio Ciccani

	Files:	AUTHORS (1.5) (+2 -1)
		src/plugin.c (1.28) (+773 -816)
		src/playlist.h (1.1) ( )
		src/playlist.c (1.1) ( )
		src/Makefile.am (1.6) (+3 -2)
		configure.ac (1.4) (+18 -13)
		README (1.5) (+16 -12)
	
	Rewrite from scratch of the xine plugin:
	- fixed a number of bugs with relative url and parameters
	  being passed to the plugin
	- playlists support (m3u, pls, asx, wvx, wax, ram, rpm, smil)
	- support for MULTIPLE INSTANCES WITHIN THE SAME PAGE
	- support for proportional and hidden embedded items
	- support for repeat mode
	- no longer crash in pages that embed flash objects
	- opening streams no longer blocks the browser
	
2005-09-12   miguelfreitas	00:47	Miguel Freitas

	Files:	src/plugin.c (1.27) (+10 -9)
	
	try Jason Tackaberry suggestion to fix problem of the growing X event
	queue with increased CPU load (that is, some events were never dequeued)
	
2003-08-12   miguelfreitas	02:11	Miguel Freitas

	Files:	src/plugin.c (1.26) (+2 -43)
	
	rework main loop, completion events are not handled anymore.
	that also fix some hanging problems when closing window
	
2003-08-10   miguelfreitas	18:54	Miguel Freitas

	Files:	src/plugin.c (1.25) (+132 -88)
	
	- file logging
	- Olivier Tache's idea of "mrl" parameter
	
2003-03-28   f1rmb	08:30	Daniel Caujolle-Bert

	Files:	src/plugin.c (1.24) (+2 -2)
	
	enqueue mrls to an hypotetical running session (prevent billion xine startings)
	
2003-03-28   miguelfreitas	02:38	Miguel Freitas

	Files:	AUTHORS (1.4) (+2 -1)
		TODO (1.4) (+5 -3)
		README (1.4) (+1 -4)
	
	update some docs
	
2003-03-28   miguelfreitas	02:31	Miguel Freitas

	Files:	src/plugin.c (1.23) (+448 -356)
	
	- fix XLockDisplay bugs and skip completion events
	- move window/stream initialization to NPP_SetWindow(). that should improve
	  compatibility since the order which NPP_SetWindow and NPP_NewStream are
	  called doesn't matter. (idea from Jeroen Asselman's patch)
	- launch xine player for handling non-embedded mode
	
2003-02-15   miguelfreitas	02:31	Miguel Freitas

	Files:	src/plugin.c (1.22) (+55 -43)
	
	do not send osd too fast and merge xfree86 bug workaround
	
2003-02-05   miguelfreitas	02:03	Miguel Freitas

	Files:	configure.ac (1.3) (+1 -1)
	
	time to a new version
	
2003-02-05   miguelfreitas	02:01	Miguel Freitas

	Files:	INSTALL (1.2) (+9 -6)
		README (1.3) (+36 -7)
	
	update docs. this plugin is getting usable...
	
2003-02-05   miguelfreitas	01:15	Miguel Freitas

	Files:	src/plugin.c (1.21) (+65 -9)
	
	osd
	
2003-02-01   miguelfreitas	21:39	Miguel Freitas

	Files:	TODO (1.3) (+1 -2)
		src/plugin.c (1.20) (+25 -2)
	
	*** empty log message ***
	
2003-01-30   miguelfreitas	19:23	Miguel Freitas

	Files:	misc/build_rpms.sh.in (1.3) (+1 -1)
		misc/xine-plugin.spec.in (1.2) (+1 -1)
	
	version increased, rpm package renamed to xine-mozilla-plugin
	
2003-01-30   miguelfreitas	12:48	Miguel Freitas

	Files:	src/plugin.c (1.19) (+75 -26)
	
	further improvements on url handling, loop play support
	
2003-01-29   miguelfreitas	22:48	Miguel Freitas

	Files:	src/plugin.c (1.18) (+39 -10)
	
	- workaround mozilla bug when passing urls
	- support relative urls (untested)
	
2003-01-29   miguelfreitas	02:43	Miguel Freitas

	Files:	TODO (1.2) (+5 -0)
	
	loose ideas for development
	
2003-01-29   miguelfreitas	02:41	Miguel Freitas

	Files:	src/plugin.c (1.17) (+207 -168)
	
	general reworking:
	- choose demuxer using mimetype
	- fix freezing/deadlock problem on stopping thread
	- do not stop thread on XINE_EVENT_UI_PLAYBACK_FINISHED
	- fallback to local file if xine doesn't like the url directly
	  (ask mozilla to download it for us)
	- initial (very simple) playlist just to support references
	- receive url references from xine-lib demuxers
	
2003-01-25   miguelfreitas	21:41	Miguel Freitas

	Files:	src/plugin.c (1.16) (+5 -2)
	
	libxine.so is only available from devel package.
	we must use major version (libxine.so.1)
	
2003-01-25   miguelfreitas	21:34	Miguel Freitas

	Files:	src/plugin.c (1.15) (+3 -2)
	
	do not crash mozilla if libxine is missing
	
2003-01-25   miguelfreitas	02:27	Miguel Freitas

	Files:	src/plugin.c (1.14) (+68 -41)
	
	- small improvements
	- suggestion of TODO items
	
2003-01-25   miguelfreitas	00:11	Miguel Freitas

	Files:	misc/build_rpms.sh.in (1.2) (+2 -2)
	
	trying to get my daily build to work...
	
2003-01-25   miguelfreitas	00:06	Miguel Freitas

	Files:	README (1.2) (+6 -0)
	
	note about mozilla mime types caching
	
2003-01-24   miguelfreitas	23:43	Miguel Freitas

	Files:	AUTHORS (1.3) (+2 -0)
		configure.ac (1.2) (+4 -0)
		Makefile.am (1.3) (+1 -1)
	
	commiting initial spec file
	
2003-01-24   miguelfreitas	23:42	Miguel Freitas

	Files:	misc/Makefile.am (1.1) ( )
		misc/xine-plugin.spec.in (1.1) ( )
		misc/build_rpms.sh.in (1.1) ( )
	
	commiting initial spec file
	
2003-01-23   f1rmb	00:43	Daniel Caujolle-Bert

	Files:	demo/test.html (1.3) (+1 -1)
	
	errr, no, noone except me have that there
	
2003-01-23   f1rmb	00:36	Daniel Caujolle-Bert

	Files:	COPYING (1.1) ( )
	
	This one is really important\!
	
2003-01-23   f1rmb	00:35	Daniel Caujolle-Bert

	Files:	configure.ac (1.1) ( )
		cvscompile.sh (1.4) (+1 -1)
		configure.in (1.5) (+0 -0)
	
	rename configure.in to configure.ac
	
2003-01-23   f1rmb	00:33	Daniel Caujolle-Bert

	Files:	acconfig.h (1.2) (+0 -0)
	
	uneeded
	
2003-01-23   f1rmb	00:32	Daniel Caujolle-Bert

	Files:	configure.in (1.4) (+34 -6)
		src/plugin.c (1.13) (+197 -221)
		src/npunix.c (1.3) (+1 -1)
		src/Makefile.am (1.5) (+16 -1)
		m4/xine.m4 (1.2) (+0 -0)
		m4/Makefile.am (1.2) (+4 -2)
		demo/test.html (1.2) (+1 -1)
		demo/Makefile.am (1.2) (+14 -0)
		cvscompile.sh (1.3) (+2 -13)
	
	Big auto* cleanup, it may compile flawlessly. Large cleanup (remove some unneeded X calls, add new ones). Miguel, i hope i didn't break some stuff there.
	
2003-01-23   f1rmb	00:31	Daniel Caujolle-Bert

	Files:	Makefile.am (1.2) (+27 -2)
	
	Big auto* cleanup, it may compile flawlessly. Sync to new API and large cleanup (remove some unneeded X calls, add new ones). Miguel, i hope i didn't break some stuff there.
	
2003-01-22   miguelfreitas	02:02	Miguel Freitas

	Files:	src/plugin.c (1.12) (+141 -179)
	
	quick port of plugin to 1.0 api
	it seems to freeze when video finishes, any help is appreciated...
	
2002-03-31   jcdutton	03:17	

	Files:	src/plugin.c (1.11) (+31 -15)
	
	Add some debug printf.
	Fix a few compile warnings.
	
2002-03-29   jcdutton	19:58	

	Files:	src/plugin.c (1.10) (+2 -1)
	
	Now handles streams from http://www.on24.com
	
2002-03-17   guenter	23:05	Günter Bartsch

	Files:	src/plugin.c (1.9) (+100 -69)
	
	xine as a media player replacement :))
	
2002-03-17   guenter	22:29	Günter Bartsch

	Files:	src/plugin.c (1.8) (+16 -13)
	
	adapted to new x11 video out callbacks
	
2002-02-06   f1rmb	11:06	Daniel Caujolle-Bert

	Files:	configure.in (1.3) (+1 -1)
		src/plugin.c (1.7) (+3 -3)
	
	Sync to config_file_init change.
	
2002-02-05   guenter	20:56	Günter Bartsch

	Files:	AUTHORS (1.2) (+2 -1)
		src/plugin.c (1.6) (+2 -2)
	
	asf mime type support
	
2002-02-03   guenter	23:27	Günter Bartsch

	Files:	src/Makefile.am (1.4) (+1 -1)
		src/plugin.c (1.5) (+164 -50)
		src/npunix.c (1.2) (+1 -0)
	
	patches submitted by Andrei Lahun
	
2001-10-25   miguelfreitas	00:42	Miguel Freitas

	Files:	src/plugin.c (1.4) (+29 -2)
	
	mimetype probing
	
2001-10-24   guenter	13:32	Günter Bartsch

	Files:	configure.in (1.2) (+10 -0)
		src/plugin.c (1.3) (+15 -1)
		src/Makefile.am (1.3) (+1 -1)
	
	explicit loading of xine libs, I still think this is _wrong_, but as everything else seems to fail :-(
	
2001-10-24   guenter	13:10	Günter Bartsch

	Files:	cvscompile.sh (1.2) (+12 -1)
		m4/xine.m4 (1.1) ( )
		m4/_xine.m4 (1.1) ( )
		m4/Makefile.am (1.1) ( )
	
	added missing .m4 macros
	
2001-10-22   guenter	23:21	Günter Bartsch

	Files:	src/plugin.c (1.2) (+2 -2)
	
	register the plugin for various mpeg stream types
	
2001-10-22   f1rmb	22:24	Daniel Caujolle-Bert

	Files:	src/Makefile.am (1.2) (+3 -1)
	
	Fixed xine usage ;-))
	
2001-10-22   guenter	13:41	Günter Bartsch

	Files:	cvscompile.sh (1.1) ( )
	
	added forgotten file
	
2001-10-22   guenter	01:04	Günter Bartsch

	Files:	AUTHORS (1.1) ( )
		src/plugin.c (1.1) ( )
		src/npupp.h (1.1) ( )
		src/npunix.c (1.1) ( )
		src/npapi.h (1.1) ( )
		src/jritypes.h (1.1) ( )
		src/jri_md.h (1.1) ( )
		src/jri.h (1.1) ( )
		src/Makefile.am (1.1) ( )
		demo/test.html (1.1) ( )
		demo/Makefile.am (1.1) ( )
		configure.in (1.1) ( )
		acconfig.h (1.1) ( )
		TODO (1.1) ( )
		README (1.1) ( )
		NEWS (1.1) ( )
		Makefile.am (1.1) ( )
		INSTALL (1.1) ( )
		ChangeLog (1.1) ( )
	
	initial source import