[cvs] / xvidcore / ChangeLog Repository:
ViewVC logotype

Diff of /xvidcore/ChangeLog

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

revision 1.1.2.5, Sat Dec 27 10:50:50 2003 UTC revision 1.2.2.6, Sun Aug 29 10:56:56 2004 UTC
# Line 1  Line 1 
 #  
1  # Ed.Gomez: This ChangeLog is generated from a personal tree maintained  # Ed.Gomez: This ChangeLog is generated from a personal tree maintained
2  # under the arch revision control tool. That's why dates may be skewed. I  # under the arch revision control tool. That's why dates may be skewed. I
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    
7    #########################################################################
8    # 1.0.2 (Bitstream Version 36)
9    #########################################################################
10    
11    2004-08-22 13:08:44 GMT                                         patch-53
12    
13        Summary:
14          Thread safety problem in idct C version
15        Revision:
16          xvidcore--stable--1.0--patch-53
17    
18        From ed.gomez:
19         * Fixed a thread safety problem in C version of the
20           idct function. Added some comments on some static
21           data not marked as RO.
22    
23        modified files:
24         src/bitstream/mbcoding.c src/dct/idct.c
25    
26    
27    2004-08-21 11:45:55 GMT                                         patch-52
28    
29        Summary:
30          Stupid typo+error in fdct_xxx_skal macro generator.
31        Revision:
32          xvidcore--stable--1.0--patch-52
33    
34        From Nicolas Boulay:
35         * Found a typo mistake (ecx->eax) and an error in the same line
36           But as we're lucky, the unrolled version was bugfree, and that
37           is that one which is used.
38    
39        modified files:
40         src/dct/x86_asm/fdct_mmx_skal.asm
41    
42    
43    2004-07-26 20:21:24 GMT                                         patch-51
44    
45        Summary:
46          ChangeLog Update
47        Revision:
48          xvidcore--stable--1.0--patch-51
49    
50        ChangeLog Update
51    
52    
53        modified files:
54         ChangeLog
55    
56    
57    2004-07-24 11:33:57 GMT                                         patch-50
58    
59        Summary:
60          BVOP direct/interpolated ref block rounding fix.
61        Revision:
62          xvidcore--stable--1.0--patch-50
63    
64        From ed.gomez:
65         * BVOP direct/interpolated ref block rounding fix.
66           It's been using rounding=1 for averaging stage since ever.
67           The standard says it's rounding=0.
68    
69           See standard clause 7.6.9.4 for explicit code and Section 6.3.5
70           that says "rounding=0" in bframes as they don't set the
71           vop_rounding_type in VOP header. Both sections match, xvid was
72           wrong
73    
74        modified files:
75         src/decoder.c
76    
77    
78    2004-07-23 20:37:09 GMT                                         patch-49
79    
80        Summary:
81          Removed data qualifer in .rodata
82        Revision:
83          xvidcore--stable--1.0--patch-49
84    
85        From ed.gomez:
86         * long standing warning by yasm... data isn't a keyword for
87           .(ro)data sections.
88    
89        modified files:
90         src/bitstream/x86_asm/cbp_mmx.asm
91         src/bitstream/x86_asm/cbp_sse2.asm
92         src/dct/x86_asm/fdct_mmx_ffmpeg.asm
93         src/dct/x86_asm/fdct_mmx_skal.asm
94         src/dct/x86_asm/fdct_sse2_skal.asm
95         src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
96         src/dct/x86_asm/idct_sse2_dmitry.asm
97         src/dct/x86_asm/simple_idct_mmx.asm
98         src/image/x86_asm/colorspace_rgb_mmx.asm
99         src/image/x86_asm/colorspace_yuyv_mmx.asm
100         src/image/x86_asm/interpolate8x8_3dn.asm
101         src/image/x86_asm/interpolate8x8_3dne.asm
102         src/image/x86_asm/interpolate8x8_mmx.asm
103         src/image/x86_asm/interpolate8x8_xmm.asm
104         src/image/x86_asm/qpel_mmx.asm
105         src/image/x86_asm/reduced_mmx.asm
106         src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
107         src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
108         src/motion/x86_asm/sad_xmm.asm
109         src/quant/x86_asm/quantize_h263_3dne.asm
110         src/quant/x86_asm/quantize_h263_mmx.asm
111         src/quant/x86_asm/quantize_mpeg_mmx.asm
112         src/quant/x86_asm/quantize_mpeg_xmm.asm
113         src/utils/x86_asm/cpuid.asm
114         src/utils/x86_asm/interlacing_mmx.asm
115         src/utils/x86_asm/mem_transfer_3dne.asm
116         src/utils/x86_asm/mem_transfer_mmx.asm
117    
118    
119    2004-07-19 18:45:14 GMT                                         patch-48
120    
121        Summary:
122          Complete previous xvid_decraw patch
123        Revision:
124          xvidcore--stable--1.0--patch-48
125    
126        Complete previous xvid_decraw patch
127    
128    
129        modified files:
130         examples/xvid_decraw.c
131    
132    
133    2004-07-18 11:58:48 GMT                                         patch-47
134    
135        Summary:
136          ISO C99'ism fix
137        Revision:
138          xvidcore--stable--1.0--patch-47
139    
140        ISO C99'ism fix
141    
142    
143        modified files:
144         src/encoder.c
145    
146    
147    2004-07-17 11:32:42 GMT                                         patch-46
148    
149        Summary:
150          Make sure time incr is never larger than 16bit.
151        Revision:
152          xvidcore--stable--1.0--patch-46
153    
154        From ed.gomez:
155         * Keep both fbase and fincr under 16bit limit.
156    
157        modified files:
158         src/encoder.c
159    
160    
161    2004-07-17 10:00:42 GMT                                         patch-45
162    
163        Summary:
164          Future version interoperability
165        Revision:
166          xvidcore--stable--1.0--patch-45
167    
168        From ed.gomez:
169         * Zeroing the structures is the best way not to pass
170           wrong data when dealing with slightly new XviD (like
171           head). If we don't zero here, then brightness is not
172           initialized in HEAD leading to crash.
173    
174        modified files:
175         examples/xvid_decraw.c
176    
177    
178    2004-07-10 17:30:40 GMT                                         patch-44
179    
180        Summary:
181          ChangeLog update
182        Revision:
183          xvidcore--stable--1.0--patch-44
184    
185        ChangeLog update
186    
187    
188        modified files:
189         ChangeLog
190    
191    
192    2004-07-10 17:27:06 GMT                                         patch-43
193    
194        Summary:
195          Small mem leak in vfw.
196        Revision:
197          xvidcore--stable--1.0--patch-43
198    
199        From sysKin:
200         * Free zones.
201    
202        modified files:
203         vfw/src/codec.c
204    
205    
206    2004-07-10 16:55:53 GMT                                         patch-42
207    
208        Summary:
209          Fix wrong matrix reading logic.
210        Revision:
211          xvidcore--stable--1.0--patch-42
212    
213        From sysKin:
214         * Fix a problem reading quantization matrix.
215    
216        modified files:
217         src/bitstream/bitstream.c
218    
219    
220    2004-06-26 21:26:35 GMT                                         patch-41
221    
222        Summary:
223          low delay guessing (il)logic fix.
224        Revision:
225          xvidcore--stable--1.0--patch-41
226    
227        From sysKin:
228         * bframes were decoded wrong when trying to guess low_delay flag
229           as specified in the standard when vol_control_parameters aren't
230           available.
231    
232        modified files:
233         src/decoder.c
234    
235    
236    2004-06-13 19:15:05 GMT                                         patch-40
237    
238        Summary:
239          Small memory error in ia32 cpuid function.
240        Revision:
241          xvidcore--stable--1.0--patch-40
242    
243        From ed.gomez:
244         * Valgrind detected a write to suspicious stack space. To avoid
245           any false reporting, added an explicit stack space allocation.
246    
247        modified files:
248         src/utils/x86_asm/cpuid.asm
249    
250    #########################################################################
251    # 1.0.1 (Bitstream Version 35)
252    #########################################################################
253    
254    2004-06-05 22:55:56 GMT                                         patch-39
255    
256        Summary:
257          Marking 1.0.1 release
258        Revision:
259          xvidcore--stable--1.0--patch-39
260    
261        Marking 1.0.1 release
262    
263    
264        modified files:
265         ChangeLog TODO build/generic/configure.in src/xvid.c
266         src/xvid.h
267    
268    
269    2004-06-02 20:58:38 GMT                                         patch-38
270    
271        Summary:
272          DC clipping bug for real
273        Revision:
274          xvidcore--stable--1.0--patch-38
275    
276        From ed.gomez:
277         * patch-25  was  supposed to fix a DC clipping  bug. However  i
278           added the additional  clipping  code in the  wrong place. But
279           at least, my fix  didn't cause any trouble, it was just noop.
280           This patch should really fix this very "unlikely bug" (i  just
281           want to remind the reader that this bug isn't easy to  trigger,
282           and eg: my test sequences don't trigger it at all)
283    
284        BS version incremented: 35
285    
286        modified files:
287         src/decoder.c src/motion/estimation_rd_based.c
288         src/prediction/mbprediction.c src/prediction/mbprediction.h
289         src/xvid.h
290    
291    
292    2004-05-31 21:11:49 GMT                                         patch-37
293    
294        Summary:
295          time fixes to decoder.
296        Revision:
297          xvidcore--stable--1.0--patch-37
298    
299        From ed.gomez:
300         * timestamps were badly computed by teh decoder in some corner cases
301           (1fps). This bug revealed that, timestamps were indeed wrong as
302           expected, but that bvop blocks in direct mode (vectors interpolated)
303           were somewhat compensated with wrong vectors in these same corner
304           cases.
305    
306        modified files:
307         src/bitstream/bitstream.c src/decoder.c src/decoder.h
308    
309    
310    2004-05-30 09:36:13 GMT                                         patch-36
311    
312        Summary:
313          Wrong license header.
314        Revision:
315          xvidcore--stable--1.0--patch-36
316    
317        From ed.gomez:
318         * Pascal did agree a plain GPL migration long ago, but this file
319           remained GPL+location restriction.
320    
321        modified files:
322         src/image/reduced.c
323    
324    
325    2004-05-29 09:02:25 GMT                                         patch-35
326    
327        Summary:
328          More missing va_end() calls.
329        Revision:
330          xvidcore--stable--1.0--patch-35
331    
332        From pete:
333         * portab.h is plenty of missing calls to va_end().
334    
335        modified files:
336         src/portab.h
337    
338    
339    2004-05-28 21:28:21 GMT                                         patch-34
340    
341        Summary:
342          FPS=1 problem in decoder.
343        Revision:
344          xvidcore--stable--1.0--patch-34
345    
346        From ed.gomez:
347         * patch-24 did fix bad behavior in encoder, so at least, compliant
348           streams were generated but the decoder was still doing the maths
349           a wrong way. Apply same logic to decoder.
350    
351        Thanks to the patch-24 bug reporter for this followup.
352    
353        modified files:
354         src/bitstream/bitstream.c
355    
356    
357    2004-05-27 20:04:01 GMT                                         patch-33
358    
359        Summary:
360          Nasty typo in pvop vector lambdas.
361        Revision:
362          xvidcore--stable--1.0--patch-33
363    
364        From sysKin:
365         * s/+/*/ in the lambda value array for vectors in the pvop
366           estimation module.
367    
368        modified files:
369         src/motion/estimation_pvop.c
370    
371    
372    2004-05-26 13:23:38 GMT                                         patch-32
373    
374        Summary:
375          Bits/Bytes confusion in the VFW frontend.
376        Revision:
377          xvidcore--stable--1.0--patch-32
378    
379        From sysKin:
380         * confusion between the kilo, in kilobits (1000) and
381           the kilo in kilobytes (1024, should be named KiB anyway)
382         * biSizeImage is in bytes, not bits according to the Win32
383           API.
384    
385        modified files:
386         vfw/src/codec.c vfw/src/config.c
387    
388    
389    2004-05-26 09:28:31 GMT                                         patch-31
390    
391        Summary:
392          Close variable argument list.
393        Revision:
394          xvidcore--stable--1.0--patch-31
395    
396        From ed.gomez:
397         * Close the variable argument list as specified by the ANSI C
398           standard. Reported by Carsten <list4darav at gmx dot de> on
399           xvid-devel.
400    
401        modified files:
402         src/image/font.c
403    
404    
405    2004-05-26 09:00:26 GMT                                         patch-30
406    
407        Summary:
408          ICM compatibility for VFW
409        Revision:
410          xvidcore--stable--1.0--patch-30
411    
412        From sysKin:
413         * Makes the VFW frontend compatible with ICM applications
414           (Ooo, MS Office... etc). Reported on IRC.
415    
416        modified files:
417         vfw/src/config.c vfw/src/driverproc.c
418    
419    
420    2004-05-26 08:58:56 GMT                                         patch-29
421    
422        Summary:
423          Small trellis bug
424        Revision:
425          xvidcore--stable--1.0--patch-29
426    
427        From sysKin:
428         * Last coeff wasn't summed.
429    
430        Reported by Jean Marc.
431    
432        modified files:
433         src/utils/mbtransquant.c
434    
435    
436    2004-05-26 08:46:45 GMT                                         patch-28
437    
438        Summary:
439          Small bug in bframe ME.
440        Revision:
441          xvidcore--stable--1.0--patch-28
442    
443        From sysKin:
444         * Small bug in bframe ME.
445    
446        modified files:
447         src/motion/estimation_bvop.c
448    
449    #########################################################################
450    # 1.0.0 final (Bitstream Version 34)
451    #########################################################################
452    
453    2004-05-08 22:26:06 GMT                                         patch-27
454    
455        Summary:
456          Marking 1.0.0 final
457        Revision:
458          xvidcore--stable--1.0--patch-27
459    
460        From ed.gomez:
461         * Marking 1.0.0 final \o/
462    
463        modified files:
464         ChangeLog build/generic/configure.in src/xvid.h
465    
466    
467    2004-05-06 17:56:52 GMT                                         patch-26
468    
469        Summary:
470          Small mismatch in hint<->widget in VFW
471        Revision:
472          xvidcore--stable--1.0--patch-26
473    
474        From sysKin:
475         * Small mismatch in hint<->widget.
476    
477        modified files:
478         vfw/src/resource.rc
479    
480    
481    2004-05-02 22:40:50 GMT                                         patch-25
482    
483        Summary:
484          DC prediction fix.
485        Revision:
486          xvidcore--stable--1.0--patch-25
487    
488        From ed.gomez:
489         * DC predictors weren't clipped to the [-2048, 2047] range.
490    
491         BS version increased to 33
492    
493         Thanks to jnorish on our forums to point out the problem.
494    
495        modified files:
496         src/bitstream/bitstream.c src/decoder.c
497         src/motion/estimation_rd_based.c src/prediction/mbprediction.c
498         src/prediction/mbprediction.h src/xvid.h
499    
500    
501    2004-05-02 10:30:29 GMT                                         patch-24
502    
503        Summary:
504          Possible VOL header corruption.
505        Revision:
506          xvidcore--stable--1.0--patch-24
507    
508        From ed.gomez:
509         * The VOL header could be corrupted when passing fincr=fbase=1 which
510           happens for fps=1 sequences.
511    
512        BS version bumped up to 32
513    
514        Original report:
515        http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=2026&highlight=
516    
517        modified files:
518         src/bitstream/bitstream.c src/xvid.h
519    
520    
521    2004-04-30 23:10:19 GMT                                         patch-23
522    
523        Summary:
524          Some very light Unix build system changes
525        Revision:
526          xvidcore--stable--1.0--patch-23
527    
528        To prepare testing framework merging.
529    
530        From ed.gomez:
531         * Some typos
532         * Copyright updates (it's 2004 since a few months ;-)
533         * Added some checking to bootstrap.sh
534         * Added m4 AC_PREREQ macro to configure.in
535    
536        modified files:
537         build/generic/Makefile build/generic/bootstrap.sh
538         build/generic/configure.in
539    
540    
541    2004-04-20 19:40:29 GMT                                         patch-22
542    
543        Summary:
544          Small visual fix.
545        Revision:
546          xvidcore--stable--1.0--patch-22
547    
548        From sysKin:
549         * Small visual fix
550    
551        modified files:
552         vfw/src/config.c
553    
554    
555    2004-04-20 19:38:24 GMT                                         patch-21
556    
557        Summary:
558          Fix crash in decoder for non IFrame 1st frame.
559        Revision:
560          xvidcore--stable--1.0--patch-21
561    
562        From sysKin:
563         * Fixed the crash caused by non IFrame 1st frame.
564    
565        modified files:
566         src/decoder.c
567    
568    
569    2004-04-18 16:21:50 GMT                                         patch-20
570    
571        Summary:
572          Typo
573        Revision:
574          xvidcore--stable--1.0--patch-20
575    
576        Typo
577    
578    
579        modified files:
580         vfw/src/resource.rc
581    
582    
583    2004-04-17 17:04:20 GMT                                         patch-19
584    
585        Summary:
586          vfw opens audio file in shared access mode
587        Revision:
588          xvidcore--stable--1.0--patch-19
589    
590        vfw opens audio file in shared access mode
591    
592    
593        modified files:
594         vfw/src/config.c
595    
596    
597    2004-04-15 22:39:12 GMT                                         patch-18
598    
599        Summary:
600          Tiny xvid_decraw cleaning
601        Revision:
602          xvidcore--stable--1.0--patch-18
603    
604        Tiny xvid_decraw cleaning
605    
606    
607        modified files:
608         examples/xvid_decraw.c
609    
610    
611    2004-04-15 19:14:31 GMT                                         patch-17
612    
613        Summary:
614          Tiny minor fixes for msvc.
615        Revision:
616          xvidcore--stable--1.0--patch-17
617    
618        From pete:
619         * Missing arch endianness define in project files.
620         * Add a textual warning about win32 console EOF misreading.
621         * Prevent a SIGFPE when no frames were decoded.
622    
623        modified files:
624         build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp
625         examples/xvid_decraw.c
626    
627    
628    2004-04-14 22:41:07 GMT                                         patch-16
629    
630        Summary:
631          Fixed missing 1st frame in dshow output.
632        Revision:
633          xvidcore--stable--1.0--patch-16
634    
635        From sysKin:
636         * decoder flags were overwritten, this was preventing from outputing
637           the first frame immediatly.
638    
639        modified files:
640         dshow/src/CXvidDecoder.cpp
641    
642    
643    2004-04-14 22:39:17 GMT                                         patch-15
644    
645        Summary:
646          Ressource leaking in dshow.
647        Revision:
648          xvidcore--stable--1.0--patch-15
649    
650        From sysKin:
651         * Same kind of ressource leaking as in vfw. Same cure.
652    
653        modified files:
654         dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
655    
656    
657    2004-04-14 19:45:23 GMT                                         patch-14
658    
659        Summary:
660          Fixed small bug in trellis code.
661        Revision:
662          xvidcore--stable--1.0--patch-14
663    
664        From ed.gomez (spotted by jean marc):
665         * Trellis optimization was computing the sum |coeffs| wrongly
666           because the Compute_sum function wasn't doing zigzag scanning
667           and stopped at last non zero coeffs in linear scanning...
668           The trivial fix could have been to pass the zigzag to the compute
669           sum function so it could have done its job right.
670           But... Why computing stuff that is already known in the upper layer ?
671           I removed the compute sum function, and just pass the original sum
672           value in trellis function parameters, just in case we have to return
673           it again because trellis failed optimizing the block coeffs.
674    
675           This fix the bug and saves cycles :-) (but should not be noticeable)
676    
677        modified files:
678         src/utils/mbtransquant.c src/xvid.h
679    
680    
681    2004-04-12 12:06:12 GMT                                         patch-13
682    
683        Summary:
684          Don't do SAD and RD based searches for qp.
685        Revision:
686          xvidcore--stable--1.0--patch-13
687    
688        From sysKin:
689         * MakeGoodFlags function wasn't disabling SAD based search when
690           using RD. This was causing slowdown for no gain at all. This
691           patch should speed up encoding in qp mode.
692    
693    
694        modified files:
695         src/motion/estimation_pvop.c
696    
697    
698    2004-04-12 12:01:19 GMT                                         patch-12
699    
700        Summary:
701          3dnow functions proper separation.
702        Revision:
703          xvidcore--stable--1.0--patch-12
704    
705        From pete (thx to a forum report):
706         * Separate correctly pure 3dnow functions and 3dnow+mmxext functions.
707           This fix "Illegal instruction" crash on old k6-2 CPUs.
708    
709        modified files:
710         src/xvid.c
711    
712    
713    2004-04-12 11:57:20 GMT                                         patch-11
714    
715        Summary:
716          Better MV clipping code.
717        Revision:
718          xvidcore--stable--1.0--patch-11
719    
720        From sysKin:
721         * Better MV clipping. DivX 5 generates out of range vectors and clipping
722           them directly borks the decoding of other MVs for which out of range
723           MVs were predictors. So it's just better to clip them for the block
724           decoding and keep an unclipped version for predictions.
725    
726        modified files:
727         src/decoder.c
728    
729    
730    2004-04-08 20:34:54 GMT                                         patch-10
731    
732        Summary:
733          PGM support back in xvid_decraw.
734        Revision:
735          xvidcore--stable--1.0--patch-10
736    
737        From ed.gomez:
738         * pgm/pnm format added back to xvid_decraw
739           + pgm/pnm formats are now default for yv12/i420/rgb24 pixel format.
740           + tga is default for rgb16/32
741           + use option -f to choose tga, or pnm/pgm
742    
743        modified files:
744         examples/xvid_decraw.c
745    
746    
747    2004-04-07 22:30:15 GMT                                         patch-9
748    
749        Summary:
750          3DNow Ext functions use MMXEXT opcodes.
751        Revision:
752          xvidcore--stable--1.0--patch-9
753    
754        From Soltius (XviD Forum):
755         * Most of 3dnow extension functions do use MMXEXT opcodes, so
756           classify these functions as 3dnowext+mmxext. Avoids K6-2
757           boxes to crash with an invalid instruction error reported
758           by the host OS.
759    
760        PS: original bug report
761        http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1656
762    
763        modified files:
764         src/xvid.c
765    
766    
767    2004-04-07 22:01:54 GMT                                         patch-8
768    
769        Summary:
770          RGB 16bit output fix.
771        Revision:
772          xvidcore--stable--1.0--patch-8
773    
774        From ScarletteTout (XviD Forum):
775         * Fix RGB 16bit output in C functions.
776    
777        From ed.gomez:
778         * Replaced PGM output by TGA output so it's easy to implement
779           RGB 16/24/32 and greyscale bitmaps support in a single format.
780           (pgm could have supported RGB 24 and Greyscale only)
781         * Added colorspace choice to xvid_decraw
782           Use option -c csp, where csp is either rgb16, rgb24, rgb32, yv12 or i420
783           Defaults to i420.
784    
785        PS: original bug report
786        http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1960&highlight=
787    
788        modified files:
789         examples/xvid_decraw.c src/image/colorspace.c
790    
791    
792    #########################################################################
793    # 1.0.0 RC4 (Bitstream Version 30)
794    #########################################################################
795    
796    2004-04-04 20:21:38 GMT                                         patch-7
797    
798        Summary:
799          DShow widget hiding.
800        Revision:
801          xvidcore--stable--1.0--patch-7
802    
803        From Michael:
804         * No need to keep widget visibles if they won't be in 1.0.0.
805    
806        modified files:
807         dshow/src/xvid.ax.rc
808    
809    
810    2004-04-04 20:17:52 GMT                                         patch-6
811    
812        Summary:
813          Compiler quirk in portab.h
814        Revision:
815          xvidcore--stable--1.0--patch-6
816    
817        From Michael:
818         * The VC.NET workaround was causing trouble. Inversed the test.
819    
820        modified files:
821         src/portab.h
822    
823    
824    2004-04-04 14:19:10 GMT                                         patch-5
825    
826        Summary:
827          Marking RC4
828        Revision:
829          xvidcore--stable--1.0--patch-5
830    
831        Marking RC4
832    
833    
834        modified files:
835         ChangeLog build/generic/configure.in src/xvid.h
836    
837    
838    2004-04-04 14:07:00 GMT                                         patch-4
839    
840        Summary:
841          Frame dropping disabling for bframes.
842        Revision:
843          xvidcore--stable--1.0--patch-4
844    
845        From sysKin & Pete:
846         * Disable frame dropping with bframes enabled. These two options
847           do not play fine together.
848    
849        modified files:
850         src/encoder.c
851    
852    
853    2004-04-04 14:05:50 GMT                                         patch-3
854    
855        Summary:
856          Dead code removal.
857        Revision:
858          xvidcore--stable--1.0--patch-3
859    
860        From sysKin:
861         * FrameCodeP was always called with contanst parameters. Removed
862           these parameters and associated dead code.
863    
864        modified files:
865         src/encoder.c
866    
867    
868    2004-04-04 14:03:42 GMT                                         patch-2
869    
870        Summary:
871          Typo in ME fast comparison.
872        Revision:
873          xvidcore--stable--1.0--patch-2
874    
875        From sysKin:
876         * Small typo in Fast ME code.
877    
878        modified files:
879         src/motion/estimation_common.c
880    
881    
882    2004-04-02 23:58:19 GMT                                         patch-1
883    
884        Summary:
885          VFW Resource leak fix (try #2)
886        Revision:
887          xvidcore--stable--1.0--patch-1
888    
889        From Suiryc on IRC:
890         * both encoder and decoder ending functions were calling
891           the dll freeing code. This was an error as the first function
892           called would unbind core function for the second called one.
893           Thus xvidcore could not release buffers.
894    
895        modified files:
896         vfw/src/codec.c vfw/src/driverproc.c
897    
898    
899    2004-04-02 20:33:02 GMT                                         base-0
900    
901        Summary:
902          tag of ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-53
903        Revision:
904          xvidcore--stable--1.0--base-0
905    
906        (automatically generated log message)
907    
908    
909    2004-03-31 19:32:47 GMT                                         patch-53
910    
911        Summary:
912          Ressources leaking in VFW.
913        Revision:
914          xvidcore--devapi4--1.0--patch-53
915    
916        From sysKin:
917         * Storing ressources in global vars is making multithreaded/instanced
918           apps leaking lot of memory. Moved these vars to codec struct.
919    
920        Thanks to dalox <fdalleau at hymatom d0t fr> to spot and fix the bug.
921    
922        modified files:
923         vfw/src/codec.c vfw/src/codec.h vfw/src/driverproc.c
924    
925    
926    2004-03-31 19:28:51 GMT                                         patch-52
927    
928        Summary:
929          Fix to bad NVOP+bframe interaction.
930        Revision:
931          xvidcore--devapi4--1.0--patch-52
932    
933        From syskin:
934         * When generating a NVOP, it interferes with bframe flushing and
935           packing.
936    
937        modified files:
938         src/encoder.c
939    
940    
941    2004-03-31 19:24:42 GMT                                         patch-51
942    
943        Summary:
944          Fix GMC 2 warp point.
945        Revision:
946          xvidcore--devapi4--1.0--patch-51
947    
948        From Skal:
949         * Fix 2 warp points GMC.
950    
951        modified files:
952         src/motion/gmc.c
953    
954    
955    2004-03-31 19:18:46 GMT                                         patch-50
956    
957        Summary:
958          Added intra quant testing.
959        Revision:
960          xvidcore--devapi4--1.0--patch-50
961    
962        From Skal:
963         * Added intra quant testing to xvid_bench
964    
965        modified files:
966         examples/xvid_bench.c
967    
968    
969    2004-03-31 19:07:55 GMT                                         patch-49
970    
971        Summary:
972          input width/height check
973        Revision:
974          xvidcore--devapi4--1.0--patch-49
975    
976        From Skal:
977         * Input width and height aren't checked and this can cause crash.
978    
979        modified files:
980         src/encoder.c
981    
982    
983    2004-03-28 01:02:21 GMT                                         patch-48
984    
985        Summary:
986          $ CVS expansion removed
987        Revision:
988          xvidcore--devapi4--1.0--patch-48
989    
990        $ CVS expansion removed
991    
992    
993        modified files:
994         dshow/src/Configure.cpp dshow/src/config.c
995         examples/xvid_encraw.c
996    
997    
998    2004-03-28 00:45:23 GMT                                         patch-47
999    
1000        Summary:
1001          Allow bigger frames
1002        Revision:
1003          xvidcore--devapi4--1.0--patch-47
1004    
1005        Allow bigger frames
1006    
1007    
1008        modified files:
1009         examples/xvid_encraw.c
1010    
1011    
1012    2004-03-28 00:41:54 GMT                                         patch-46
1013    
1014        Summary:
1015          Fix in postproc header
1016        Revision:
1017          xvidcore--devapi4--1.0--patch-46
1018    
1019        Fix in postproc header
1020    
1021    
1022        modified files:
1023         src/image/postprocessing.h
1024    
1025    
1026    2004-03-28 00:33:02 GMT                                         patch-45
1027    
1028        Summary:
1029          Fixed xvidvfw build on real mingw+msys systems
1030        Revision:
1031          xvidcore--devapi4--1.0--patch-45
1032    
1033        Fixed xvidvfw build on real mingw+msys systems
1034    
1035    
1036        modified files:
1037         vfw/bin/Makefile
1038    
1039    
1040    2004-03-15 21:48:48 GMT                                         patch-44
1041    
1042        Summary:
1043          VFW updates.
1044        Revision:
1045          xvidcore--devapi4--1.0--patch-44
1046    
1047        VFW updates.
1048    
1049        modified files:
1050         vfw/src/config.c vfw/src/resource.rc
1051    
1052    
1053    2004-03-15 21:44:17 GMT                                         patch-43
1054    
1055        Summary:
1056          GMC bugfix.
1057        Revision:
1058          xvidcore--devapi4--1.0--patch-43
1059    
1060        From skal:
1061         * GMC bugfixes.
1062    
1063        modified files:
1064         src/motion/gmc.c
1065    
1066    
1067    2004-03-15 21:41:18 GMT                                         patch-42
1068    
1069        Summary:
1070          Buffer overrun fix in post proc.
1071        Revision:
1072          xvidcore--devapi4--1.0--patch-42
1073    
1074        From sysKin:
1075         * Fixed buffer overrun in postproc code.
1076    
1077        modified files:
1078         src/image/postprocessing.c src/image/postprocessing.h
1079    
1080    
1081    2004-03-15 21:33:22 GMT                                         patch-41
1082    
1083        Summary:
1084          Forgotten files.
1085        Revision:
1086          xvidcore--devapi4--1.0--patch-41
1087    
1088        Me:
1089         * Sorry i missed these file additions. Important for the packages
1090           as i build them from the tla archive.
1091    
1092        new files:
1093         dshow/src/.arch-ids/Configure.cpp.id
1094         dshow/src/.arch-ids/config.c.id
1095         dshow/src/.arch-ids/config.h.id dshow/src/.arch-ids/debug.h.id
1096         dshow/src/Configure.cpp dshow/src/config.c dshow/src/config.h
1097         dshow/src/debug.h
1098    
1099    
1100    2004-03-03 21:01:09 GMT                                         patch-40
1101    
1102        Summary:
1103          MV clipping in decoder.
1104        Revision:
1105          xvidcore--devapi4--1.0--patch-40
1106    
1107        From sysKin:
1108         * clip MVs to valid ranges.
1109    
1110        modified files:
1111         src/decoder.c src/decoder.h
1112    
1113    
1114    #########################################################################
1115    # 1.0.0 RC3 (Bistream Version 29)
1116    #########################################################################
1117    
1118    2004-02-29 13:17:10 GMT                                         patch-39
1119    
1120        Summary:
1121          Marking 1.0.0 RC3
1122        Revision:
1123          xvidcore--devapi4--1.0--patch-39
1124    
1125        * Marking RC3
1126    
1127        modified files:
1128         ChangeLog build/generic/configure.in src/xvid.h
1129    
1130    
1131    2004-02-29 13:08:38 GMT                                         patch-38
1132    
1133        Summary:
1134          Win32 project fixes for xvid_encraw and xvid_decraw.
1135        Revision:
1136          xvidcore--devapi4--1.0--patch-38
1137    
1138        From sysKin:
1139         * xvid_dec/encraw were linking against libxvidcore.lib. Now they link
1140           against xvidcore.dll.a
1141    
1142        NB: xvid_bench is left as is though it doesn't link. This program
1143            requires access to internal functions which aren't available
1144            through the dll link lib. No good solution exists for MSVC to
1145            build both a dll+its link lib+static lib.
1146    
1147        modified files:
1148         build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp
1149    
1150    
1151    2004-02-29 12:56:36 GMT                                         patch-37
1152    
1153        Summary:
1154          DShow updates
1155        Revision:
1156          xvidcore--devapi4--1.0--patch-37
1157    
1158        Bunch of DShow updates
1159    
1160        modified files:
1161         dshow/src/CXvidDecoder.cpp dshow/src/resource.h
1162         dshow/src/xvid.ax.rc
1163    
1164    
1165    2004-02-29 12:55:41 GMT                                         patch-36
1166    
1167        Summary:
1168          VFW updates.
1169        Revision:
1170          xvidcore--devapi4--1.0--patch-36
1171    
1172        * Bunch of VFW frontends updates.
1173    
1174        modified files:
1175         vfw/src/codec.c vfw/src/codec.h vfw/src/config.c
1176         vfw/src/resource.rc vfw/src/status.c vfw/vfw.dsp
1177    
1178    
1179    2004-02-29 12:49:24 GMT                                         patch-35
1180    
1181        Summary:
1182          Artefact workaround in bframes.
1183        Revision:
1184          xvidcore--devapi4--1.0--patch-35
1185    
1186        From sysKin:
1187         * Workaround for some artefacts appearing in bframes.
1188    
1189        modified files:
1190         src/motion/estimation_bvop.c
1191    
1192    
1193    2004-02-29 12:46:13 GMT                                         patch-34
1194    
1195        Summary:
1196          Decoder buffer overflow fix.
1197        Revision:
1198          xvidcore--devapi4--1.0--patch-34
1199    
1200        From sysKin:
1201         * Avoids buffer overflow when reading the last align byte. Our
1202           bitstream do 4 byte reading because of some platform contraints
1203           (ARM) and can cause buffer overflow reads.
1204    
1205        modified files:
1206         src/decoder.c
1207    
1208    
1209    2004-02-29 11:53:47 GMT                                         patch-33
1210    
1211        Summary:
1212          Compatibility decoding for old bitstreams.
1213        Revision:
1214          xvidcore--devapi4--1.0--patch-33
1215    
1216        From syskin:
1217         * old core versions used in dev-api-3 distributed by nearly all win32 bin
1218           builders used to have a edging bug. So when this information is known,
1219           workaround the bug.
1220    
1221        modified files:
1222         src/decoder.c src/encoder.c src/image/image.c
1223         src/image/image.h
1224    
1225    #########################################################################
1226    # 1.0.0 RC2 (Bistream Version 28)
1227    #########################################################################
1228    
1229    2004-02-08 01:06:40 GMT                                         patch-32
1230    
1231        Summary:
1232          Marking RC2
1233        Revision:
1234          xvidcore--devapi4--1.0--patch-32
1235    
1236        Marking RC2
1237    
1238    
1239        modified files:
1240         ChangeLog build/generic/configure.in
1241    
1242    
1243    2004-02-07 13:54:24 GMT                                         patch-31
1244    
1245        Summary:
1246          Win32 project outputs dll lib for linking.
1247        Revision:
1248          xvidcore--devapi4--1.0--patch-31
1249    
1250        From pete:
1251         * output a lib to link against the dll (xvidcore.dll.a).
1252    
1253        modified files:
1254         build/win32/libxvidcore.dsp
1255    
1256    
1257    2004-02-07 13:51:01 GMT                                         patch-30
1258    
1259        Summary:
1260          DShow update.
1261        Revision:
1262          xvidcore--devapi4--1.0--patch-30
1263    
1264        From pete:
1265         * cmd line driving
1266    
1267        From sysKin(?):
1268         * bugfixes related to video flipping
1269         * bugfix for the 'crash at the end" bug
1270    
1271        modified files:
1272         TODO dshow/dshow.dsp dshow/src/CAbout.cpp dshow/src/CAbout.h
1273         dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
1274         dshow/src/xvid.ax.def
1275    
1276    
1277    2004-02-07 13:47:45 GMT                                         patch-29
1278    
1279        Summary:
1280          VFW updates
1281        Revision:
1282          xvidcore--devapi4--1.0--patch-29
1283    
1284        Sorry feeling lazy about splitting this patch...
1285    
1286        From peter:
1287         * bitrate calculator
1288    
1289        From sysKin:
1290         * WMP9 bugfix
1291    
1292        modified files:
1293         TODO vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1294         vfw/src/resource.h vfw/src/resource.rc
1295    
1296    
1297    2004-02-07 13:43:26 GMT                                         patch-28
1298    
1299        Summary:
1300          Implicit overflow tuning for 2nd pass.
1301        Revision:
1302          xvidcore--devapi4--1.0--patch-28
1303    
1304        From sysKin:
1305         * When doing a bigger 2nd pass, the overflow loop must be more
1306           aggressive else no bonus bits are reinjected. So we can auto
1307           tune the overlow values in that case.
1308    
1309        modified files:
1310         src/plugins/plugin_2pass2.c
1311    
1312    
1313    2004-02-07 13:38:33 GMT                                         patch-27
1314    
1315        Summary:
1316          GMC+interlaced bugfix in decoder.
1317        Revision:
1318          xvidcore--devapi4--1.0--patch-27
1319    
1320        From sysKin:
1321         * GMC+interlaced bugfix in decoder.
1322    
1323        modified files:
1324         src/decoder.c
1325    
1326    
1327    2004-02-07 13:35:16 GMT                                         patch-26
1328    
1329        Summary:
1330          Reverted patch-23
1331        Revision:
1332          xvidcore--devapi4--1.0--patch-26
1333    
1334        From christoph:
1335         * reverted patch-23, old code was right.
1336         * Important typo for the YVYU csp (passing the y plane instead of u).
1337    
1338        modified files:
1339         src/image/image.c src/xvid.h
1340    
1341    
1342    2004-01-31 11:20:36 GMT                                         patch-25
1343    
1344        Summary:
1345          DShow support for more mpeg4 fourccs.
1346        Revision:
1347          xvidcore--devapi4--1.0--patch-25
1348    
1349        From sysKin:
1350         * Added support for the MP4V fourcc.
1351    
1352        modified files:
1353         dshow/src/CAbout.cpp dshow/src/CAbout.h
1354         dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
1355         dshow/src/resource.h dshow/src/xvid.ax.rc
1356    
1357    
1358    2004-01-31 11:12:38 GMT                                         patch-24
1359    
1360        Summary:
1361          DivX decoder compatibility
1362        Revision:
1363          xvidcore--devapi4--1.0--patch-24
1364    
1365        From sysKin:
1366         * DivX decoder compatibility improved for packed bitstreams.
1367           It should now detect them and play them fine.
1368    
1369        modified files:
1370         src/bitstream/bitstream.c
1371    
1372    
1373    2004-01-31 11:10:26 GMT                                         patch-23
1374    
1375        Summary:
1376          YV12/I420 confusion fixed.
1377        Revision:
1378          xvidcore--devapi4--1.0--patch-23
1379    
1380        From christoph:
1381         * I420/YV12 were swapped since ... ages.
1382         * CSP_USER renamed to CSP_PLANAR
1383    
1384        modified files:
1385         src/encoder.c src/image/image.c src/xvid.h
1386    
1387    
1388    2004-01-31 10:53:20 GMT                                         patch-22
1389    
1390        Summary:
1391          Arch separation for mem transfer functions
1392        Revision:
1393          xvidcore--devapi4--1.0--patch-22
1394    
1395        Arch separation for mem transfer functions
1396    
1397    
1398        modified files:
1399         src/utils/mem_transfer.h
1400    
1401    
1402    2004-01-27 14:47:08 GMT                                         patch-21
1403    
1404        Summary:
1405          Write to registry Flip video flag in dshow
1406        Revision:
1407          xvidcore--devapi4--1.0--patch-21
1408    
1409        From sysKin:
1410         * The flip video flag is now saved in registry.
1411         * Changed internal flags name convention (use n prefix for all now)
1412    
1413        modified files:
1414         dshow/src/CAbout.cpp dshow/src/CAbout.h
1415         dshow/src/CXvidDecoder.cpp
1416    
1417    
1418    2004-01-27 14:42:52 GMT                                         patch-20
1419    
1420        Summary:
1421          Added bitrate calc to VFW
1422        Revision:
1423          xvidcore--devapi4--1.0--patch-20
1424    
1425        From Pete:
1426         * Added bitrate calculator.
1427         * Changed up a few function calls to static type.
1428    
1429        modified files:
1430         vfw/src/codec.c vfw/src/codec.h vfw/src/config.c
1431         vfw/src/config.h vfw/src/resource.h vfw/src/resource.rc
1432         vfw/vfw.dsp
1433    
1434    
1435    2004-01-27 14:29:49 GMT                                         patch-19
1436    
1437        Summary:
1438          Bugfix in decoder
1439        Revision:
1440          xvidcore--devapi4--1.0--patch-19
1441    
1442        From sysKin:
1443         * when stats are not used, don't write to the stats pointer.
1444    
1445        modified files:
1446         src/decoder.c
1447    
1448    #########################################################################
1449    # 1.0.0 RC1 (Bistream Version 26)
1450    #########################################################################
1451    
1452    2004-01-25 16:01:06 GMT                                         patch-18
1453    
1454        Summary:
1455          Marking RC1
1456        Revision:
1457          xvidcore--devapi4--1.0--patch-18
1458    
1459        Marking RC1
1460    
1461        modified files:
1462         ChangeLog build/generic/configure.in src/xvid.h
1463    
1464    
1465    2004-01-25 15:37:57 GMT                                         patch-17
1466    
1467        Summary:
1468          VFW update (again²)
1469        Revision:
1470          xvidcore--devapi4--1.0--patch-17
1471    
1472        From sysKin:
1473         * Added Constant Quant encoding.
1474    
1475        modified files:
1476         vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1477         vfw/src/resource.rc
1478    
1479    
1480    2004-01-25 15:35:38 GMT                                         patch-16
1481    
1482        Summary:
1483          Missing MB quants for PP.
1484        Revision:
1485          xvidcore--devapi4--1.0--patch-16
1486    
1487        From sysKin:
1488         * MB Quants are used by the PP code, so don't forget to update
1489           them even if the block is skipped or not coded.
1490    
1491        modified files:
1492         src/decoder.c
1493    
1494    
1495    2004-01-23 13:25:52 GMT                                         patch-15
1496    
1497        Summary:
1498          VFW update (again)
1499        Revision:
1500          xvidcore--devapi4--1.0--patch-15
1501    
1502        From sysKin:
1503         * Status window updates.
1504         * Big resource.h cleanup, it seems msvc isn't able to do it automatically.
1505    
1506        modified files:
1507         vfw/src/resource.h vfw/src/resource.rc vfw/src/status.c
1508    
1509    
1510    2004-01-23 11:17:20 GMT                                         patch-14
1511    
1512        Summary:
1513          VFW gcc warnings
1514        Revision:
1515          xvidcore--devapi4--1.0--patch-14
1516    
1517        VFW gcc warnings
1518    
1519    
1520        modified files:
1521         vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1522    
1523    
1524    2004-01-22 20:54:53 GMT                                         patch-13
1525    
1526        Summary:
1527          DShow updates.
1528        Revision:
1529          xvidcore--devapi4--1.0--patch-13
1530    
1531        From sysKin:
1532         * Fixed registry params type. Bool cannot be used or something weird
1533           happens when writing to registry
1534         * Defaults set to what the Reset widget sets.
1535    
1536        modified files:
1537         dshow/src/CAbout.h dshow/src/CXvidDecoder.cpp
1538    
1539    
1540    2004-01-22 20:35:27 GMT                                         patch-12
1541    
1542        Summary:
1543          VFW updates.
1544        Revision:
1545          xvidcore--devapi4--1.0--patch-12
1546    
1547        From sysKin:
1548         * GUI improvements.
1549         * Stats fixing.
1550         * Automatic config clear upon installation.
1551         * Added postprocessing options in there too.
1552    
1553        modified files:
1554         vfw/bin/xvid.inf vfw/src/codec.c vfw/src/codec.h
1555         vfw/src/config.c vfw/src/config.h vfw/src/resource.h
1556         vfw/src/resource.rc vfw/src/status.c vfw/src/status.h
1557    
1558    
1559    2004-01-22 20:28:54 GMT                                         patch-11
1560    
1561        Summary:
1562          Minor updates to text files
1563        Revision:
1564          xvidcore--devapi4--1.0--patch-11
1565    
1566        Minor updates to text files
1567    
1568    
1569        modified files:
1570         AUTHORS TODO
1571    
1572    
1573    2004-01-22 20:27:10 GMT                                         patch-10
1574    
1575        Summary:
1576          2pass plugin changes.
1577        Revision:
1578          xvidcore--devapi4--1.0--patch-10
1579    
1580        From sysKin:
1581         * Disabled QPel during first pass as well.
1582         * Fix a mistaking condition when enabling largers 2nd passes.
1583    
1584        From ed.gomez:
1585         * Fix the fix logic. The previous fix enclosed a condition it should
1586           not have touched. So i removed the mistaking condition, which was
1587           wrong anyway as stated in the comment, and got back the sane condition
1588           test.
1589    
1590        modified files:
1591         src/plugins/plugin_2pass1.c src/plugins/plugin_2pass2.c
1592    
1593    
1594    2004-01-17 13:03:11 GMT                                         patch-9
1595    
1596        Summary:
1597          Unitialized pointers during plugin creation.
1598        Revision:
1599          xvidcore--devapi4--1.0--patch-9
1600    
1601        From sysKin:
1602         - plugins which do not require private data were leaving the param2
1603           unitialized. Just init it to NULL. This bug wasn't causing any
1604           trouble anyway...
1605    
1606        modified files:
1607         src/plugins/plugin_dump.c src/plugins/plugin_psnr.c
1608         vfw/src/codec.c
1609    
1610    
1611    2004-01-17 01:09:01 GMT                                         patch-8
1612    
1613        Summary:
1614          DShow forwwards AR information.
1615        Revision:
1616          xvidcore--devapi4--1.0--patch-8
1617    
1618        From syskin(?):
1619         - forward AR information to DShow framework.
1620         - grayed some widgets.
1621    
1622        modified files:
1623         dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
1624         dshow/src/xvid.ax.rc
1625    
1626    
1627    2004-01-07 13:50:29 GMT                                         patch-7
1628    
1629        Summary:
1630          Scaled zones fix.
1631        Revision:
1632          xvidcore--devapi4--1.0--patch-7
1633    
1634        From sysKin (ideas from Koepi iirc):
1635         * Fix scaled zones computing prescaled data and so on instead of
1636           guessing everything with a global zone weight factor.
1637    
1638        modified files:
1639         src/plugins/plugin_2pass2.c
1640    
1641    
1642    2004-01-06 01:06:39 GMT                                         patch-6
1643    
1644        Summary:
1645          Tab->Spaces in header only
1646        Revision:
1647          xvidcore--devapi4--1.0--patch-6
1648    
1649        Tab->Spaces in header only
1650    
1651    
1652        modified files:
1653         src/xvid.h
1654    
1655    
1656    2004-01-04 18:35:35 GMT                                         patch-5
1657    
1658        Summary:
1659          Typo fixed
1660        Revision:
1661          xvidcore--devapi4--1.0--patch-5
1662    
1663        Typo fixed
1664    
1665    
1666        modified files:
1667         build/generic/configure.in
1668    
1669    
1670    2004-01-04 13:40:51 GMT                                         patch-4
1671    
1672        Summary:
1673          VFW safer code.
1674        Revision:
1675          xvidcore--devapi4--1.0--patch-4
1676    
1677        From sysKin:
1678         * Protects some parts of the code depending on a previous
1679           xvidcore opening. Avoids resources leaking.
1680    
1681        modified files:
1682         vfw/src/codec.c vfw/src/driverproc.c
1683    
1684    
1685    2004-01-04 13:33:28 GMT                                         patch-3
1686    
1687        Summary:
1688          Fixes VC debug target name
1689        Revision:
1690          xvidcore--devapi4--1.0--patch-3
1691    
1692        Fixes VC debug target name
1693    
1694    
1695        modified files:
1696         vfw/vfw.dsp
1697    
1698    
1699    2004-01-02 23:10:56 GMT                                         patch-2
1700    
1701        Summary:
1702          Win32 linking policy revised.
1703        Revision:
1704          xvidcore--devapi4--1.0--patch-2
1705    
1706        Finnaly Win32 linking policy is to separate all XviD components:
1707         - xvidcore.dll exports XviD API
1708         - xvidvfw.dll links against xvidcore DLL
1709         - xviddshow.dll links against xvidcore DLL
1710    
1711        From sysKin:
1712         * Changed DShow linking policy in VS project file.
1713         * Changed VFW linking policy in VS project file.
1714         * Added runtime xvidcore.dll loading in DShow and VFW.
1715         * Installs xvidcore.dll along side with xvidvfw.dll.
1716    
1717        From ed.gomez:
1718         * Changed libxvidcore.dll mingw32/cygwin target name to
1719           xvidcore.dll in the configure script.
1720         * Changed xvid.dll VFW target name to xvidvfw.dll in the
1721           generic Makefile.
1722    
1723        PS: unlike CVS, i reverted back to MS build tools in VS project files
1724    
1725        modified files:
1726         build/generic/configure.in build/win32/libxvidcore.dsp
1727         dshow/dshow.dsp dshow/src/CXvidDecoder.cpp
1728         dshow/src/CXvidDecoder.h vfw/bin/Makefile vfw/bin/sources.inc
1729         vfw/bin/xvid.inf vfw/src/codec.c vfw/src/codec.h
1730         vfw/src/config.c vfw/src/config.h vfw/vfw.dsp
1731    
1732    
1733    2004-01-02 22:02:07 GMT                                         patch-1
1734    
1735        Summary:
1736          Better seeking in dshow
1737        Revision:
1738          xvidcore--devapi4--1.0--patch-1
1739    
1740        From Michael:
1741         * Better DShow seeking.
1742    
1743        modified files:
1744         dshow/src/CXvidDecoder.cpp
1745    
1746    
1747    2004-01-02 12:28:39 GMT                                         base-0
1748    
1749        Summary:
1750          tag of ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-162
1751        Revision:
1752          xvidcore--devapi4--1.0--base-0
1753    
1754        Archive cycling...
1755    
1756    #########################################################################
1757    # 1.0.0 beta3 (Bistream Version 25)
1758    #########################################################################
1759    
1760    2003-12-26 22:21:35 GMT                                         patch-162
1761    
1762        Summary:
1763          Marking 1.0.0 beta3
1764        Revision:
1765          xvidcore--devapi4--1.0--patch-162
1766    
1767        Marking beta3
1768    
1769        modified files:
1770         ChangeLog TODO build/generic/configure.in src/xvid.h
1771    
1772    
1773  2003-12-25 20:57:52 GMT                                         patch-161  2003-12-25 20:57:52 GMT                                         patch-161
1774    
# Line 632  Line 2397 
2397       src/plugins/plugin_2pass2.c       src/plugins/plugin_2pass2.c
2398    
2399  #########################################################################  #########################################################################
2400  # 1.0.0 beta2  # 1.0.0 beta2 (Bitstream Version 23)
2401  #########################################################################  #########################################################################
2402    
2403  2003-12-05 14:43:53 GMT                                         patch-123  2003-12-05 14:43:53 GMT                                         patch-123
# Line 852  Line 2617 
2617    
2618    
2619  #########################################################################  #########################################################################
2620  # 1.0.0 beta1  # 1.0.0 beta1 (Bitstream Version 21)
2621  #########################################################################  #########################################################################
2622    
2623  2003-11-29 17:21:08 GMT                                         patch-111  2003-11-29 17:21:08 GMT                                         patch-111

Legend:
Removed from v.1.1.2.5  
changed lines
  Added in v.1.2.2.6

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