[svn] / trunk / xvidcore / ChangeLog Repository:
ViewVC logotype

Diff of /trunk/xvidcore/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1596, Sun Jan 16 10:34:52 2005 UTC revision 1648, Sun Oct 9 07:38:33 2005 UTC
# Line 3  Line 3 
3  # also removed all my email adresses from the output because they are not  # also removed all my email adresses from the output because they are not
4  # relevant.  # relevant.
5    
6    2005/10/8 0:58:2, 'suxen_drol'
7            compatibility with haali media splitter:
8            - FORMAT_MPEG2Video support
9            - handle uppercase MP4V fourcc/clsid
10    
11    2005/10/7 15:2:28, 'suxen_drol'
12            minor xvid_{enc,dec}_raw fixes:
13            - fix clock resolution (thanks yuri khan)
14            - link vfw32.lib for win32 avifile support
15            - honour avifile stream length
16    
17    2005/10/6 18:28:31, 'Isibaar'
18            - added avi/avs input support
19            - various new options
20    
21    2005/10/6 10:46:42, 'Isibaar'
22            - Wiped the remainders of RRV encoding support
23            - Marked the RRV flags as obsolete in xvid.h API
24    
25    2005/10/5 11:20:22, 'suxen_drol'
26            vfw: replace "Picture Aspect Ratio" with "Display Aspect Ratio"
27    
28    2005/9/24 3:10:37, 'suxen_drol'
29            bugfix: calc_cbp_mmx was ignoring negative coeff case. have replaced "coeff_sum>0" evaluation with "coeff_sum != 0"
30            see http://forum.doom9.org/showthread.php?t=100275 for description of bug.
31    
32    2005/9/23 12:53:35, 'suxen_drol'
33            +ve/-ve cbp test (to demonstrate fault with current calc_cbp_mmx function
34    
35    2005/9/20 11:54:11, 'suxen_drol'
36            > > -      uint32_t intra_dc_threshold; /* fake variable */
37            > > +      int intra_dc_threshold; /* fake variable */
38            This patch fixes a warning spotted by gcc 4.0.1, because &intra_dc_threshold
39            is passed to some function which expects a int*, not a uint32_t* (on 64bit this
40            is important, even if this is fake data, the callee could corrupt the stack
41            writing 64bit to a 32bit allocated destination)
42    
43    2005/9/20 11:51:40, 'suxen_drol'
44            msvc fails on void* arithmetic in xvid_bench.c
45    
46    2005/9/20 11:19:34, 'suxen_drol'
47            update example documentation to "newer" commandline arguments for encraw/decraw (the arguments were changed ~2003).
48            bugfix: prevent endless loop when useful_bytes==1 within xvid_decraw.c
49    
50    2005/9/18 1:34:13, 'suxen_drol'
51            renamed dshow "Aspect_Ratio" registry key to "Decoder_Aspect_Ratio", in order to prevent conflict with vfw encoder registry key.
52    
53    2005/9/15 10:52:28, 'suxen_drol'
54            bugfix: support for aspect ratio when decoding unpacked b-frames
55    
56    2005/9/15 10:55:29, 'suxen_drol'
57            OutputDebugString cleanup
58    
59    2005-09-19 19:37:45 GMT                                         patch-38
60    
61        Summary:
62          Renamed dshow aspect ratio registry key
63        Revision:
64          xvidcore--head--0.0--patch-38
65    
66        From pete:
67         * Renamed dshow "Aspect_Ratio" registry key to "Decoder_Aspect_Ratio",
68           in order to prevent conflict with vfw encoder registry key.
69    
70        modified files:
71         dshow/src/config.c
72    
73    
74    2005-09-15 16:30:59 GMT                                         patch-37
75    
76        Summary:
77          Field interlaced decoding
78        Revision:
79          xvidcore--head--0.0--patch-37
80    
81        From Christoph Kuehnel:
82    
83          * decoder.c
84            - Some new defines for DIV
85            - <decoder_mb_decode> modified: had wrong address offsets for
86              interlaced
87            - <decoder_mbinter_field> = new function for interlaced
88            - <get_motion_vector_interlaced> = new function for interlaced
89              motion vector prediction
90            - <decoder_pframe> modified so that it differs between frame and
91              field prediction
92    
93          * global.h
94            - For field motion prediction MACORBLOCK has new member that is the
95              average of field1 and field2 motion vector = <mvs_avg>
96    
97          * xvid.c
98            - For field predicted macroblocks we need new field oriented transfer
99              functions.
100              For colour calculations they may only process 4 lines (one field
101              from the colour macroblock that is 8x8). So I introduced 4 new
102              function pointers:
103              <transfer8x4_copy, interpolate8x4_ ...>
104    
105          * mbcoding.c
106            - _DEBUG code; index is checked against 64
107    
108          * interpolate8x8.[c,h,asm]
109            - New 8x4 functions
110    
111          * mbpredicition.[c,h]
112            - New function <get_pmv2_interlaced> for interlaced prediciton
113              according to spec
114    
115          * mem_transfer.[c,h,asm]
116            - New 8x4 function
117    
118        modified files:
119         AUTHORS src/bitstream/mbcoding.c src/decoder.c src/global.h
120         src/image/image.c src/image/image.h src/image/interpolate8x8.c
121         src/image/interpolate8x8.h
122         src/image/x86_asm/interpolate8x8_3dn.asm
123         src/image/x86_asm/interpolate8x8_3dne.asm
124         src/image/x86_asm/interpolate8x8_mmx.asm
125         src/image/x86_asm/interpolate8x8_xmm.asm
126         src/prediction/mbprediction.c src/prediction/mbprediction.h
127         src/utils/mem_transfer.c src/utils/mem_transfer.h
128         src/utils/x86_asm/mem_transfer_3dne.asm
129         src/utils/x86_asm/mem_transfer_mmx.asm src/xvid.c
130         vfw/src/config.c vfw/src/driverproc.c
131    
132    
133    2005-09-15 16:27:07 GMT                                         patch-36
134    
135        Summary:
136          Optimiozed cbp operator on IA32
137        Revision:
138          xvidcore--head--0.0--patch-36
139    
140        From carlo dot bramix at libero dot it:
141         - Optimized CBP opeartor for ia32 arch
142    
143        modified files:
144         examples/xvid_bench.c src/bitstream/x86_asm/cbp_mmx.asm
145    
146    
147    2005-09-15 16:20:49 GMT                                         patch-35
148    
149        Summary:
150          OutputDebugStream cleanup
151        Revision:
152          xvidcore--head--0.0--patch-35
153    
154        From pete:
155         - OutputDebugStream cleanup
156    
157        modified files:
158         dshow/dshow.dsp dshow/sources.inc dshow/src/CXvidDecoder.cpp
159         dshow/src/debug.h
160    
161    
162    2005-07-26 23:32:52 GMT                                         patch-34
163    
164        Summary:
165          Long standing error in xvid_decraw for big endian hosts
166        Revision:
167          xvidcore--head--0.0--patch-34
168    
169        From ed.gomez, spoted by Paul Kurucz ptk9417 at ritvax.isc.rit.edu
170         * No width and height declared in write_tga bug.
171    
172        modified files:
173         examples/xvid_decraw.c
174    
175    
176    2005-07-25 19:45:25 GMT                                         patch-33
177    
178        Summary:
179          Fix big endian tga output for decraw.
180        Revision:
181          xvidcore--head--0.0--patch-33
182    
183        From ed.gomez:
184         * Writing pointed data is always better than memory
185           addresses
186    
187        modified files:
188         examples/xvid_decraw.c
189    
190    
191    2005-07-14 14:25:43 GMT                                         patch-32
192    
193        Summary:
194          Disable packed-bframes widget for dxn profile
195        Revision:
196          xvidcore--head--0.0--patch-32
197    
198        From pete:
199         * Disable packed-bframes widget for dxn profile
200    
201        modified files:
202         vfw/src/config.c
203    
204    
205    2005-07-14 14:22:53 GMT                                         patch-31
206    
207        Summary:
208          Fixed qpel for gcc4 and x86_64
209        Revision:
210          xvidcore--head--0.0--patch-31
211    
212        From Martin Drab <drab at kepler dot fjfi dot cvut dot cz>
213         * Incomplete type definitions are not supported in GCC4 and newer.
214           This was breaking x86_64.
215    
216        From ed.gomez:
217         * If both generic and x86_64 share 90% of the array declaration,
218           better use an extern macro. Makes teh code clearer.
219    
220        modified files:
221         src/image/qpel.c
222    
223    
224    2005-07-14 14:11:24 GMT                                         patch-30
225    
226        Summary:
227          Added VHQ support to xvid_encraw
228        Revision:
229          xvidcore--head--0.0--patch-30
230    
231        From skal:
232         * Added VHQ support to xvid_encraw
233    
234        modified files:
235         examples/xvid_encraw.c
236    
237    
238    2005-06-26 15:05:01 GMT                                         patch-29
239    
240        Summary:
241          Merge noise
242        Revision:
243          xvidcore--head--0.0--patch-29
244    
245        From ed.gomez:
246         - Merge noise forgotten bit. Other small differences exist with
247           the CVS tree, but i consider them to not fullfill the local
248           code style and thus don't fit well...
249    
250        modified files:
251         src/dct/idct.h
252    
253    
254    2005-06-26 15:02:05 GMT                                         patch-28
255    
256        Summary:
257          Bench updates
258        Revision:
259          xvidcore--head--0.0--patch-28
260    
261        From skal:
262         - Fixed bench for big endian platforms, updated tests
263    
264        modified files:
265         examples/bench.pl examples/bench_list.pl examples/xvid_bench.c
266    
267    
268    2005-06-26 14:59:17 GMT                                         patch-27
269    
270        Summary:
271          Optimized C mem transfer functions
272        Revision:
273          xvidcore--head--0.0--patch-27
274    
275        From skal:
276         - Optimized C mem transfer funcs, disabled for safety.
277           Enabled by undefining USE_REFERENCE_CODE at the top of
278           the mem_transfer.c file
279    
280        modified files:
281         src/utils/mem_transfer.c
282    
283    
284    2005-06-26 14:55:35 GMT                                         patch-26
285    
286        Summary:
287          Optimized gcd
288        Revision:
289          xvidcore--head--0.0--patch-26
290    
291        From skal:
292         - Optmized GCD, added test for gcd in xvid_bench
293    
294        modified files:
295         examples/xvid_bench.c src/encoder.c
296    
297    
298    2005-06-26 14:51:35 GMT                                         patch-25
299    
300        Summary:
301          Fixed write_video_packet_header
302        Revision:
303          xvidcore--head--0.0--patch-25
304    
305        From Sigdrak at free.fr:
306         - Fix write_video_packet_header() which was buggy and kind of obfuscated.
307    
308        From skal:
309         - Fixed log table
310         - Small cleanup
311    
312        modified files:
313         src/bitstream/bitstream.c
314    
315    
316    2005-06-26 14:46:23 GMT                                         patch-24
317    
318        Summary:
319          Added greyscale option support in xvid_encraw
320        Revision:
321          xvidcore--head--0.0--patch-24
322    
323        Added greyscale option support in xvid_encraw
324    
325    
326        modified files:
327         examples/xvid_encraw.c
328    
329    
330    2005-06-26 14:43:42 GMT                                         patch-23
331    
332        Summary:
333          IEEE-1180 SSE2 iDCT implementation
334        Revision:
335          xvidcore--head--0.0--patch-23
336    
337        From skal:
338         - Implemented IEEE-1180 SSE2 iDCT. Disabled for safety.
339    
340        modified files:
341         src/dct/x86_asm/fdct_sse2_skal.asm src/xvid.c
342    
343    
344    2005-05-18 22:08:12 GMT                                         patch-22
345    
346        Summary:
347          No executable shared objects installed
348        Revision:
349          xvidcore--head--0.0--patch-22
350    
351        From ed.gomez:
352         * Do not install the lib as executable. It's no use as the SO has no
353           main symbol anyway, and the static lib is not runnable anyway.
354    
355        modified files:
356         build/generic/Makefile
357    
358    
359    2005-05-18 22:05:09 GMT                                         patch-21
360    
361        Summary:
362          Statically link xvid_bench with libxvidcore.a
363        Revision:
364          xvidcore--head--0.0--patch-21
365    
366        Statically link xvid_bench with libxvidcore.a
367    
368    
369        modified files:
370         examples/Makefile
371    
372    
373    2005-05-18 21:59:27 GMT                                         patch-20
374    
375        Summary:
376          New autoconf garbage removal
377        Revision:
378          xvidcore--head--0.0--patch-20
379    
380        New autoconf garbage removal
381    
382    
383        modified files:
384         build/generic/bootstrap.sh
385    
386    
387    2005-05-18 21:58:16 GMT                                         patch-19
388    
389        Summary:
390          Quotes in configure.in
391        Revision:
392          xvidcore--head--0.0--patch-19
393    
394        Quotes in configure.in
395    
396    
397        modified files:
398         build/generic/configure.in
399    
400    
401    2005-05-18 19:40:18 GMT                                         patch-18
402    
403        Summary:
404          Added bitstream helper functions for packets.
405        Revision:
406          xvidcore--head--0.0--patch-18
407    
408        From Skal:
409         * Added helper functions for video packets, though they're still unused.
410    
411        modified files:
412         src/bitstream/bitstream.c src/bitstream/bitstream.h
413    
414    
415    2005-05-18 19:30:41 GMT                                         patch-17
416    
417        Summary:
418          A few more bench stuff
419        Revision:
420          xvidcore--head--0.0--patch-17
421    
422        From Skal:
423         * Added Perl scripts to automate benches.
424         * Worked on xvid_bench tests to cover more code.
425    
426        new files:
427         examples/.arch-ids/bench.pl.id
428         examples/.arch-ids/bench_list.pl.id examples/bench.pl
429         examples/bench_list.pl
430    
431        modified files:
432         examples/xvid_bench.c
433    
434    
435    2005-05-18 19:22:28 GMT                                         patch-16
436    
437        Summary:
438          Decoder cleanup for memory de/allocation
439        Revision:
440          xvidcore--head--0.0--patch-16
441    
442        From Skal:
443         * Memory de/allocation code refactored using goto.
444    
445        modified files:
446         src/decoder.c
447    
448    
449    2005-05-11 21:18:41 GMT                                         patch-15
450    
451        Summary:
452          Export only public API for GNU/Linux and Solaris
453        Revision:
454          xvidcore--head--0.0--patch-15
455    
456        From ed.gomez:
457         * Use ld version script to hide internal functions.
458    
459        new files:
460         build/generic/.arch-ids/libxvidcore.ld.id
461         build/generic/libxvidcore.ld
462    
463        modified files:
464         build/generic/Makefile build/generic/configure.in
465    
466    
467    2005-05-11 21:07:00 GMT                                         patch-14
468    
469        Summary:
470          Warnings GCC4
471        Revision:
472          xvidcore--head--0.0--patch-14
473    
474        From ed.gomez:
475         * Remove all GCC 4 warnings.
476    
477        modified files:
478         src/bitstream/bitstream.c src/bitstream/bitstream.h
479         src/decoder.c src/encoder.c src/image/image.c
480         src/image/image.h src/motion/estimation_common.c
481         src/utils/mbtransquant.c
482    
483    
484    2005-05-11 20:18:49 GMT                                         patch-13
485    
486        Summary:
487          Add support for gcc-4 in configure system
488        Revision:
489          xvidcore--head--0.0--patch-13
490    
491        From ed.gomez:
492         * Added gcc 4 detection and CFLAG option filtering for it.
493    
494        modified files:
495         build/generic/configure.in
496    
497    
498    2005-05-11 20:07:54 GMT                                         patch-12
499    
500        Summary:
501    
502        Revision:
503          xvidcore--head--0.0--patch-12
504    
505        From pete:
506         * bugfix: correct max bitrate display for slider
507           layout: "(kbps)" added to avgerage bitrate labels within calculator
508           dialog
509    
510        modified files:
511         vfw/src/config.c vfw/src/resource.rc
512    
513    
514    2005-05-11 20:06:04 GMT                                         patch-11
515    
516        Summary:
517          Fix alignment issue for mem tranfer
518        Revision:
519          xvidcore--head--0.0--patch-11
520    
521        From skal:
522         * Fix alignment issue (32 bit reading from non aligned memory)
523           likely for RISC CPUs using the C code.
524    
525        modified files:
526         src/utils/mem_transfer.c
527    
528    
529    2005-05-11 20:03:57 GMT                                         patch-10
530    
531        Summary:
532          Get time function right on win32
533        Revision:
534          xvidcore--head--0.0--patch-10
535    
536        From Skal:
537         * Get the time function right for win32 (ms precision)
538    
539        modified files:
540         examples/xvid_bench.c
541    
542    
543    2005-05-11 20:01:28 GMT                                         patch-9
544    
545        Summary:
546          Better ASP bitstream autodetection
547        Revision:
548          xvidcore--head--0.0--patch-9
549    
550        From pete:
551         - Use more flags to determine ASP activation or not.
552    
553        modified files:
554         src/bitstream/bitstream.c
555    
556    
557    #########################################################################
558    # 1.1.0-beta2 (Bitstream Version 39)
559    #########################################################################
560    
561    2005-04-03 20:15:00 GMT                                         patch-7
562    
563        Summary:
564          Makefile credits and whitespace cleaning
565        Revision:
566          xvidcore--head--0.0--patch-7
567    
568        Makefile credits and whitespace cleaning
569    
570    
571        modified files:
572         dshow/Makefile vfw/bin/Makefile
573    
574    
575    2005-04-03 19:52:35 GMT                                         patch-6
576    
577        Summary:
578          Various small things to vbv conformance and divx5 compatibility.
579        Revision:
580          xvidcore--head--0.0--patch-6
581    
582        From pete:
583        xvidcore
584        ========
585        * added XVID_GLOBAL_DIVX5_USERDATA global flag
586        * removed the bvop delay warning text ("warning: nothing to output),
587          as this often confuses joe user.
588        * minor changed to closed gop image_printf statement:
589          s/"DX50 BVOP->PVOP"/"CLOSED GOP BVOP->PVOP"
590        * additional comments for low_delay_default mode within decoder_decode()
591        * divx userdata string: s/DivX999b000/DivX503b1393. this has been
592          suggested by dxn for improved hardware compatibility [nb: i dont
593          have a hardware player to confirm this]
594        * vbv_peakrate constraint is ignored if <= 0
595    
596        vfw frontend
597        ============
598        * dxn profiles now confirm to "DivX Certified Profile Compatibility v1.1",
599          February 2005. this document was provided by DivXNetworks, USA. when a
600          dxn profile is selected, strict conformance is enabled:
601          - force 1:1 picture aspect ratio
602          - disable bframes if interlacing is enabled
603          - force maximum of 1 consecutive bvops for the portable and ht profiles,
604            2 bvops for the hd profile
605          - always write divx 5 userdata string to bitstream
606          - force packed bitstream option
607        - updated dxn vbv parameters
608        * added PROFILE_4MV flag. 4mv is now disabled for the dxn handheld profile.
609        * moved PROFILE_AS/PROFILE_ARTS/PROFILE_S to config.c
610        * profile[].max_bitrate now measured in bit/sec (not kbps)
611        * profile->level box: widgets are now greyed-out if they are not used.
612        * increase vertical size of profile drop down list.
613        * about box button: s/Dismiss/OK
614    
615        modified files:
616         src/bitstream/bitstream.c src/decoder.c src/encoder.c
617         src/plugins/plugin_2pass2.c src/xvid.h vfw/src/codec.c
618         vfw/src/config.c vfw/src/config.h vfw/src/resource.h
619         vfw/src/resource.rc
620    
621    
622    2005-04-03 19:50:05 GMT                                         patch-5
623    
624        Summary:
625          Fixed bug in cartoon mode.
626        Revision:
627          xvidcore--head--0.0--patch-5
628    
629        From Isiibar:
630         - Fixed cartoon bug as described by CrunCher.
631    
632        modified files:
633         src/motion/estimation_pvop.c
634    
635    
636    2005-03-22 20:40:47 GMT                                         patch-4
637    
638        Summary:
639          Added MPEG quant support for PPC
640        Revision:
641          xvidcore--head--0.0--patch-4
642    
643        From Christoph Nageli:
644         * Added support for MPEG quant functions for PPC.
645    
646        new files:
647         src/quant/ppc_asm/.arch-ids/quant_mpeg_altivec.c.id
648         src/quant/ppc_asm/quant_mpeg_altivec.c
649    
650        modified files:
651         build/generic/sources.inc src/quant/quant.h src/xvid.c
652    
653    
654    2005-03-18 18:00:13 GMT                                         patch-3
655    
656        Summary:
657          Updated ChangeLog
658        Revision:
659          xvidcore--head--0.0--patch-3
660    
661        Updated ChangeLog
662    
663    
664        modified files:
665         ChangeLog
666    
667    
668    2005-03-18 17:53:24 GMT                                         patch-2
669    
670        Summary:
671          Colorspace code for PPC
672        Revision:
673          xvidcore--head--0.0--patch-2
674    
675        From Christoph Nageli:
676         - Colorspace function fixes for non 16bytes aligned target adresses.
677    
678        modified files:
679         src/image/ppc_asm/colorspace_altivec.c
680    
681    
682    2005-03-18 17:39:00 GMT                                         patch-1
683    
684        Summary:
685          Fix for 64bit interlacing
686        Revision:
687          xvidcore--head--0.0--patch-1
688    
689        From Andrew Dunstan:
690         * Fixed bug where 64bit mov shoud have been 32bit
691    
692        modified files:
693         src/utils/x86_64_asm/interlacing_mmx.asm
694    
695    
696    2005-03-18 17:28:00 GMT                                         base-0
697    
698        Summary:
699          tag of ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-121
700        Revision:
701          xvidcore--head--0.0--base-0
702    
703        (automatically generated log message)
704    
705    # Change of arch/tla archive, explains the patch number wraparound
706    
707    2005-03-18 16:58:08 GMT                                         patch-121
708    
709        Summary:
710          ME work
711        Revision:
712          xvidcore--head--0.0--patch-121
713    
714        From Isiibar:
715         - Cartoon mode bugfix
716         - New lambda tables for R-D motion search. The old tables were
717           obviously taken from h.264, which uses a logarithmic quantizer
718           scale. This lead to bad results at very low bit-rates. With this
719           patch, compression efficiency at low bit-rates is greatly improved.
720    
721        modified files:
722         src/motion/estimation.h src/motion/estimation_bvop.c
723         src/motion/estimation_common.c src/motion/estimation_pvop.c
724    
725    
726    2005-03-18 16:56:13 GMT                                         patch-120
727    
728        Summary:
729          Better instruction pairing in sad mmx
730        Revision:
731          xvidcore--head--0.0--patch-120
732    
733        From Dark sylinc (dark_sylinc at yahoo dor com dor ar), commited by Isiibar:
734         * Better instruction pairing in sad_mmx.asm, improves speed.
735    
736        modified files:
737         src/motion/x86_asm/sad_mmx.asm src/utils/emms.c
738    
739    
740    2005-03-18 16:53:00 GMT                                         patch-119
741    
742        Summary:
743          Fixed resource leak in Dshow
744        Revision:
745          xvidcore--head--0.0--patch-119
746    
747        From antonz, commited by Isiibar:
748         * Fixed resource leaking caused by poor xvidcore initialization tracking.
749    
750        modified files:
751         dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
752    
753    
754    2005-03-18 16:50:44 GMT                                         patch-118
755    
756        Summary:
757          Debug flag support in vfw
758        Revision:
759          xvidcore--head--0.0--patch-118
760    
761        From pete:
762         * debug flag support for vfw decoder.
763    
764        modified files:
765         vfw/src/codec.c
766    
767    
768    #########################################################################
769    # 1.1.0-beta1 (Bitstream Version 38)
770    #########################################################################
771    
772    
773    2005-01-16 10:27:41 GMT                                         patch-117
774    
775        Summary:
776          License was using wrong linefeeds for vfw
777        Revision:
778          xvidcore--head--0.0--patch-117
779    
780        License was using wrong linefeeds for vfw
781    
782    
783        new files:
784         vfw/.arch-ids/LICENSE.id vfw/LICENSE
785    
786        modified files:
787         vfw/src/resource.rc
788    
789    
790    2005-01-10 22:59:46 GMT                                         patch-116
791    
792        Summary:
793          Last minutes vfw bugfixes/improvements
794        Revision:
795          xvidcore--head--0.0--patch-116
796    
797        From sysKin:
798         * last minute fixes and improvements to vfw frontend.
799    
800        modified files:
801         vfw/src/codec.c vfw/src/config.c vfw/src/config.h
802         vfw/src/resource.rc
803    
804    
805    2005-01-09 20:37:32 GMT                                         patch-115
806    
807        Summary:
808          Marking 1.1.0 beta1
809        Revision:
810          xvidcore--head--0.0--patch-115
811    
812        From ed.gomez:
813         * Marking xvid 1.1.0 beta1 release.
814    
815        modified files:
816         ChangeLog build/generic/configure.in src/xvid.c src/xvid.h
817    
818    
819  2005-01-09 20:15:14 GMT                                         patch-114  2005-01-09 20:15:14 GMT                                         patch-114
820    

Legend:
Removed from v.1596  
changed lines
  Added in v.1648

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4