[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.1, Fri Oct 17 15:25:44 2003 UTC revision 1.14, Sun Oct 9 07:38:33 2005 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  # relevent  # relevant.
 #  
5    
6  2003-10-04 16:04:30 GMT                                         patch-63  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      Summary:  2005/10/7 15:2:28, 'suxen_drol'
12        Removed legacy 2pass code from vfw          minor xvid_{enc,dec}_raw fixes:
13      Revision:          - fix clock resolution (thanks yuri khan)
14        xvidcore--devapi4--1.0--patch-63          - link vfw32.lib for win32 avifile support
15            - honour avifile stream length
16    
17      Removed legacy 2pass code from vfw  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      removed files:  2005/10/5 11:20:22, 'suxen_drol'
26       vfw/src/.arch-ids/2pass.c.id vfw/src/.arch-ids/2pass.h.id          vfw: replace "Picture Aspect Ratio" with "Display Aspect Ratio"
27       vfw/src/2pass.c vfw/src/2pass.h  
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  2003-10-04 00:41:38 GMT                                         patch-62  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:      Summary:
62        Working VFW mingw/cygwin build system.        Renamed dshow aspect ratio registry key
63      Revision:      Revision:
64        xvidcore--devapi4--1.0--patch-62        xvidcore--head--0.0--patch-38
65    
66      This patch fixes the VFW building process. Now it should work out      From pete:
67      of the box using these steps:       * Renamed dshow "Aspect_Ratio" registry key to "Decoder_Aspect_Ratio",
68       # cd ${xvidcore}         in order to prevent conflict with vfw encoder registry key.
      # cd build/generic  
      # ./bootstrap.sh <-- only needed for CVS checkouts.  
      # ./configure  
      # make  
      # cd ../../vfw/bin  
      # make -f Makefile.cygwin  
   
     Then install as usual clicking on the inf file or "make install"  
     in the vfw/bin dir.  
69    
70      modified files:      modified files:
71       vfw/bin/Makefile.cygwin vfw/src/config.rc vfw/src/debug.h       dshow/src/config.c
      vfw/src/driverproc.c  
72    
73    
74  2003-10-03 17:00:53 GMT                                         patch-61  2005-09-15 16:30:59 GMT                                         patch-37
75    
76      Summary:      Summary:
77        Fixes for alternate scan and interlacing support.        Field interlaced decoding
78      Revision:      Revision:
79        xvidcore--devapi4--1.0--patch-61        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      Fixes from CVS (by sysKin) for:        * mbcoding.c
106       - added alternate scan support with VHQ          - _DEBUG code; index is checked against 64
      - fixed interlacing support in s/b-frames. May fix a potential problem  
        as field_pred struct field seemed not to be initialized anywhere.  
        As it's not supported yet, write an hardcoded 0 bit.  
107    
108      Fixes from me for the fixes from syKin:        * interpolate8x8.[c,h,asm]
109       - scan_table effectively used in MBCodingBVOP          - New 8x4 functions
      - Block_CalcBits(Intra) fixes to data->scan_table (implies prototype  
        change and code modification every where the functions were used)  
110    
111      I also increased BS version as it might result in different bitstreams        * mbpredicition.[c,h]
112      It's now at version 20.          - 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:      modified files:
119       src/bitstream/mbcoding.c src/bitstream/mbcoding.h       AUTHORS src/bitstream/mbcoding.c src/decoder.c src/global.h
120       src/decoder.c src/encoder.c src/motion/estimation.h       src/image/image.c src/image/image.h src/image/interpolate8x8.c
121       src/motion/estimation_rd_based.c src/xvid.h       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  2003-10-03 15:41:37 GMT                                         patch-60  2005-09-15 16:27:07 GMT                                         patch-36
134    
135      Summary:      Summary:
136        Removed BIGLUT support.        Optimiozed cbp operator on IA32
137      Revision:      Revision:
138        xvidcore--devapi4--1.0--patch-60        xvidcore--head--0.0--patch-36
139    
140      Remobed legacy code for BIGLUT support. It was unused and RD based      From carlo dot bramix at libero dot it:
141      Motion Estimation was not even compatible with this type of VLC coding.       - Optimized CBP opeartor for ia32 arch
142    
143      modified files:      modified files:
144       build/generic/configure.in src/bitstream/mbcoding.c       examples/xvid_bench.c src/bitstream/x86_asm/cbp_mmx.asm
      src/bitstream/mbcoding.h src/prediction/mbprediction.c  
145    
146    
147  2003-10-03 13:25:17 GMT                                         patch-59  2005-09-15 16:20:49 GMT                                         patch-35
148    
149      Summary:      Summary:
150        Bugfix for PFrames+ Ext Search.        OutputDebugStream cleanup
151      Revision:      Revision:
152        xvidcore--devapi4--1.0--patch-59        xvidcore--head--0.0--patch-35
153    
154      In Qpel mode, the code was doing a diamond search for wrong predictors.      From pete:
155      This resulted in poor performance as the diamond search was sitting there       - OutputDebugStream cleanup
     for sometime.  
156    
157      modified files:      modified files:
158       src/motion/estimation.h src/motion/estimation_pvop.c       dshow/dshow.dsp dshow/sources.inc dshow/src/CXvidDecoder.cpp
159         dshow/src/debug.h
160    
161    
162  2003-10-02 16:50:51 GMT                                         patch-58  2005-07-26 23:32:52 GMT                                         patch-34
163    
164      Summary:      Summary:
165        Added VFW makefile for cygwin/minsys        Long standing error in xvid_decraw for big endian hosts
166      Revision:      Revision:
167        xvidcore--devapi4--1.0--patch-58        xvidcore--head--0.0--patch-34
168    
169      Added VFW makefile for cygwin/minsys. I can't test it so it is probably not      From ed.gomez, spoted by Paul Kurucz ptk9417 at ritvax.isc.rit.edu
170      right out of the box. Waiting for feedback in order to fix it.       * No width and height declared in write_tga bug.
171    
172      new files:      modified files:
173       vfw/bin/.arch-ids/Makefile.cygwin.id       examples/xvid_decraw.c
      vfw/bin/.arch-ids/Makefile.inc.id vfw/bin/Makefile.cygwin  
      vfw/bin/Makefile.inc vfw/src/w32api/.arch-ids/=id  
      vfw/src/w32api/.arch-ids/vfw.h.id vfw/src/w32api/vfw.h  
174    
     new directories:  
      vfw/src/w32api vfw/src/w32api/.arch-ids  
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  2003-10-02 13:35:15 GMT                                         patch-57  
191    2005-07-14 14:25:43 GMT                                         patch-32
192    
193      Summary:      Summary:
194        Cleaned up the lumimasking code.        Disable packed-bframes widget for dxn profile
195      Revision:      Revision:
196        xvidcore--devapi4--1.0--patch-57        xvidcore--head--0.0--patch-32
197    
198      The lumimasking code was not very plugin oriented as it has been ported      From pete:
199      from old XviD versions. This patch cleans up the code and integrates it       * Disable packed-bframes widget for dxn profile
     better with plugin design. No changes done in teh functionnal code.  
200    
201      modified files:      modified files:
202       src/plugins/plugin_lumimasking.c       vfw/src/config.c
203    
204    
205  2003-10-01 23:07:07 GMT                                         patch-56  2005-07-14 14:22:53 GMT                                         patch-31
206    
207      Summary:      Summary:
208        Cleaned up trailing space chars.        Fixed qpel for gcc4 and x86_64
209      Revision:      Revision:
210        xvidcore--devapi4--1.0--patch-56        xvidcore--head--0.0--patch-31
211    
212      The kind of patch we would love to avoid as they make merging      From Martin Drab <drab at kepler dot fjfi dot cvut dot cz>
213      a nightmare while they're kind of useless patches.       * Incomplete type definitions are not supported in GCC4 and newer.
214           This was breaking x86_64.
215    
216      Applied sed 's/[ \t]*$//' to all c/h files.      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:      modified files:
221       src/bitstream/bitstream.c src/bitstream/bitstream.h       src/image/qpel.c
      src/bitstream/cbp.c src/bitstream/mbcoding.c src/dct/idct.c  
      src/dct/simple_idct.c src/decoder.c src/decoder.h  
      src/encoder.c src/encoder.h src/global.h  
      src/image/colorspace.c src/image/colorspace.h src/image/font.c  
      src/image/image.c src/image/image.h src/image/interpolate8x8.c  
      src/image/interpolate8x8.h src/image/qpel.c src/image/qpel.h  
      src/image/reduced.c src/motion/estimation_rd_based.c  
      src/motion/gmc.c src/motion/gmc.h src/motion/motion.h  
      src/motion/sad.c src/plugins/plugin_2pass1.c  
      src/plugins/plugin_2pass2.c src/plugins/plugin_fixed.c  
      src/plugins/plugin_psnr.c src/plugins/plugin_single.c  
      src/portab.h src/prediction/mbprediction.c  
      src/utils/mbtransquant.c src/utils/timer.c src/xvid.c  
      src/xvid.h  
222    
223    
224  2003-09-30 18:10:18 GMT                                         patch-55  2005-07-14 14:11:24 GMT                                         patch-30
225    
226      Summary:      Summary:
227        Code cleanups.        Added VHQ support to xvid_encraw
228      Revision:      Revision:
229        xvidcore--devapi4--1.0--patch-55        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    
     It's been a while since the last ISOC89 conformance cleanup.  
237    
238      Using the following switches help a lot :-)  2005-06-26 15:05:01 GMT                                         patch-29
      -Wall -Wsign-compare -Wredundant-decls -Wunreachable-code -Wnested-externs \  
      -ansi  
239    
240      Result: 0 warning/0 error      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:      modified files:
251       src/bitstream/vlc_codes.h src/global.h src/image/qpel.h       src/dct/idct.h
      src/motion/estimation.h src/motion/estimation_bvop.c  
      src/motion/estimation_gmc.c src/motion/estimation_pvop.c  
      src/motion/estimation_rd_based.c src/motion/gmc.c  
      src/motion/gmc.h src/motion/motion_inlines.h  
      src/motion/vop_type_decision.c  
252    
253    
254  2003-09-29 00:31:32 GMT                                         patch-54  2005-06-26 15:02:05 GMT                                         patch-28
255    
256      Summary:      Summary:
257        Memory leakage fixes.        Bench updates
258      Revision:      Revision:
259        xvidcore--devapi4--1.0--patch-54        xvidcore--head--0.0--patch-28
260    
261      The pEnc->queue was allocated but not freed when bframes == 0.      From skal:
262      And queue images were not freed as well.       - Fixed bench for big endian platforms, updated tests
263    
264      modified files:      modified files:
265       examples/Makefile src/encoder.c src/image/image.c       examples/bench.pl examples/bench_list.pl examples/xvid_bench.c
      src/utils/mem_align.c  
266    
267    
268  2003-09-28 16:45:02 GMT                                         patch-53  2005-06-26 14:59:17 GMT                                         patch-27
269    
270      Summary:      Summary:
271        Fixes the unitialized mcsel bit in RD based ME        Optimized C mem transfer functions
272      Revision:      Revision:
273        xvidcore--devapi4--1.0--patch-53        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      Fixes the unitialized mcsel bit in RD based ME  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:      modified files:
295       src/motion/estimation_rd_based.c       examples/xvid_bench.c src/encoder.c
296    
297    
298  2003-09-28 01:00:06 GMT                                         patch-52  2005-06-26 14:51:35 GMT                                         patch-25
299    
300      Summary:      Summary:
301        Fix the XviD constant version initialization        Fixed write_video_packet_header
302      Revision:      Revision:
303        xvidcore--devapi4--1.0--patch-52        xvidcore--head--0.0--patch-25
304    
305      Fix the XviD constant version initialization      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:      modified files:
313       src/xvid.h       src/bitstream/bitstream.c
314    
315    
316  2003-09-28 00:47:05 GMT                                         patch-51  2005-06-26 14:46:23 GMT                                         patch-24
317    
318      Summary:      Summary:
319        Fix to the build system (the come back).        Added greyscale option support in xvid_encraw
320      Revision:      Revision:
321        xvidcore--devapi4--1.0--patch-51        xvidcore--head--0.0--patch-24
322    
323        Added greyscale option support in xvid_encraw
324    
     Ok this one fixes the way we build the targets. The VPATH thingy really  
     works with the library targets. My understanding of the VPATH mechanism  
     was wrong. Now it should be ok (i promess).  
325    
326      modified files:      modified files:
327       build/generic/Makefile       examples/xvid_encraw.c
328    
329    
330  2003-09-27 11:45:18 GMT                                         patch-50  2005-06-26 14:43:42 GMT                                         patch-23
331    
332      Summary:      Summary:
333        Small fix to previous patch.        IEEE-1180 SSE2 iDCT implementation
334      Revision:      Revision:
335        xvidcore--devapi4--1.0--patch-50        xvidcore--head--0.0--patch-23
336    
337      A pair ofdouble quotes prevented "make" to sort out the VPATH      From skal:
338      dependences in "=build". This resulted in compiling all the       - Implemented IEEE-1180 SSE2 iDCT. Disabled for safety.
     sources, all the time, whether a file changed or not.  
339    
340      modified files:      modified files:
341       build/generic/Makefile       src/dct/x86_asm/fdct_sse2_skal.asm src/xvid.c
342    
343    
344  2003-09-26 22:39:44 GMT                                         patch-49  2005-05-18 22:08:12 GMT                                         patch-22
345    
346      Summary:      Summary:
347        Updated the build files for *nix.        No executable shared objects installed
348      Revision:      Revision:
349        xvidcore--devapi4--1.0--patch-49        xvidcore--head--0.0--patch-22
350    
351      - Fixed MacOSX build (w/o module option). The subversion was not right      From ed.gomez:
352        it was just minor version though it has to be major.minor.       * Do not install the lib as executable. It's no use as the SO has no
353      - Fixed bootstrap.sh for MacOSX environment, it now looks for         main symbol anyway, and the static lib is not runnable anyway.
       glibtoolize if libtoolize is not found.  
     - The unified Makefile now builds XviD out of source tree in the directory  
       =build. It's cleaner, and clashes much less w/ arch/tla source linting.  
     - Tuned the tagging regexps so:  
       + autoconf files are ignored (considered backup => not erased, not copied  
         and not commited/imported)  
       + =build is also considered backup.  
354    
355      modified files:      modified files:
356       build/generic/Makefile build/generic/bootstrap.sh       build/generic/Makefile
      build/generic/configure.in build/generic/platform.inc.in  
      build/generic/sources.inc examples/Makefile  
      {arch}/=tagging-method  
357    
358    
359  2003-09-24 01:38:03 GMT                                         patch-48  2005-05-18 22:05:09 GMT                                         patch-21
360    
361      Summary:      Summary:
362        Bug fix to decoder (mcsel/acpred bits swapped)        Statically link xvid_bench with libxvidcore.a
363      Revision:      Revision:
364        xvidcore--devapi4--1.0--patch-48        xvidcore--head--0.0--patch-21
   
     As reported here:  
     http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1513&highlight=  
365    
366      <quote>      Statically link xvid_bench with libxvidcore.a
     in the spec, 'there is 'mcsel' before 'ac_pred_flag'.  
     however, if you see the code, it's changed.  
     </quote>  
367    
     We were doing the opposite, ac_pred before mcsel.  
368    
369      modified files:      modified files:
370       src/decoder.c       examples/Makefile
371    
372    
373  2003-09-11 17:19:35 GMT                                         patch-47  2005-05-18 21:59:27 GMT                                         patch-20
374    
375      Summary:      Summary:
376        Small fix to GMC+QuarterPel -- BS version bumped to 19        New autoconf garbage removal
377      Revision:      Revision:
378        xvidcore--devapi4--1.0--patch-47        xvidcore--head--0.0--patch-20
379    
380      During the split up, a line has been disabled that prevented good      New autoconf garbage removal
     quartelpel+GMC. Fixed.  
381    
     This fix + patch-43 are a good reason to bump up the bitstream  
     version to 19.  
382    
383      modified files:      modified files:
384       src/motion/gmc.h src/xvid.h       build/generic/bootstrap.sh
385    
386    
387  2003-09-11 17:11:28 GMT                                         patch-46  2005-05-18 21:58:16 GMT                                         patch-19
388    
389      Summary:      Summary:
390        Build process fix for MacOSX+module option        Quotes in configure.in
391      Revision:      Revision:
392        xvidcore--devapi4--1.0--patch-46        xvidcore--head--0.0--patch-19
393    
394        Quotes in configure.in
395    
     This patch fixes the install rule of the MacOSX module style library.  
     It adds a PRE_SHARED_LIB == SHARED_LIB for all platforms except  
     MacOSX that uses it a different way, and exploits the fact  
     $(SPECIFIC_LDFLAGS) is the last var of the build line to insert a  
     command for post linking the right .so file.  
396    
397      modified files:      modified files:
398       build/generic/Makefile build/generic/configure.in       build/generic/configure.in
      build/generic/platform.inc.in  
399    
400    
401  2003-09-11 13:56:40 GMT                                         patch-45  2005-05-18 19:40:18 GMT                                         patch-18
402    
403      Summary:      Summary:
404        Tree cleanup and build files updated.        Added bitstream helper functions for packets.
405      Revision:      Revision:
406        xvidcore--devapi4--1.0--patch-45        xvidcore--head--0.0--patch-18
407    
408      * Win32 files switched to Unix format.      From Skal:
409        Ok, on IRC, we sorted out what was b0rking the project files each       * Added helper functions for video packets, though they're still unused.
       time I commit them in DOS format. In fact the Unix CVS does upload  
       DOS format files if i commit them, and then Win32 CVS users get  
       double \r\n files. So the best is to use unix format in CVS. This  
       way, the checked out versions are right for Win32 users.  
410    
411        NB: this imply a unix2dos conversion when doing a release from a      modified files:
412            Unix box. I think it's better than current policy, but automatic       src/bitstream/bitstream.c src/bitstream/bitstream.h
           tarballs/zip of the tree should take care of that.  
413    
     * odivx and xvid_stat examples removed. Associated project files have  
       been removed as well.  
414    
415      * The divx4 compatibility layer has been removed. Associated options  2005-05-18 19:30:41 GMT                                         patch-17
       in the configure script removed. libxvidcore.def has no more need  
       to be an autoconf generated file.  
416    
417      * rawdec removed. It has never been used and will never be.      Summary:
418          A few more bench stuff
419        Revision:
420          xvidcore--head--0.0--patch-17
421    
422      * Added major api appending to the macosx module build.      From Skal:
423         * Added Perl scripts to automate benches.
424         * Worked on xvid_bench tests to cover more code.
425    
426      removed files:      new files:
427       build/win32/.arch-ids/odivx_enc_dec.dsp.id       examples/.arch-ids/bench.pl.id
428       build/win32/.arch-ids/xvid_stat.dsp.id       examples/.arch-ids/bench_list.pl.id examples/bench.pl
429       build/win32/odivx_enc_dec.dsp build/win32/xvid_stat.dsp       examples/bench_list.pl
      examples/.arch-ids/odivx_enc_dec.c.id  
      examples/.arch-ids/xvid_stat.c.id examples/odivx_enc_dec.c  
      examples/xvid_stat.c rawdec/.arch-ids/=id  
      rawdec/.arch-ids/rawdec.c.id rawdec/.arch-ids/rawdec.dsp.id  
      rawdec/rawdec.c rawdec/rawdec.dsp src/.arch-ids/divx4.c.id  
      src/.arch-ids/divx4.h.id src/divx4.c src/divx4.h  
430    
431      modified files:      modified files:
432       build/generic/Makefile build/generic/configure.in       examples/xvid_bench.c
      build/generic/libxvidcore.def build/win32/libxvidcore.dsp  
      build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp  
      build/win32/xvidcore.dsw  
433    
     renamed files:  
      build/generic/.arch-ids/libxvidcore.def.in.id  
        ==> build/generic/.arch-ids/libxvidcore.def.id  
      build/generic/libxvidcore.def.in  
        ==> build/generic/libxvidcore.def  
434    
435      removed directories:  2005-05-18 19:22:28 GMT                                         patch-16
436       rawdec rawdec/.arch-ids  
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  2003-09-11 12:59:19 GMT                                         patch-44  
449    2005-05-11 21:18:41 GMT                                         patch-15
450    
451      Summary:      Summary:
452        Replaced malloc.h header file with stdlib.h        Export only public API for GNU/Linux and Solaris
453      Revision:      Revision:
454        xvidcore--devapi4--1.0--patch-44        xvidcore--head--0.0--patch-15
455    
456      Replaced malloc.h header file with stdlib.h      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:      modified files:
464       src/plugins/plugin_lumimasking.c       build/generic/Makefile build/generic/configure.in
465    
466    
467  2003-09-10 22:33:04 GMT                                         patch-43  2005-05-11 21:07:00 GMT                                         patch-14
468    
469      Summary:      Summary:
470        Fixed a problem for 'power of 2' framerates        Warnings GCC4
471      Revision:      Revision:
472        xvidcore--devapi4--1.0--patch-43        xvidcore--head--0.0--patch-14
   
     Fixed a problem for 'power of 2' framerates  
473    
474        From ed.gomez:
475         * Remove all GCC 4 warnings.
476    
477      modified files:      modified files:
478       src/bitstream/bitstream.c       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  2003-09-10 21:57:12 GMT                                         patch-42  2005-05-11 20:18:49 GMT                                         patch-13
485    
486      Summary:      Summary:
487        Motion Estimation module splitting.        Add support for gcc-4 in configure system
488      Revision:      Revision:
489        xvidcore--devapi4--1.0--patch-42        xvidcore--head--0.0--patch-13
490    
491      The motion estimation module was the biggest file of the source      From ed.gomez:
492      tree. After some previous attempts, sysKin decided to split it       * Added gcc 4 detection and CFLAG option filtering for it.
     up again. This time he's done it right.  
   
     This split up just changes the organization of ME functions  
     inside different files. This should help a bit in keeping the  
     motion estimation being manageable by a normal human ;-)  
   
     Here is the splitting logic quoted from sysKin's email to  
     xvid-devel:  
      - estimation.h: header files #included in all ME modules:  
                      + deftypes,  
                      + macros  
                      + constants  
                      NB: no code.  
      - estimation_bvop.c: motion estimation for b-vops.  
                           everything in it :)  
      - estimation_common.c: functions shared among all ME  
                             modules:  
                             + diamonds  
                             + subpel  
                             + refinement  
                             + picture  
                             + manipulation  
                             + tables  
                             + ...  etc.  
      - estimation_gmc.c: gruel's GME code  
      - estimation_pvop.c: ME for p-vops. Also SAD-based mode  
                           decision  
      - estimation_rd_based.c: everything R-D-based: mode  
                               decison (including _Fast) and ME.  
      - gmc.c, gmc.h: no change.  
493    
494      new files:      modified files:
495       src/motion/.arch-ids/estimation.h.id       build/generic/configure.in
      src/motion/.arch-ids/estimation_bvop.c.id  
      src/motion/.arch-ids/estimation_common.c.id  
      src/motion/.arch-ids/estimation_gmc.c.id  
      src/motion/.arch-ids/estimation_pvop.c.id  
      src/motion/.arch-ids/estimation_rd_based.c.id  
      src/motion/.arch-ids/motion_inlines.h.id  
      src/motion/.arch-ids/vop_type_decision.c.id  
      src/motion/estimation.h src/motion/estimation_bvop.c  
      src/motion/estimation_common.c src/motion/estimation_gmc.c  
      src/motion/estimation_pvop.c src/motion/estimation_rd_based.c  
      src/motion/motion_inlines.h src/motion/vop_type_decision.c  
496    
497      removed files:  
498       src/motion/.arch-ids/motion_est.c.id  2005-05-11 20:07:54 GMT                                         patch-12
499       src/motion/.arch-ids/motion_est.h.id  
500       src/motion/.arch-ids/smp_motion_est.c.id      Summary:
501       src/motion/.arch-ids/smp_motion_est.h.id  
502       src/motion/motion_est.c src/motion/motion_est.h      Revision:
503       src/motion/smp_motion_est.c src/motion/smp_motion_est.h        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:      modified files:
511       build/generic/sources.inc build/win32/libxvidcore.dsp       vfw/src/config.c vfw/src/resource.rc
      src/bitstream/mbcoding.h src/motion/gmc.c src/motion/gmc.h  
      src/motion/motion.h src/motion/motion_comp.c src/motion/sad.c  
      src/motion/sad.h src/prediction/mbprediction.c  
      src/prediction/mbprediction.h src/utils/mbfunctions.h  
512    
513    
514  2003-09-10 00:40:44 GMT                                         patch-41  2005-05-11 20:06:04 GMT                                         patch-11
515    
516      Summary:      Summary:
517        Cleanups and fix to (trellis+thresholding) logic        Fix alignment issue for mem tranfer
518      Revision:      Revision:
519        xvidcore--devapi4--1.0--patch-41        xvidcore--head--0.0--patch-11
   
     Cleanups to some functions (loop unrolling, call to functions  
     through function array pointers)...  
520    
521      Fix to the trellis+thresholding logic. It was comparing the      From skal:
522      return value of trellis with a threshold but the trellis function       * Fix alignment issue (32 bit reading from non aligned memory)
523      returns the last non zero coeff index... this was basically         likely for RISC CPUs using the C code.
     comparing apples with oranges... funny but wrong. Trellis now  
     returns the sum of absolute coeffs, so the comparison is logical.  
     Btw, as discussed on the devel ML, this is probably uneeded as  
     trellis does an RD optimized coeff distribution.  
524    
525      modified files:      modified files:
526       src/utils/mbtransquant.c       src/utils/mem_transfer.c
527    
528    
529  2003-09-09 13:13:58 GMT                                         patch-40  2005-05-11 20:03:57 GMT                                         patch-10
530    
531      Summary:      Summary:
532        Missing ressource for dshow frontend        Get time function right on win32
533      Revision:      Revision:
534        xvidcore--devapi4--1.0--patch-40        xvidcore--head--0.0--patch-10
   
     Missing ressource for dshow frontend  
535    
536        From Skal:
537         * Get the time function right for win32 (ms precision)
538    
539      new files:      modified files:
540       dshow/src/.arch-ids/XviD_logo.bmp.id dshow/src/XviD_logo.bmp       examples/xvid_bench.c
541    
542    
543  2003-09-08 11:02:10 GMT                                         patch-39  2005-05-11 20:01:28 GMT                                         patch-9
544    
545      Summary:      Summary:
546        Small fixes for fast mode decision        Better ASP bitstream autodetection
547      Revision:      Revision:
548        xvidcore--devapi4--1.0--patch-39        xvidcore--head--0.0--patch-9
   
     Small fixes for fast mode decision  
549    
550        From pete:
551         - Use more flags to determine ASP activation or not.
552    
553      modified files:      modified files:
554       src/motion/motion_est.c src/xvid.h       src/bitstream/bitstream.c
555    
556    
557  2003-09-05 23:45:48 GMT                                         patch-38  #########################################################################
558    # 1.1.0-beta2 (Bitstream Version 39)
559    #########################################################################
560    
561    2005-04-03 20:15:00 GMT                                         patch-7
562    
563      Summary:      Summary:
564        New RD mode decision and subpel refinement.        Makefile credits and whitespace cleaning
565      Revision:      Revision:
566        xvidcore--devapi4--1.0--patch-38        xvidcore--head--0.0--patch-7
567    
568      New stuff from michael. It deals with mode decision and subpel      Makefile credits and whitespace cleaning
     refinement. Integration of these new flags are not settled.  
569    
     Wait and see. Further testing is needed.  
570    
571      modified files:      modified files:
572       src/motion/motion_est.c src/motion/motion_est.h src/xvid.h       dshow/Makefile vfw/bin/Makefile
573    
574    
575  2003-08-29 13:56:30 GMT                                         patch-37  2005-04-03 19:52:35 GMT                                         patch-6
576    
577      Summary:      Summary:
578        Still more ME tuning        Various small things to vbv conformance and divx5 compatibility.
579      Revision:      Revision:
580        xvidcore--devapi4--1.0--patch-37        xvidcore--head--0.0--patch-6
581    
582      Still more ME tuning      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:      modified files:
616       src/motion/motion_est.c       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  2003-08-28 12:43:22 GMT                                         patch-36  2005-04-03 19:50:05 GMT                                         patch-5
623    
624      Summary:      Summary:
625        Removed expanded the cvs Id field        Fixed bug in cartoon mode.
626      Revision:      Revision:
627        xvidcore--devapi4--1.0--patch-36        xvidcore--head--0.0--patch-5
   
     Removed expanded the cvs Id field  
628    
629        From Isiibar:
630         - Fixed cartoon bug as described by CrunCher.
631    
632      modified files:      modified files:
633       src/image/x86_asm/qpel_mmx.asm       src/motion/estimation_pvop.c
634    
635    
636  2003-08-28 12:39:44 GMT                                         patch-35  2005-03-22 20:40:47 GMT                                         patch-4
637    
638      Summary:      Summary:
639        More motion est cleanup and bugfixes.        Added MPEG quant support for PPC
640      Revision:      Revision:
641        xvidcore--devapi4--1.0--patch-35        xvidcore--head--0.0--patch-4
642    
643      Still more bugfixes, cleanups and improvements to the Motion Est      From Christoph Nageli:
644      by sysKin       * 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:      modified files:
651       src/motion/motion_est.c src/motion/motion_est.h       build/generic/sources.inc src/quant/quant.h src/xvid.c
652    
653    
654  2003-08-26 13:57:39 GMT                                         patch-34  2005-03-18 18:00:13 GMT                                         patch-3
655    
656      Summary:      Summary:
657        Added final bits of Aspect Ratio flag.        Updated ChangeLog
658      Revision:      Revision:
659        xvidcore--devapi4--1.0--patch-34        xvidcore--head--0.0--patch-3
660    
661        Updated ChangeLog
662    
     Peter did think of the AR flag since the very beginning of devapi4.  
     He just forgot to code the final bits to effectively write it to  
     the bitstream. This patch adds these missing final bits so XviD now  
     reads and writes AR flags.  
663    
664      modified files:      modified files:
665       ./src/bitstream/bitstream.c ./src/encoder.c ./src/encoder.h       ChangeLog
      ./src/xvid.h  
666    
667    
668  2003-08-25 16:41:09 GMT                                         patch-33  2005-03-18 17:53:24 GMT                                         patch-2
669    
670      Summary:      Summary:
671        Small motion estimation cleanup.        Colorspace code for PPC
672      Revision:      Revision:
673        xvidcore--devapi4--1.0--patch-33        xvidcore--head--0.0--patch-2
674    
675      Cleanups from sysKin.      From Christoph Nageli:
676         - Colorspace function fixes for non 16bytes aligned target adresses.
677    
678      modified files:      modified files:
679       ./src/motion/motion_est.c ./src/motion/motion_est.h       src/image/ppc_asm/colorspace_altivec.c
680    
681    
682  2003-08-25 14:59:28 GMT                                         patch-32  2005-03-18 17:39:00 GMT                                         patch-1
683    
684      Summary:      Summary:
685        Frame padding bug.        Fix for 64bit interlacing
686      Revision:      Revision:
687        xvidcore--devapi4--1.0--patch-32        xvidcore--head--0.0--patch-1
   
     We were edging the image repeating pixels from the image directly,  
     but the standard says we must repeat from a 16 pixel boundary.  
688    
689      See Chapter 7.6.4 of the standard.      From Andrew Dunstan:
690         * Fixed bug where 64bit mov shoud have been 32bit
691    
692      modified files:      modified files:
693       ./src/image/image.c       src/utils/x86_64_asm/interlacing_mmx.asm
694    
695    
696  2003-08-23 15:07:44 GMT                                         patch-31  2005-03-18 17:28:00 GMT                                         base-0
697    
698      Summary:      Summary:
699        New Qpel code.        tag of ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-121
700      Revision:      Revision:
701        xvidcore--devapi4--1.0--patch-31        xvidcore--head--0.0--base-0
702    
703      Isibaar commited a new piece of QPel code that seems to be optimized      (automatically generated log message)
     for ia32(mmx) architectures. I had to clean it up a bit to make it  
     respectful of architecture separations. This code is disabled for  
     non ia32 arch, a comment mention it's only faster on ia32... i wonder  
     if it's true, some tests have to be done on sourceforge compile farm  
     in order to confirm that.  
704    
705      Compared to the bared CVS commit, this patch includes:  # Change of arch/tla archive, explains the patch number wraparound
      - fixes the unix build.  
      - better architecture separation.  
      - CodingStyle respected.  
706    
707      new files:  2005-03-18 16:58:08 GMT                                         patch-121
708       ./src/image/.arch-ids/qpel.c.id  
709       ./src/image/.arch-ids/qpel.h.id ./src/image/qpel.c      Summary:
710       ./src/image/qpel.h        ME work
711       ./src/image/x86_asm/.arch-ids/qpel_mmx.asm.id      Revision:
712       ./src/image/x86_asm/qpel_mmx.asm        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:      modified files:
722       ./build/generic/sources.inc ./build/win32/libxvidcore.dsp       src/motion/estimation.h src/motion/estimation_bvop.c
723       ./src/encoder.c ./src/motion/motion_comp.c ./src/xvid.c       src/motion/estimation_common.c src/motion/estimation_pvop.c
724    
725    
726  2003-08-22 13:20:36 GMT                                         patch-30  2005-03-18 16:56:13 GMT                                         patch-120
727    
728      Summary:      Summary:
729        sad32v does really what it's expected (ie 32x32 SAD :-)        Better instruction pairing in sad mmx
730      Revision:      Revision:
731        xvidcore--devapi4--1.0--patch-30        xvidcore--head--0.0--patch-120
   
     sad32v does really what it's expected (ie 32x32 SAD :-)  
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:      modified files:
737       ./src/motion/sad.c       src/motion/x86_asm/sad_mmx.asm src/utils/emms.c
738    
739    
740  2003-08-18 19:00:49 GMT                                         patch-29  2005-03-18 16:53:00 GMT                                         patch-119
741    
742      Summary:      Summary:
743        64bit fix.        Fixed resource leak in Dshow
744      Revision:      Revision:
745        xvidcore--devapi4--1.0--patch-29        xvidcore--head--0.0--patch-119
746    
747      The interpolation code was unsafe on 64bit platforms, the offset was      From antonz, commited by Isiibar:
748      badly sized, resulting in segfaults.       * Fixed resource leaking caused by poor xvidcore initialization tracking.
749    
750      modified files:      modified files:
751       ./src/image/interpolate8x8.h       dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
752    
753    
754  2003-08-17 14:08:48 GMT                                         patch-28  2005-03-18 16:50:44 GMT                                         patch-118
755    
756      Summary:      Summary:
757        Greyscale mode fixes.        Debug flag support in vfw
758      Revision:      Revision:
759        xvidcore--devapi4--1.0--patch-28        xvidcore--head--0.0--patch-118
   
     We were missing some greyscale tests in the encoder loop... noticeably  
     in the PVOP function when coding an intra block, and in BVOP function  
     when coding all types.  
760    
761      I added the cbp trick in the cases discussed above.      From pete:
762         * debug flag support for vfw decoder.
763    
764      modified files:      modified files:
765       ./src/encoder.c       vfw/src/codec.c
766    
767    
768    #########################################################################
769    # 1.1.0-beta1 (Bitstream Version 38)
770    #########################################################################
771    
772    
773  2003-08-13 11:47:33 GMT                                         patch-27  2005-01-16 10:27:41 GMT                                         patch-117
774    
775      Summary:      Summary:
776        Forgotten bit for IA64 separation        License was using wrong linefeeds for vfw
777      Revision:      Revision:
778        xvidcore--devapi4--1.0--patch-27        xvidcore--head--0.0--patch-117
779    
780      Forgotten bit for IA64 separation      License was using wrong linefeeds for vfw
781    
782    
783        new files:
784         vfw/.arch-ids/LICENSE.id vfw/LICENSE
785    
786      modified files:      modified files:
787       ./src/image/interpolate8x8.h       vfw/src/resource.rc
788    
789    
790  2003-08-11 15:42:30 GMT                                         patch-26  2005-01-10 22:59:46 GMT                                         patch-116
791    
792      Summary:      Summary:
793        Some qpel changes (sync with Isibaar)        Last minutes vfw bugfixes/improvements
794      Revision:      Revision:
795        xvidcore--devapi4--1.0--patch-26        xvidcore--head--0.0--patch-116
   
     Some qpel changes (sync with Isibaar)  
796    
797        From sysKin:
798         * last minute fixes and improvements to vfw frontend.
799    
800      modified files:      modified files:
801       ./examples/xvid_encraw.c       vfw/src/codec.c vfw/src/config.c vfw/src/config.h
802         vfw/src/resource.rc
803    
804    
805  2003-08-11 15:30:04 GMT                                         patch-25  2005-01-09 20:37:32 GMT                                         patch-115
806    
807      Summary:      Summary:
808        Better architecture separation.        Marking 1.1.0 beta1
809      Revision:      Revision:
810        xvidcore--devapi4--1.0--patch-25        xvidcore--head--0.0--patch-115
811    
812      Architecture depending functions were declared whatever arch you      From ed.gomez:
813      were compiling. This patch fixes that.       * Marking xvid 1.1.0 beta1 release.
814    
815      I also removed the simple_idct hack in decoder.c as it was simply      modified files:
816      not used. Better not have ugly code in there.       ChangeLog build/generic/configure.in src/xvid.c src/xvid.h
817    
818    
819    2005-01-09 20:15:14 GMT                                         patch-114
820    
821        Summary:
822          Moved cartoon mode to zones in vfw.
823        Revision:
824          xvidcore--head--0.0--patch-114
825    
826      xvid_bench, should now compile and run on all archs. However I did      From sysKin:
827      not put the cpu definitions for each arch, i just separated       * Moved cartoon mode to zones in vfw frontend.
     ARCH_IS_IA32 so even ARCH_IS_GENERIC can compile  
828    
829      modified files:      modified files:
830       ./examples/xvid_bench.c ./src/bitstream/cbp.h ./src/dct/fdct.h       vfw/src/codec.c vfw/src/config.c vfw/src/config.h
831       ./src/dct/idct.h ./src/decoder.c ./src/image/colorspace.h       vfw/src/resource.rc
      ./src/image/interpolate8x8.h ./src/image/reduced.h  
      ./src/motion/sad.h ./src/quant/quant_h263.h  
      ./src/quant/quant_mpeg4.h ./src/utils/emms.h  
832    
833    
834  2003-08-09 20:47:42 GMT                                         patch-24  2005-01-09 20:09:27 GMT                                         patch-113
835    
836      Summary:      Summary:
       Updated changelog  
     Revision:  
       xvidcore--devapi4--1.0--patch-24  
837    
838      Updated changelog      Revision:
839          xvidcore--head--0.0--patch-113
840    
841        From algern0n (#xvid@freenode):
842         * Avoid infinite loop when updating audio size.
843    
844      modified files:      modified files:
845       ./changelog.txt       vfw/src/config.c
846    
847    
848  2003-08-09 20:31:17 GMT                                         patch-23  2005-01-09 11:32:41 GMT                                         patch-112
849    
850      Summary:      Summary:
851        Workaround to a GMC bug due to a MS compiler bug.        Long standing bug in 2pass2 code. Double overflow accumulation.
852      Revision:      Revision:
853        xvidcore--devapi4--1.0--patch-23        xvidcore--head--0.0--patch-112
854    
855      Christoph did use a trick to speed up code that resulted in badly      From pengvado (x264 developer, sorry i don't have your realname):
856      optimized code (teh compiler was missing a cast)       * rc_2pass2_after accumulates overflow twice, once in each I/PB subcase
857           and then in a common code path. The common path was just supposed to
858           store the stat struct entry error for statistics (even if they're unused)
859    
860      modified files:      modified files:
861       ./src/motion/gmc.c       src/plugins/plugin_2pass2.c
862    
863    
864  2003-08-09 17:09:00 GMT                                         patch-22  2005-01-06 23:42:12 GMT                                         patch-111
865    
866      Summary:      Summary:
867        Fixes to xvid_decraw        Merged amd64 branch fix
868      Revision:      Revision:
869        xvidcore--devapi4--1.0--patch-22        xvidcore--head--0.0--patch-111
870    
871        Merged amd64 branch fix
872    
873        Patches applied:
874    
875      xvid_decraw has always been used on not so high bitrate sequences       * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-12
876      and not so big sequences neither.         Merged upstream
877    
878      I've been doing lot of tests on the Matrix 2 trailer       * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-13
879      (1000x540 25fps ~5Mbits/s) and xvid_decraw was not able to handle that         Bug fix for qpel problem  from Andrew Dunstan
     because of bugs in the buffer filling algorithm.  
880    
     This patch fixes the buffer filling and catches up with christoph changes  
     in CVS (wrong help message and option parsing).  
881    
882      modified files:      modified files:
883       ./examples/xvid_decraw.c       src/image/x86_64_asm/qpel_mmx.asm
884    
885        new patches:
886         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-12
887         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-13
888    
889    
890  2003-08-08 21:31:59 GMT                                         patch-21  2005-01-05 22:53:12 GMT                                         patch-110
891    
892      Summary:      Summary:
893        Added QPel and GMC options.        Merged x86_64 Linux port
894      Revision:      Revision:
895        xvidcore--devapi4--1.0--patch-21        xvidcore--head--0.0--patch-110
896    
897        Merged x86_64 Linux port
898    
899        Patches applied:
900    
901      XviD has so many options that we forget to propose them all on the       * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--base-0
902      CLI, here are two more: GMC and Qpel.         tag of ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-96
903    
904         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-1
905           Merged mainline up to patch-101
906    
907         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-2
908           Merged mainline again for hotfixes
909    
910         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-3
911           Added x86_64 detection in configure system
912    
913         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-4
914           Added src/utils/x86_64_asm files
915    
916         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-5
917           Added /src/quant/x86_64_asm files
918    
919         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-6
920           Added src/motion/x86_64_asm files
921    
922         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-7
923           Added src/dct/x86_64_asm
924    
925         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-8
926           Added halfpel part of src/image/x86_64_asm files
927    
928         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-9
929           Merged mainline
930    
931         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-10
932           Ported the new mem transfer function
933    
934         * ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-11
935           Added src/image/x86_4 qpel code
936    
937    
938        new files:
939         src/dct/x86_64_asm/.arch-ids/=id
940         src/dct/x86_64_asm/.arch-ids/fdct_mmx_skal.asm.id
941         src/dct/x86_64_asm/.arch-ids/idct_mmx.asm.id
942         src/dct/x86_64_asm/fdct_mmx_skal.asm
943         src/dct/x86_64_asm/idct_mmx.asm
944         src/image/x86_64_asm/.arch-ids/=id
945         src/image/x86_64_asm/.arch-ids/interpolate8x8_mmx.asm.id
946         src/image/x86_64_asm/.arch-ids/interpolate8x8_xmm.asm.id
947         src/image/x86_64_asm/.arch-ids/qpel_mmx.asm.id
948         src/image/x86_64_asm/interpolate8x8_mmx.asm
949         src/image/x86_64_asm/interpolate8x8_xmm.asm
950         src/image/x86_64_asm/qpel_mmx.asm
951         src/motion/x86_64_asm/.arch-ids/=id
952         src/motion/x86_64_asm/.arch-ids/sad_mmx.asm.id
953         src/motion/x86_64_asm/.arch-ids/sad_xmm.asm.id
954         src/motion/x86_64_asm/sad_mmx.asm
955         src/motion/x86_64_asm/sad_xmm.asm
956         src/quant/x86_64_asm/.arch-ids/=id
957         src/quant/x86_64_asm/.arch-ids/quantize_h263_mmx.asm.id
958         src/quant/x86_64_asm/.arch-ids/quantize_mpeg_xmm.asm.id
959         src/quant/x86_64_asm/quantize_h263_mmx.asm
960         src/quant/x86_64_asm/quantize_mpeg_xmm.asm
961         src/utils/x86_64_asm/.arch-ids/=id
962         src/utils/x86_64_asm/.arch-ids/cpuid.asm.id
963         src/utils/x86_64_asm/.arch-ids/interlacing_mmx.asm.id
964         src/utils/x86_64_asm/.arch-ids/mem_transfer_mmx.asm.id
965         src/utils/x86_64_asm/cpuid.asm
966         src/utils/x86_64_asm/interlacing_mmx.asm
967         src/utils/x86_64_asm/mem_transfer_mmx.asm
968    
969      modified files:      modified files:
970       ./examples/xvid_encraw.c       build/generic/configure.in build/generic/sources.inc
971         examples/xvid_bench.c src/dct/fdct.h src/dct/idct.h
972         src/image/interpolate8x8.h src/image/qpel.c src/image/qpel.h
973         src/motion/sad.h src/portab.h src/quant/quant.h
974         src/utils/emms.h src/utils/mbfunctions.h
975         src/utils/mem_transfer.h src/xvid.c
976    
977        new directories:
978         src/dct/x86_64_asm src/dct/x86_64_asm/.arch-ids
979         src/image/x86_64_asm src/image/x86_64_asm/.arch-ids
980         src/motion/x86_64_asm src/motion/x86_64_asm/.arch-ids
981         src/quant/x86_64_asm src/quant/x86_64_asm/.arch-ids
982         src/utils/x86_64_asm src/utils/x86_64_asm/.arch-ids
983    
984        new patches:
985         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--base-0
986         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-1
987         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-2
988         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-3
989         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-4
990         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-5
991         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-6
992         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-7
993         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-8
994         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-9
995         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-10
996         ed.gomez@free.fr--amd64/xvidcore--amd64work--0.0--patch-11
997    
998    
999  2003-08-07 19:26:28 GMT                                         patch-20  2004-12-19 16:58:13 GMT                                         patch-109
1000    
1001      Summary:      Summary:
1002        SVOP handling in status window        bvhq speedup.
1003      Revision:      Revision:
1004        xvidcore--devapi4--1.0--patch-20        xvidcore--head--0.0--patch-109
   
     SVOP handling in status window  
1005    
1006        From sysKin:
1007         * Add cbp cost as soon as possible, so it saves a few candidates
1008           testing.
1009    
1010      modified files:      modified files:
1011       ./vfw/src/status.c       src/motion/estimation_rd_based_bvop.c
1012    
1013    
1014  2003-08-07 19:25:03 GMT                                         patch-19  2004-12-19 16:55:47 GMT                                         patch-108
1015    
1016      Summary:      Summary:
1017        Warning cleanups by chl        Added ia32 optimized code for new mem transfer operator.
1018      Revision:      Revision:
1019        xvidcore--devapi4--1.0--patch-19        xvidcore--head--0.0--patch-108
   
     Warning cleanups by chl  
1020    
1021        From sysKin:
1022         * Added ia32 (xmm) optimized code for new mem transfer operator.
1023    
1024      modified files:      modified files:
1025       ./src/encoder.c ./src/encoder.h ./src/image/interpolate8x8.c       src/utils/mem_transfer.c src/utils/mem_transfer.h
1026       ./src/motion/motion_est.c ./src/xvid.h       src/utils/x86_asm/mem_transfer_mmx.asm src/xvid.c
1027    
1028    
1029  2003-08-06 21:13:35 GMT                                         patch-18  2004-12-19 13:39:58 GMT                                         patch-107
1030    
1031      Summary:      Summary:
1032        Fix to GMC sprite trajectory code        Added missing license header
1033      Revision:      Revision:
1034        xvidcore--devapi4--1.0--patch-18        xvidcore--head--0.0--patch-107
1035    
1036        From ed.gomez:
1037         * The GPL header was missing
1038    
     Fix to GMC sprite trajectory code  
1039    
1040    
1041      modified files:      modified files:
1042       ./src/bitstream/mbcoding.c ./src/xvid.h       src/motion/estimation_rd_based_bvop.c
1043    
1044    
1045  2003-08-06 10:57:25 GMT                                         patch-17  2004-12-19 12:41:02 GMT                                         patch-106
1046    
1047      Summary:      Summary:
1048        Fixes a bug in BVOP block skipping thresholding        Updated ChangeLog
1049      Revision:      Revision:
1050        xvidcore--devapi4--1.0--patch-17        xvidcore--head--0.0--patch-106
1051    
1052      Fixes a bug in BVOP block skipping thresholding      Updated ChangeLog
1053    
1054    
1055      modified files:      modified files:
1056       ./src/motion/motion_est.c       ChangeLog
1057    
1058    
1059  2003-08-03 14:57:32 GMT                                         patch-16  2004-12-19 12:38:15 GMT                                         patch-105
1060    
1061      Summary:      Summary:
1062        Functions renaming + motion fixes.        Merged stable 1.0.3 release patches
1063      Revision:      Revision:
1064        xvidcore--devapi4--1.0--patch-16        xvidcore--head--0.0--patch-105
1065    
1066      BITS flags have been renamed to RD (Rate Distorsion) flags... however      Merged stable 1.0.3 release patches
     function names were still xxxBitsxxx.  
1067    
1068      Improved frame type decision      Patches applied:
1069    
1070         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-63
1071           Trellis overflow for quant<=2
1072    
1073         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-64
1074           Marking 1.0.3 release
1075    
     Fix for DQUANTS plugins, their quant was never checked against valid  
     [1..31] range.  
1076    
1077      modified files:      modified files:
1078       ./src/encoder.c ./src/motion/motion_est.c       ChangeLog-1.0 src/utils/mbtransquant.c src/xvid.h
1079       ./src/motion/motion_est.h  
1080        new patches:
1081         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-63
1082         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-64
1083    
1084    
1085  2003-08-02 15:00:49 GMT                                         patch-15  2004-12-19 11:15:53 GMT                                         patch-104
1086    
1087      Summary:      Summary:
1088        API cleanup.        Faster bvhq
1089      Revision:      Revision:
1090        xvidcore--devapi4--1.0--patch-15        xvidcore--head--0.0--patch-104
1091    
1092      Since we started devapi3 and then devapi4, feature names did not change      From sysKin:
1093      because it was just convenient to keep them to minimize the change impact.       * Faster bvhq skipping Intra test if the rd optimized rate
1094      But most of the flags were now not even suggesting what they do. So this         is already < 24bits... some other things too
     patch cleans the API.  
   
     This patch also change the way we describe flags, it's more compact and  
     shows better flags are bit sets that must not overlap. This change fixes  
     a plugin flag overlapping problem as well.  
1095    
1096      modified files:      modified files:
1097       ./examples/xvid_encraw.c ./src/decoder.c ./src/encoder.c       src/motion/estimation.h src/motion/estimation_bvop.c
1098       ./src/encoder.h ./src/motion/motion_est.c       src/motion/estimation_rd_based.c
1099       ./src/motion/motion_est.h ./src/xvid.c ./src/xvid.h       src/motion/estimation_rd_based_bvop.c
      ./vfw/src/codec.c ./vfw/src/config.c  
1100    
1101    
1102  2003-07-29 22:25:12 GMT                                         patch-14  2004-12-10 20:51:56 GMT                                         patch-103
1103    
1104      Summary:      Summary:
1105        Fixed bogus memory accesses        Encoder cleanups.
1106      Revision:      Revision:
1107        xvidcore--devapi4--1.0--patch-14        xvidcore--head--0.0--patch-103
1108    
1109      Fixed bogus memory accesses      From sysKin:
1110         * Moved greyscale code to mbcoding.
1111         * Moved the fcode code to its own function.
1112         * Some other minor cleanups.
1113    
1114    
1115      modified files:      modified files:
1116       ./src/encoder.c ./src/plugins/plugin_2pass1.c       src/bitstream/mbcoding.c src/encoder.c
1117    
1118    
1119  2003-07-28 12:22:33 GMT                                         patch-13  2004-12-10 20:39:23 GMT                                         patch-102
1120    
1121      Summary:      Summary:
1122        Bitstream version increased to 16        Fixed patch-101
1123      Revision:      Revision:
1124        xvidcore--devapi4--1.0--patch-13        xvidcore--head--0.0--patch-102
   
     Bitstream version increased to 16  
1125    
1126        From sysKin:
1127         * Add a cbp assigment that should not have disapeared in patch-101.
1128    
1129      modified files:      modified files:
1130       ./src/xvid.h       src/encoder.c
1131    
1132    
1133  2003-07-25 12:01:51 GMT                                         patch-12  2004-12-09 22:53:20 GMT                                         patch-101
1134    
1135      Summary:      Summary:
1136        Added gmc files to teh windows project file        Speedup using RD results
1137      Revision:      Revision:
1138        xvidcore--devapi4--1.0--patch-12        xvidcore--head--0.0--patch-101
   
     Added gmc files to teh windows project file  
1139    
1140        From sysKin:
1141         * Use cbp from RD to speedup things a bit.
1142    
1143      modified files:      modified files:
1144       ./build/win32/libxvidcore.dsp ./vfw/src/codec.c       src/encoder.c
1145    
1146    
1147  2003-07-25 12:00:31 GMT                                         patch-11  2004-12-09 22:51:02 GMT                                         patch-100
1148    
1149      Summary:      Summary:
1150        Added cartoon mode from Isibaar        Speedup RD a bit
1151      Revision:      Revision:
1152        xvidcore--devapi4--1.0--patch-11        xvidcore--head--0.0--patch-100
1153    
1154        From sysKin:
1155         * Saves a few multiplies in RD code saving the quant*quant value
1156           into the SearchData struct.
1157    
1158        modified files:
1159         src/motion/estimation.h src/motion/estimation_bvop.c
1160         src/motion/estimation_rd_based.c
1161    
     Added cartoon mode from Isibaar  
1162    
1163    2004-12-09 22:48:06 GMT                                         patch-99
1164    
1165        Summary:
1166          Smarter fcode code
1167        Revision:
1168          xvidcore--head--0.0--patch-99
1169    
1170        From sysKin:
1171         * Replaced old fcode code with smarter one.
1172    
1173      modified files:      modified files:
1174       ./src/motion/motion_est.c ./src/plugins/plugin_single.c       src/bitstream/mbcoding.c src/encoder.c src/motion/estimation.h
1175       ./src/utils/mbtransquant.c ./src/xvid.h       src/motion/estimation_bvop.c src/motion/estimation_common.c
1176         src/motion/estimation_pvop.c src/motion/motion_inlines.h
1177    
1178    
1179  2003-07-25 10:30:41 GMT                                         patch-10  2004-12-09 22:00:49 GMT                                         patch-98
1180    
1181      Summary:      Summary:
1182        Bitstream syntax comments.        Removed Reduced Resolution Vops support
1183      Revision:      Revision:
1184        xvidcore--devapi4--1.0--patch-10        xvidcore--head--0.0--patch-98
1185    
1186      This patch does not change the bitstream but adds some comments that      From sysKin:
1187      can help in order to understand (lack of) calls to BitstreamPadAlways.       * it's now a long time we planned removing support for RRV as it
1188           adds complexity to the ME, to the decoder and this feature fits
1189           nowhere in any MPEG4 profile we plan to support.
1190    
1191      modified files:      modified files:
1192       ./src/bitstream/bitstream.c ./src/encoder.c       src/bitstream/bitstream.c src/bitstream/bitstream.h
1193         src/decoder.c src/encoder.c src/image/image.c
1194         src/motion/estimation.h src/motion/estimation_bvop.c
1195         src/motion/estimation_gmc.c src/motion/estimation_pvop.c
1196         src/motion/estimation_rd_based.c
1197         src/motion/estimation_rd_based_bvop.c src/motion/motion.h
1198         src/motion/motion_comp.c src/motion/motion_inlines.h
1199         src/motion/vop_type_decision.c src/utils/mbtransquant.c
1200         src/xvid.c
1201    
1202    
1203  2003-07-22 16:34:25 GMT                                         patch-9  2004-12-07 23:58:12 GMT                                         patch-97
1204    
1205      Summary:      Summary:
1206        Fixes Bistream errors in VOL (+ forced stuffing)        Merged PowerPC fixes from christoph naegeli's branch
1207      Revision:      Revision:
1208        xvidcore--devapi4--1.0--patch-9        xvidcore--head--0.0--patch-97
1209    
1210        Merged PowerPC fixes from christoph naegeli's branch
1211    
1212        Patches applied:
1213    
1214         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-11
1215           Star-merge with Edouards Branch
1216    
1217      After a detailed bugreport at:       * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-12
1218      http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1387&highlight=         debug alignment bugfixes
1219    
1220      I discovered that:       * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-13
1221           bugfixes in altivec alignment assumptions
1222    
1223      1/ we did not write video_signal_type, but we were padding to the next       * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-14
1224      byte, that's why we had video_signal_type=0 and then only 1s until the         linux gcc fixes
     next byte boundary. This explains the 11 next_start_code();  
1225    
1226      2/ video_object_type_indication = Reserved is right on my machine,       * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-15
1227      please check again, but i doubt there is a bug there, we use 3 hard         linux ppc long fixes
     wired values and none of them is zero.  
1228    
1229      3/ 01 : next_start_code() *** Was wrong in 24.02.2003; is correct in       * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-16
1230      dev-api-4!!! *** was a bug in fact... when we write user data, we pad to         minor ppc linux enhancements...
     the next byte boundary (if needed) like the standard says... by  
     chancepadding was almost always done, thus the next_start_code() was  
     respected.  
1231    
     4/ The extra stuffing bits were caused by a forced padding between our  
     VOL function writer and VOP header function writer.  
1232    
1233      modified files:      modified files:
1234       ./src/bitstream/bitstream.c ./src/encoder.c       src/image/ppc_asm/colorspace_altivec.c
1235         src/image/ppc_asm/interpolate8x8_altivec.c
1236         src/image/ppc_asm/qpel_altivec.c
1237         src/motion/ppc_asm/sad_altivec.c
1238         src/quant/ppc_asm/quant_h263_altivec.c
1239         src/utils/ppc_asm/mem_transfer_altivec.c src/xvid.c
1240    
1241        new patches:
1242         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-11
1243         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-12
1244         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-13
1245         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-14
1246         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-15
1247         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-16
1248    
1249    
1250  2003-07-16 22:57:44 GMT                                         patch-8  2004-11-24 22:10:17 GMT                                         patch-96
1251    
1252      Summary:      Summary:
1253        Fixed quant4_intra_xmm and quant_intra_3dne bug for DC<0.        Forgotten bit of patch-94 (vbv code in vfw)
1254      Revision:      Revision:
1255        xvidcore--devapi4--1.0--patch-8        xvidcore--head--0.0--patch-96
1256    
1257      These two functions were suffering the same error that consists in      Forgotten bit of patch-94 (vbv code in vfw)
     emulating idiv with some an inversed divisor array and an imul  
     instruction followed by a right shift...  
1258    
     That was always decreasing the ressult by 1 for negative DC values.  
     A not so bad solution is simply to use a cmov instruction and choose  
     the right value according to the DC value. As these function were  
     for PIII and Athlon, we are sure we can use the cmov instruction.  
   
     PS: the fix is somewhere in cosmetic changes... sorry but the code was  
     too ugly to fix it like it was.  
1259    
1260      modified files:      modified files:
1261       ./src/quant/x86_asm/quantize4_xmm.asm       vfw/src/codec.c
      ./src/quant/x86_asm/quantize_3dne.asm  
1262    
1263    
1264  2003-07-16 12:58:21 GMT                                         patch-7  2004-11-24 21:50:45 GMT                                         patch-95
1265    
1266      Summary:      Summary:
1267        Fixed the build system (error caused by patch-5)        Changed default Brightness value in DShow frontend
1268      Revision:      Revision:
1269        xvidcore--devapi4--1.0--patch-7        xvidcore--head--0.0--patch-95
1270    
1271        Changed default Brightness value in DShow frontend
1272    
     IA64 cahnges were wrong in the build system, they make all platforms  
     try to compile a directory... That patch should fix the IA64 target  
     build and get back to previous behavior for other architectures.  
1273    
1274      modified files:      modified files:
1275       ./build/generic/configure.in ./build/generic/platform.inc.in       dshow/src/config.c
      ./build/generic/sources.inc  
1276    
1277    
1278  2003-07-13 12:16:55 GMT                                         patch-6  2004-11-24 21:50:14 GMT                                         patch-94
1279    
1280      Summary:      Summary:
1281        Updates for GME and some cleanups.        Added support for VBV in frontend.
1282      Revision:      Revision:
1283        xvidcore--devapi4--1.0--patch-6        xvidcore--head--0.0--patch-94
1284    
1285      This is a all in one patch from syskin:      From sysKin:
1286      * mcsel decision moved to ModeDecision() function. That makes motion       * Added support code for VBV in VFW frontend.
1287        loop completely aware of macroblock mode and vectors (amv in that case).  
1288        A simple copy&paste was needed to make the the decision R-D based, to be      modified files:
1289        compatible with MODEDECISION_BITS.       vfw/src/config.c vfw/src/resource.rc
1290    
     * many bugs fixed. Most of them very small,  the only big one was that  
       BITS was misunderstanding a flag and was thinking that mpeg quant is  
       used when h263 quant is used and vice versa :( Also, correct cbp with  
       inter4v mode makes mode decision better. Two speedups - for BITS (no  
       more dequantization when sum == 0) and for ChromaME (chroma sad not  
       computed if total sad too big before that). Some GMC compiler warnings  
       removed. Probably more, I don't remember ;) I haven't touched P/B/I  
       decision for once.  
1291    
1292      * compiler warnings removed, mostly "const mismatch" in get_amv() <-- or  2004-11-24 21:48:35 GMT                                         patch-93
1293        what was his name.  
1294        Summary:
1295          Added interlaced option parsing in xvid_encraw.
1296        Revision:
1297          xvidcore--head--0.0--patch-93
1298    
1299      * two functions made 2x smaller, shorter and faster.      From christoph:
1300         * Added support for interlaced option in xvid_encraw.
1301    
1302      modified files:      modified files:
1303       ./src/encoder.c ./src/global.h ./src/image/interpolate8x8.h       examples/xvid_encraw.c
      ./src/motion/gmc.c ./src/motion/gmc.h  
      ./src/motion/motion_est.c ./src/motion/motion_est.h  
      ./vfw/src/codec.c  
1304    
1305    
1306  2003-07-10 17:35:59 GMT                                         patch-5  2004-11-24 21:45:47 GMT                                         patch-92
1307    
1308      Summary:      Summary:
1309        IA64 updates.        Synced with stable tree
1310      Revision:      Revision:
1311        xvidcore--devapi4--1.0--patch-5        xvidcore--head--0.0--patch-92
1312    
1313        Synced with stable tree
1314    
1315        Patches applied:
1316    
1317      Changes from Stephan Krause <s_kraste at ira.uka.de>       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-60
1318           Fixed DiamondSearch
1319    
1320         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-61
1321           Fixed stride in DShow decoder.
1322    
1323         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-62
1324           Fixed stride in vfw frontend.
1325    
     Small updates so ia64 is supposed to work. Further testing is needed  
     because tests have only been done with xvid_encraw.  
1326    
1327      modified files:      modified files:
1328       ./build/generic/platform.inc.in ./examples/xvid_encraw.c       dshow/src/CXvidDecoder.cpp src/motion/estimation_common.c
1329       ./src/motion/motion_est.c ./src/xvid.c       vfw/src/codec.c
1330    
1331        new patches:
1332         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-60
1333         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-61
1334         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-62
1335    
1336    
1337  2003-07-10 17:27:01 GMT                                         patch-4  2004-10-17 10:13:02 GMT                                         patch-91
1338    
1339      Summary:      Summary:
1340        Removed remaining expanded $ lines from the arch repo        Syncing with Christoph Nageli branch
1341      Revision:      Revision:
1342        xvidcore--devapi4--1.0--patch-4        xvidcore--head--0.0--patch-91
1343    
1344        Syncing with Christoph Nageli branch
1345    
1346        Patches applied:
1347    
1348         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--base-0
1349           tag of ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-68
1350    
1351         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-1
1352           interpolate8x8_haflpel add functions
1353    
1354         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-2
1355           little enhancement
1356    
1357         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-3
1358           Basic QPel pass_16 routines altivec codec
1359    
1360         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-4
1361           Basic QPel pass_8 routines altivec code
1362    
1363         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-5
1364           packed pass_16 routines in a macro
1365    
1366         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-6
1367           packed pass_8 routines in a macro
1368    
1369         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-7
1370           Enhancement of the qpel functions for P-frames
1371    
1372         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-8
1373           QPel Pass_16 Add Functions
1374    
1375         * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-9
1376           Pass_8_Add Altivec functions
1377    
1378      Removed remaining expanded $ lines from the arch repo       * chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-10
1379           Bugfix for Pass_8 Add routines
1380    
1381    
1382        new files:
1383         src/image/ppc_asm/.arch-ids/qpel_altivec.c.id
1384         src/image/ppc_asm/qpel_altivec.c
1385    
1386      modified files:      modified files:
1387       ./CodingStyle ./build/generic/bootstrap.sh       build/generic/sources.inc src/image/interpolate8x8.h
1388       ./doc/xvid-encoder.txt ./src/bitstream/ppc_asm/cbp_altivec.s       src/image/ppc_asm/colorspace_altivec.c
1389       ./src/bitstream/ppc_asm/cbp_ppc.s       src/image/ppc_asm/interpolate8x8_altivec.c src/image/qpel.c
1390       ./src/dct/x86_asm/fdct_xmm.asm       src/image/qpel.h src/xvid.c
1391       ./src/image/x86_asm/colorspace_yuv_mmx.asm  
1392       ./src/image/x86_asm/reduced_mmx.asm      new patches:
1393       ./src/image/x86_asm/yuv_to_yv12_mmx.asm       chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--base-0
1394       ./src/image/x86_asm/yv12_to_rgb24_mmx.asm       chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-1
1395       ./src/image/x86_asm/yv12_to_rgb32_mmx.asm       chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-2
1396       ./src/motion/ppc_asm/sad_altivec.c ./todo.txt       chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-3
1397         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-4
1398         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-5
1399         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-6
1400         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-7
1401         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-8
1402         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-9
1403         chn@kbw.ch--2004-1/xvidcore--naegeli-head--0.0--patch-10
1404    
1405    
1406  2003-07-02 23:20:39 GMT                                         patch-3  2004-10-12 21:00:08 GMT                                         patch-90
1407    
1408      Summary:      Summary:
1409        Reset the IFrame counter when an iframe is encoded        Resynced with 1.0 tree
1410      Revision:      Revision:
1411        xvidcore--devapi4--1.0--patch-3        xvidcore--head--0.0--patch-90
1412    
1413      Reset the IFrame counter when an iframe is encoded      Resynced with 1.0 tree
1414    
1415        Patches applied:
1416    
1417         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-59
1418           Don't read too short streams.
1419    
1420    
1421      modified files:      modified files:
1422       ./src/encoder.c       src/bitstream/bitstream.c
1423    
1424        new patches:
1425         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-59
1426    
1427    
1428  2003-06-29 21:58:24 GMT                                         patch-2  2004-10-12 20:54:47 GMT                                         patch-89
1429    
1430      Summary:      Summary:
1431        Added 3 warp point GMC.        Credits to Christoph Nageli for his work on PPC port
1432      Revision:      Revision:
1433        xvidcore--devapi4--1.0--patch-2        xvidcore--head--0.0--patch-89
1434    
1435      Added 3 warp point GMC (first cvs commit + bitstream warp writing fix      Credits to Christoph Nageli for his work on PPC port
     from cvs)  
1436    
     new files:  
      ./src/motion/.arch-ids/gmc.c.id  
      ./src/motion/.arch-ids/gmc.h.id ./src/motion/gmc.c  
      ./src/motion/gmc.h  
1437    
1438      modified files:      modified files:
1439       ./build/generic/sources.inc ./src/bitstream/bitstream.c       AUTHORS
      ./src/decoder.c ./src/decoder.h ./src/encoder.c  
      ./src/encoder.h ./src/global.h ./src/motion/motion.h  
      ./src/motion/motion_comp.c ./src/motion/motion_est.c  
      ./src/motion/motion_est.h ./src/utils/mbfunctions.h  
      ./src/xvid.h  
1440    
1441    
1442  2003-06-29 21:35:01 GMT                                         patch-1  2004-10-12 20:51:24 GMT                                         patch-88
1443    
1444      Summary:      Summary:
1445        Updated changelog  
1446      Revision:      Revision:
1447        xvidcore--devapi4--1.0--patch-1        xvidcore--head--0.0--patch-88
1448    
1449        Patches applied:
1450    
1451      Updated changelog       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-57
1452           ME fix.
1453    
1454         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-58
1455           64bit fixes
1456    
1457        From ed.gomez:
1458         * Resolved conflicts caused by the 64bit fixes, extended it for qpel.h
1459           Note that 1.1 tree needs a new review for 64bit problems as lot
1460           of ME code has changed.
1461    
1462      modified files:      modified files:
1463       ./changelog.txt       src/image/qpel.h src/motion/estimation_bvop.c
1464         src/motion/estimation_common.c src/motion/motion_comp.c
1465    
1466        new patches:
1467         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-57
1468         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-58
1469    
1470    
1471  2003-06-27 17:01:46 GMT                                         base-0  2004-09-22 22:42:16 GMT                                         patch-87
1472    
1473      Summary:      Summary:
1474        tag of ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-80        DESTDIR support in Makefile
1475      Revision:      Revision:
1476        xvidcore--devapi4--1.0--base-0        xvidcore--head--0.0--patch-87
1477    
1478      (automatically generated log message)      From Thomas Galliano (Gentoo bug #62190):
1479         * Added DESTDIR prefix variable to all install commands destination
1480      new patches:         (ed.gomez: i think it's for packaging issues, so the install
1481       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--base-0          process installs all files as if they were going to the real
1482       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-1          location, as xvid doesn't use any path, i always thought this
1483       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-2          was not required)
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-3  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-4  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-5  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-6  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-7  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-8  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-9  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-10  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-11  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-12  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-13  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-14  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-15  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-16  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-17  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-18  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-19  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-20  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-21  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-22  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-23  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-24  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-25  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-26  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-27  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-28  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-29  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-30  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-31  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-32  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-33  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-34  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-35  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-36  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-37  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-38  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-39  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-40  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-41  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-42  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-43  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-44  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-45  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-46  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-47  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-48  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-49  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-50  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-51  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-52  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-53  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-54  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-55  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-56  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-57  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-58  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-59  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-60  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-61  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-62  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-63  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-64  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-65  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-66  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-67  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-68  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-69  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-70  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-71  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-72  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-73  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-74  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-75  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-76  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-77  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-78  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-79  
      ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-80  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--base-0  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-1  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-2  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-3  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-4  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-5  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-6  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-7  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-8  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-9  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-10  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-11  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-12  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-13  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-14  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-15  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-16  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-17  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-18  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-19  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-20  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--version-0  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--base-0  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-1  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-2  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-3  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-4  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-5  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-6  
   
   
 2003-06-27 13:42:52 GMT                                         patch-80  
   
     Summary:  
       Still fixes and improvements to motion estimation  
     Revision:  
       xvidcore--devapi4--1.0--patch-80  
   
     Still fixes and improvements to motion estimation.  
1484    
1485      modified files:      modified files:
1486       src/motion/motion_est.c src/motion/motion_est.h       build/generic/Makefile build/generic/platform.inc.in
1487    
1488    
1489  2003-06-27 13:35:20 GMT                                         patch-79  2004-09-04 15:10:33 GMT                                         patch-86
1490    
1491      Summary:      Summary:
1492        Added compile time PNM reading        First bvop search must initalize best_sad
1493      Revision:      Revision:
1494        xvidcore--devapi4--1.0--patch-79        xvidcore--head--0.0--patch-86
1495    
1496      Added compile time PNM reading. It can be useful to test RGB<->YV12      From sysKin:
1497      conversions inside XviD.       * First bvop search must initalize best_sad
1498    
1499      modified files:      modified files:
1500       examples/xvid_encraw.c       src/motion/estimation_bvop.c
1501    
1502    
1503  2003-06-24 12:19:01 GMT                                         patch-78  2004-09-04 14:11:43 GMT                                         patch-85
1504    
1505      Summary:      Summary:
1506        Fixes to the RD ME        Fixed function prototype/definition mismatch
1507      Revision:      Revision:
1508        xvidcore--devapi4--1.0--patch-78        xvidcore--head--0.0--patch-85
1509    
1510      Fixes to the RD ME.      From sysKin:
1511         * Fixed function prototype/definition mismatch for some
1512           interpolation C functions.
1513    
1514      modified files:      modified files:
1515       src/motion/motion_est.c src/motion/motion_est.h       src/image/interpolate8x8.c
1516    
1517    
1518  2003-06-14 09:14:11 GMT                                         patch-77  2004-09-04 14:08:13 GMT                                         patch-84
1519    
1520      Summary:      Summary:
1521        Zone update.        Fixed buffer termination logic in xvid_decraw.
1522      Revision:      Revision:
1523        xvidcore--devapi4--1.0--patch-77        xvidcore--head--0.0--patch-84
1524    
1525      Removed zone warning boxes (they are counter productive)      From ed.gomez:
1526      Added zone-based force key frame option.       * Fixed main decoding loop condition to really match
1527           the empty buffer and end of stream condition.
1528         * Removed the unwanted frame number limitation
1529    
1530      modified files:      modified files:
1531       vfw/src/codec.c vfw/src/config.c vfw/src/config.h       examples/xvid_decraw.c
      vfw/src/config.rc vfw/src/resource.h  
1532    
1533    
1534  2003-06-14 09:06:37 GMT                                         patch-76  2004-09-04 14:04:48 GMT                                         patch-83
1535    
1536      Summary:      Summary:
1537        Fixes a bug where type was not respected in a BEFORE plugin.        Uninitialized user data usage.
1538      Revision:      Revision:
1539        xvidcore--devapi4--1.0--patch-76        xvidcore--head--0.0--patch-83
   
     Fixes a bug where type was not respected in a BEFORE plugin.  
1540    
1541      The plugin framework was not copying what was passed to the      From ed.gomez:
1542      call_plugins function.       - Fixed user data parsing uninitialized data.
1543    
1544      modified files:      modified files:
1545       src/encoder.c       src/bitstream/bitstream.c
1546    
1547    
1548  2003-06-12 23:03:38 GMT                                         patch-75  2004-09-04 13:59:26 GMT                                         patch-82
1549    
1550      Summary:      Summary:
1551        Fixed the old "yellow line on left" with rgb output.        Unitialized data in bvop ME
1552      Revision:      Revision:
1553        xvidcore--devapi4--1.0--patch-75        xvidcore--head--0.0--patch-82
1554    
1555      Fixed the old "yellow line on left" with rgb output.      From ed.gomez:
1556         * Fixed unitialized data usage during bvop ME.
1557    
1558      modified files:      modified files:
1559       src/image/x86_asm/colorspace_rgb_mmx.asm       src/motion/estimation_bvop.c
1560    
1561    
1562  2003-06-12 23:02:10 GMT                                         patch-74  2004-09-03 00:13:31 GMT                                         patch-81
1563    
1564      Summary:      Summary:
1565        Removed log2bin ia32 optimization.        Add VOL header saving in xvid_decraw
1566      Revision:      Revision:
1567        xvidcore--devapi4--1.0--patch-74        xvidcore--head--0.0--patch-81
1568    
1569        From ed.gomez:
1570         * Added VOL header saving in xvid_decraw
1571    
1572      Removed log2bin ia32 optimization.      The little story:
1573           I was trying to cut some frames off of a big stream (150MB)
1574           with "xvid_decraw -m", and cat'ing the single frame stream
1575           files together. The reconstructed stream was rejected by all
1576           mpeg4 decoders because the vol header wasn't present. Thus
1577           the fix.
1578    
1579      modified files:      modified files:
1580       src/bitstream/bitstream.c       examples/xvid_decraw.c
1581    
1582    
1583  2003-06-12 22:55:10 GMT                                         patch-73  2004-08-30 23:22:35 GMT                                         patch-80
1584    
1585      Summary:      Summary:
1586        Fixed some small things in encoder.        Complete previous API numbering change
1587      Revision:      Revision:
1588        xvidcore--devapi4--1.0--patch-73        xvidcore--head--0.0--patch-80
1589    
1590      Removed definitively the Hint stuff.      Complete previous API numbering change
1591    
     Fixed some XXX thingies nad some cleanup.  
1592    
1593      modified files:      modified files:
1594       src/encoder.c       src/xvid.h
1595    
1596    
1597  2003-06-12 22:51:55 GMT                                         patch-72  2004-08-29 11:53:05 GMT                                         patch-79
1598    
1599      Summary:      Summary:
1600        Back to Walken's Idct        Merged stable tree
1601      Revision:      Revision:
1602        xvidcore--devapi4--1.0--patch-72        xvidcore--head--0.0--patch-79
1603    
1604      The simple_idct idea was not so good as is. Waiting for a better      Merged stable tree
     solution from michael.  
   
     modified files:  
      src/xvid.c src/xvid.h  
1605    
1606        Patches applied:
1607    
1608  2003-06-10 22:45:57 GMT                                         patch-71       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-54
1609           Marking 1.0.2
1610    
1611      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-55
1612        VFW front end update (New live quant histogram window)         Merged one important forgotten bugfix from head
     Revision:  
       xvidcore--devapi4--1.0--patch-71  
1613    
1614      Update to the VFW frontend. It includes a new window that shows       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-56
1615      live quantizer histogram during encoding session.         ChangeLog update
1616    
     new files:  
      vfw/src/.arch-ids/status.c.id vfw/src/.arch-ids/status.h.id  
      vfw/src/status.c vfw/src/status.h  
1617    
1618      modified files:      modified files:
1619       vfw/src/codec.c vfw/src/codec.h vfw/src/config.c       ChangeLog-1.0 src/xvid.h
1620       vfw/src/config.h vfw/src/config.rc vfw/src/driverproc.c  
1621       vfw/src/resource.h vfw/vfw.dsp      new patches:
1622         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-54
1623         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-55
1624         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-56
1625    
1626    
1627  2003-06-10 20:58:09 GMT                                         patch-70  2004-08-29 09:56:34 GMT                                         patch-78
1628    
1629      Summary:      Summary:
1630        Fixed the win32 project file because of patch-64        Write ia32 symbols' size to elf output.
1631      Revision:      Revision:
1632        xvidcore--devapi4--1.0--patch-70        xvidcore--head--0.0--patch-78
1633    
1634      Removed adapt_quant.[ch] files from the libxvidcore win32 project      From ed.gomez:
1635      file.       - write symbols size to elf output, so the asm objects look
1636           really like any usual object file.
1637    
1638      modified files:      modified files:
1639       build/win32/libxvidcore.dsp       src/bitstream/x86_asm/cbp_3dne.asm
1640         src/bitstream/x86_asm/cbp_mmx.asm
1641         src/bitstream/x86_asm/cbp_sse2.asm
1642         src/dct/x86_asm/fdct_mmx_ffmpeg.asm
1643         src/dct/x86_asm/fdct_mmx_skal.asm
1644         src/dct/x86_asm/fdct_sse2_skal.asm
1645         src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
1646         src/dct/x86_asm/idct_sse2_dmitry.asm
1647         src/dct/x86_asm/simple_idct_mmx.asm
1648         src/image/x86_asm/colorspace_mmx.inc
1649         src/image/x86_asm/colorspace_rgb_mmx.asm
1650         src/image/x86_asm/colorspace_yuv_mmx.asm
1651         src/image/x86_asm/colorspace_yuyv_mmx.asm
1652         src/image/x86_asm/interpolate8x8_3dn.asm
1653         src/image/x86_asm/interpolate8x8_3dne.asm
1654         src/image/x86_asm/interpolate8x8_mmx.asm
1655         src/image/x86_asm/interpolate8x8_xmm.asm
1656         src/image/x86_asm/postprocessing_mmx.asm
1657         src/image/x86_asm/postprocessing_sse2.asm
1658         src/image/x86_asm/qpel_mmx.asm
1659         src/image/x86_asm/reduced_mmx.asm
1660         src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
1661         src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
1662         src/motion/x86_asm/sad_xmm.asm
1663         src/quant/x86_asm/quantize_h263_3dne.asm
1664         src/quant/x86_asm/quantize_h263_mmx.asm
1665         src/quant/x86_asm/quantize_mpeg_mmx.asm
1666         src/quant/x86_asm/quantize_mpeg_xmm.asm
1667         src/utils/x86_asm/cpuid.asm
1668         src/utils/x86_asm/interlacing_mmx.asm
1669         src/utils/x86_asm/mem_transfer_3dne.asm
1670         src/utils/x86_asm/mem_transfer_mmx.asm
1671    
1672    
1673  2003-06-10 20:53:31 GMT                                         patch-69  2004-08-28 13:00:56 GMT                                         patch-77
1674    
1675      Summary:      Summary:
1676        Added direct target frame size support + cosmetic.        Thread safety problem in sse2 brightness control
1677      Revision:      Revision:
1678        xvidcore--devapi4--1.0--patch-69        xvidcore--head--0.0--patch-77
   
     If the target bitrate is < 0, it is now interpreted as a target  
     size in kbytes.  
1679    
1680      I did also some cosmetic work to remove all space indents ^_^.      From ed.gomez:
1681         * CodingStyle for the sse2 image brightness file
1682         * Fixed thread safety problem/big error. Writing to a RO
1683           data segment is a no go ! and using global data segment
1684           is a no go either (use stack instead) !
1685    
1686      modified files:      modified files:
1687       src/plugins/plugin_2pass2.c       src/image/x86_asm/postprocessing_sse2.asm
1688    
1689    
1690  2003-06-10 09:13:40 GMT                                         patch-68  2004-08-22 13:11:23 GMT                                         patch-76
1691    
1692      Summary:      Summary:
1693        xvid_bench updates and corresponding Makefile changes.        Stable merge
1694      Revision:      Revision:
1695        xvidcore--devapi4--1.0--patch-68        xvidcore--head--0.0--patch-76
1696    
1697        Stable merge
1698    
1699      As mentionned on the devel mailing list, xvid_bench did not even      Patches applied:
1700      compile anymore.  
1701         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-53
1702           Thread safety problem in idct C version
1703    
     This patch updates xvid_bench to the new API. xvid_bench is now  
     compiled with other examples by the Makefile, this makes mandatory  
     to include ../build/generic/platform.inc to have the ARCH_IS_xxxx  
     constants. Dunno if it has an impact on Win32 project files.  
1704    
1705      modified files:      modified files:
1706       examples/Makefile examples/xvid_bench.c       src/bitstream/mbcoding.c src/dct/idct.c
1707    
1708        new patches:
1709         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-53
1710    
1711    
1712  2003-06-10 09:05:14 GMT                                         patch-67  2004-08-22 11:48:23 GMT                                         patch-75
1713    
1714      Summary:      Summary:
1715        Probably a small copy/paste error        This tree isn't API 4.0 anymore, mark it as 4.1
1716      Revision:      Revision:
1717        xvidcore--devapi4--1.0--patch-67        xvidcore--head--0.0--patch-75
1718    
1719      XVID_CSP_BGR was advertised as being a 32bit packed format -> 24bit      From ed.gomez:
1720      is the right pixel size       * The fields added to some structs make this lib isn't
1721           API 4.0 anymore, mark it as 4.1 because ABI compatibility
1722           is conserved.
1723    
1724      modified files:      modified files:
1725       src/xvid.h       build/generic/configure.in
1726    
1727    
1728  2003-06-09 19:39:47 GMT                                         patch-66  2004-08-22 11:41:22 GMT                                         patch-74
1729    
1730      Summary:      Summary:
1731        Activated simple_idct_mmx.        Functions qualified as such for elf format.
1732      Revision:      Revision:
1733        xvidcore--devapi4--1.0--patch-66        xvidcore--head--0.0--patch-74
   
     This patch activates simple_idct_mmx use. However it tries to  
     make sure old streams (< version 10) are decoded using the mmx  
     Walten's version.  
1734    
1735      A noticeable bitstream version change, it is now numbered 11.      From ed.gomez:
1736      The number 10 is used on the cvs_head version for the same code       * Functions weren't marked as functions in ia32 asm files.
1737      change.         Added support for the function qualifier for elf.
1738    
1739      modified files:      modified files:
1740       src/bitstream/bitstream.c src/dct/simple_idct.c       build/generic/configure.in src/bitstream/x86_asm/cbp_3dne.asm
1741       src/dct/x86_asm/simple_idct_mmx.asm src/decoder.c       src/bitstream/x86_asm/cbp_mmx.asm
1742       src/decoder.h src/xvid.c src/xvid.h       src/bitstream/x86_asm/cbp_sse2.asm
1743         src/dct/x86_asm/fdct_mmx_ffmpeg.asm
1744         src/dct/x86_asm/fdct_mmx_skal.asm
1745         src/dct/x86_asm/fdct_sse2_skal.asm
1746         src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
1747         src/dct/x86_asm/idct_sse2_dmitry.asm
1748         src/dct/x86_asm/simple_idct_mmx.asm
1749         src/image/x86_asm/colorspace_rgb_mmx.asm
1750         src/image/x86_asm/colorspace_yuv_mmx.asm
1751         src/image/x86_asm/colorspace_yuyv_mmx.asm
1752         src/image/x86_asm/interpolate8x8_3dn.asm
1753         src/image/x86_asm/interpolate8x8_3dne.asm
1754         src/image/x86_asm/interpolate8x8_mmx.asm
1755         src/image/x86_asm/interpolate8x8_xmm.asm
1756         src/image/x86_asm/postprocessing_mmx.asm
1757         src/image/x86_asm/postprocessing_sse2.asm
1758         src/image/x86_asm/qpel_mmx.asm
1759         src/image/x86_asm/reduced_mmx.asm
1760         src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
1761         src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
1762         src/motion/x86_asm/sad_xmm.asm
1763         src/quant/x86_asm/quantize_h263_3dne.asm
1764         src/quant/x86_asm/quantize_h263_mmx.asm
1765         src/quant/x86_asm/quantize_mpeg_mmx.asm
1766         src/quant/x86_asm/quantize_mpeg_xmm.asm
1767         src/utils/x86_asm/cpuid.asm
1768         src/utils/x86_asm/interlacing_mmx.asm
1769         src/utils/x86_asm/mem_transfer_3dne.asm
1770         src/utils/x86_asm/mem_transfer_mmx.asm
1771    
1772    
1773  2003-06-09 19:15:18 GMT                                         patch-65  2004-08-21 17:04:57 GMT                                         patch-73
1774    
1775      Summary:      Summary:
1776        Remaining include of adapt_quant.h        Added yasm support in configure.in
1777      Revision:      Revision:
1778        xvidcore--devapi4--1.0--patch-65        xvidcore--head--0.0--patch-73
1779    
1780      encoder.c was still including adapt_quant.h. Removed.      From ed.gomez:
1781         * Added yasm configure.in support. It's my preferred ia32 assembly
1782           because it allows debugging/profiling of assembly code with oprofile.
1783    
1784      modified files:      modified files:
1785       src/encoder.c       build/generic/configure.in
1786    
1787    
1788  2003-06-09 17:49:44 GMT                                         patch-64  2004-08-21 11:47:31 GMT                                         patch-72
1789    
1790      Summary:      Summary:
1791        Moved code from adapt_quant.c to the lumimasking plugin.        Merged fix from stable
1792      Revision:      Revision:
1793        xvidcore--devapi4--1.0--patch-64        xvidcore--head--0.0--patch-72
1794    
1795      The lumimasking plugin was using functions from outside. As I understand      Merged fix from stable
     what plugins are, they should not rely on code outside their module as  
     much as it is possible to achieve.  
1796    
1797      Here it was clear, the plugin could be made standalone.      Patches applied:
1798    
1799      PS: it seems lumimasking is a no-op plugin, it's probably a bug in the       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-52
1800          plugin framework. No time to track this.         Stupid typo+error in fdct_xxx_skal macro generator.
1801    
     removed files:  
      src/quant/.arch-ids/adapt_quant.c.id  
      src/quant/.arch-ids/adapt_quant.h.id src/quant/adapt_quant.c  
      src/quant/adapt_quant.h  
1802    
1803      modified files:      modified files:
1804       build/generic/sources.inc src/plugins/plugin_lumimasking.c       src/dct/x86_asm/fdct_mmx_skal.asm
1805    
1806        new patches:
1807         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-52
1808    
1809    
1810  2003-06-09 13:45:29 GMT                                         patch-63  2004-08-16 22:32:46 GMT                                         patch-71
1811    
1812      Summary:      Summary:
1813        Legal GNU GPL Headers and copyright holders.        Decoder optimization (fixing regression)
1814      Revision:      Revision:
1815        xvidcore--devapi4--1.0--patch-63        xvidcore--head--0.0--patch-71
1816    
1817      Added Legal GNU GPL headers and copyright holders as defined in      From ed.gomez:
1818      XviD 0.9.x.       * With newly introduced vector checking, decoder became noticeably
1819           slower. This was caused by poorly written code (sorry sysKin :P)
1820      There are still some wrong copyright (atm noted 'Anonymous') and i          + unrolled loop
1821      missed probably some old headers that contain the GNU GPL pattern my          + removed duplicated border computings
1822      script searched for.          + marks the function as __inline
1823    
1824      modified files:      modified files:
1825       dshow/src/CAbout.cpp dshow/src/CAbout.h       src/decoder.c
      dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h  
      dshow/src/IXvidDecoder.h examples/xvid_bench.c  
      examples/xvid_decraw.c examples/xvid_encraw.c  
      examples/xvid_stat.c rawdec/rawdec.c src/bitstream/bitstream.c  
      src/bitstream/bitstream.h src/bitstream/cbp.c  
      src/bitstream/cbp.h src/bitstream/mbcoding.c  
      src/bitstream/mbcoding.h src/bitstream/vlc_codes.h  
      src/bitstream/zigzag.h src/dct/fdct.c src/dct/fdct.h  
      src/dct/idct.c src/dct/idct.h src/dct/simple_idct.c  
      src/decoder.c src/decoder.h src/divx4.c src/divx4.h  
      src/encoder.c src/encoder.h src/global.h  
      src/image/colorspace.c src/image/colorspace.h src/image/font.c  
      src/image/font.h src/image/image.c src/image/image.h  
      src/image/interpolate8x8.c src/image/interpolate8x8.h  
      src/image/reduced.c src/image/reduced.h src/motion/motion.h  
      src/motion/motion_comp.c src/motion/motion_est.c  
      src/motion/motion_est.h src/motion/ppc_asm/sad_altivec.c  
      src/motion/sad.c src/motion/sad.h src/motion/smp_motion_est.c  
      src/motion/smp_motion_est.h src/plugins/plugin_2pass1.c  
      src/plugins/plugin_2pass2.c src/plugins/plugin_dump.c  
      src/plugins/plugin_fixed.c src/plugins/plugin_lumimasking.c  
      src/plugins/plugin_psnr.c src/plugins/plugin_single.c  
      src/portab.h src/prediction/mbprediction.h  
      src/quant/adapt_quant.c src/quant/adapt_quant.h  
      src/quant/quant_h263.h src/quant/quant_matrix.c  
      src/quant/quant_matrix.h src/quant/quant_mpeg4.c  
      src/quant/quant_mpeg4.h src/utils/emms.c src/utils/emms.h  
      src/utils/mbfunctions.h src/utils/mbtransquant.c  
      src/utils/mem_align.c src/utils/mem_align.h  
      src/utils/mem_transfer.c src/utils/mem_transfer.h  
      src/utils/timer.c src/utils/timer.h src/xvid.c src/xvid.h  
      vfw/src/2pass.h vfw/src/codec.h vfw/src/config.h  
      vfw/src/debug.h vfw/src/resource.h vfw/src/vfwext.h  
1826    
1827    
1828  2003-06-09 01:13:50 GMT                                         patch-62  2004-08-15 11:42:20 GMT                                         patch-70
1829    
1830      Summary:      Summary:
1831        ANSI C comments.        Out of bounds MVs clipping
1832      Revision:      Revision:
1833        xvidcore--devapi4--1.0--patch-62        xvidcore--head--0.0--patch-70
1834    
1835      Turned all // ISO C99 comments into ISO C89 (aka ANSI C) coment style.      From sysKin:
1836         * Clip vectors that end up out of bounds.
     Now XviD compiles fine with gcc 3.x -std=iso89 option. This should help  
     those people who want to get XviD working on DSPs or any other exotic  
     hardware. This type of exotic hardware is usually shipped with a very  
     spartiate ANSI C compiler.  
   
     NB: Big patch that breaks all kind of cherry picking merges.  
1837    
1838      modified files:      modified files:
1839       examples/odivx_enc_dec.c examples/xvid_bench.c       src/decoder.c
      src/bitstream/bitstream.c src/bitstream/mbcoding.c  
      src/bitstream/mbcoding.h src/bitstream/zigzag.h src/dct/fdct.c  
      src/dct/idct.c src/dct/simple_idct.c src/decoder.c  
      src/decoder.h src/encoder.c src/encoder.h src/global.h  
      src/image/colorspace.c src/image/font.c src/image/image.c  
      src/image/interpolate8x8.c src/image/interpolate8x8.h  
      src/image/reduced.c src/motion/motion.h  
      src/motion/motion_comp.c src/motion/motion_est.c  
      src/motion/motion_est.h src/motion/sad.c  
      src/plugins/plugin_2pass2.c src/prediction/mbprediction.c  
      src/prediction/mbprediction.h src/quant/adapt_quant.c  
      src/quant/adapt_quant.h src/quant/quant_h263.c  
      src/quant/quant_h263.h src/quant/quant_mpeg4.c  
      src/quant/quant_mpeg4.h src/utils/mbtransquant.c  
      src/utils/mem_transfer.c src/utils/timer.c src/xvid.c  
      vfw/src/2pass.c vfw/src/codec.c vfw/src/codec.h  
      vfw/src/config.c vfw/src/config.h vfw/src/driverproc.c  
1840    
1841    
1842  2003-06-04 18:19:56 GMT                                         patch-61  2004-08-10 22:30:09 GMT                                         patch-69
1843    
1844      Summary:      Summary:
1845        Removed AltCC from VFW frontend        Fixed CBR plugin.
1846      Revision:      Revision:
1847        xvidcore--devapi4--1.0--patch-61        xvidcore--head--0.0--patch-69
1848    
1849      A previous patch removed AltCC from the 2pass plugin. Thus we      From Foxer:
1850      remove the frontend panels for AltCC and corresponding code.       * Do not set the return quantizer to the frame's quantizer
1851           (caused the crazy quant choices)
1852         * Allow quant1 to influence the sequence quality
1853         * Allow more than +- 1 quantizer variation if the desired
1854           quantizer is much higher than the previous.
1855         * Clamp the overflow influence to 1 unit of buffer, that
1856           should help cases where still motion scenes are followed
1857           by normal motion scenes... old code was reaching amazing
1858           high bitrate, with this modification it should keep
1859           smaller bitrate.
1860    
1861      modified files:      modified files:
1862       src/xvid.h vfw/src/codec.c vfw/src/config.c vfw/src/config.h       src/plugins/plugin_single.c
      vfw/src/config.rc  
1863    
1864    
1865  2003-05-29 14:47:28 GMT                                         patch-60  2004-08-01 15:23:49 GMT                                         patch-68
1866    
1867      Summary:      Summary:
1868        Lot of two pass updates.        error in dshow par array indexing
1869      Revision:      Revision:
1870        xvidcore--devapi4--1.0--patch-60        xvidcore--head--0.0--patch-68
1871    
1872      * Removed Alt curve treatment      error in dshow par array indexing
1873    
     * After reading VFW code, i found out that it was using the blocks stats  
       fields  to  retrieve  the number  of  MBs  in  a  frame. So  all  this  
       min_size[]  was  not meant  to  discover  a  min_size for  each  frame  
       according to  its intra  MBs but rather  an hardcoded minimum  for all  
       frames as advertised in earlier  cvs revisions.  It would be easier if  
       original code was commented :-(  
1874    
1875      * Some comment changes      modified files:
1876      * bquant_error and pquant_error have been replaced by an array       dshow/src/CXvidDecoder.cpp
       quant_error[3][32] indexed by frame type and quantizer value.  
     * Moved some initialization stuff  
1877    
     * I read VFW and noticed that min_length was supposed to be:  
       min{hard coded length, min{observed lengths}}  
1878    
1879      * Force frame type during the second pass.  2004-08-01 13:38:36 GMT                                         patch-67
1880    
1881      * Simplified equations.      Summary:
1882          Faster bframe decoding (qpel this time)
1883        Revision:
1884          xvidcore--head--0.0--patch-67
1885    
1886        Scaling was needed because of the non linear formulas used in AltCC but      From ed.gomez:
1887        now we can directly use avg_length[s->type-1] instead of "first prescaling       * Used the same trick as for halfpel bvops, merge backward
1888        bframes to pframes lengths then use pframe stats and at last prescaling back         interpolation and dst averaging steps.
       frame length to bframe lengths"  
1889    
1890        See my new XXX: question about the overflow.      NB: i'm currently not able to say if it's a real speedup or not
1891            because my linux kernel uses a process scheduler gives great
1892            variance to results... so far i'm sure this isn't a slowdown
1893            neither for C nor ia32 SIMD.
1894    
1895      modified files:      modified files:
1896       src/plugins/plugin_2pass2.c       src/decoder.c src/image/qpel.c src/image/qpel.h
1897    
1898    
1899  2003-05-25 10:01:55 GMT                                         patch-59  2004-08-01 11:24:07 GMT                                         patch-66
1900    
1901      Summary:      Summary:
1902        Function reordering, fix minimum "hardcoded" frame sizes in internal_sacle().        Unified qpel code path for all platforms
1903      Revision:      Revision:
1904        xvidcore--devapi4--1.0--patch-59        xvidcore--head--0.0--patch-66
1905    
1906      Fixed a bug where hardcoded miminum frame lengths were computed only for      From ed.gomez and skal:
1907      first frame (IFrame) and was applied for al frames. I just moved the formulas       * Unified qpel code path for all platforms. Next step is
1908      into the frame loop.         to fully exploit this code path to speedup qpel bframe
1909           decoding
1910    
1911      Lot of cosmetic work, function reodrering etc etc so the plugin function      NB: this makes also ports life easier as they would not port
1912      come first, and then we have sub function and helper functions. Some fixes          obsoleted function sets...
     in my previous comments.  
1913    
1914      modified files:      modified files:
1915       src/plugins/plugin_2pass2.c       src/decoder.c src/image/interpolate8x8.h src/image/qpel.c
1916         src/image/qpel.h src/motion/motion_comp.c
1917    
1918    
1919  2003-05-22 23:11:21 GMT                                         patch-58  2004-07-31 15:08:19 GMT                                         patch-65
1920    
1921      Summary:      Summary:
1922        Added the container_frame_overhead field to the 2pass2 RC structure.        Faster bframe decoding.
1923      Revision:      Revision:
1924        xvidcore--devapi4--1.0--patch-58        xvidcore--head--0.0--patch-65
1925    
1926      In my previous patches, i disabled container format overhead compensation      From ed.gomez and skal:
1927      because xvidcore can be used for other things than AVI. However this       * Faster direct/interpolated bvop blocks decoding for halfpel
1928      compensation is usefull, so it's back with its own structure field that         sequences. The trick is to compute and average directly with
1929      specifies how much bytes the container uses for a frame (average value).         destination during one of the forward/backward interpolations.
1930           At this moment, this patch covers only halfpel decoding, the
1931      We can now do some direct ogm, matroska encodings without loosing a single         same trick is expected to be hacked for qpel.
     byte... :-)  
1932    
1933      modified files:      modified files:
1934       src/plugins/plugin_2pass2.c src/xvid.h vfw/src/codec.c       src/decoder.c src/image/interpolate8x8.c
1935         src/image/interpolate8x8.h
1936         src/image/x86_asm/interpolate8x8_mmx.asm
1937         src/image/x86_asm/interpolate8x8_xmm.asm src/xvid.c
1938    
1939    
1940  2003-05-22 22:22:47 GMT                                         patch-57  2004-07-31 09:13:23 GMT                                         patch-64
1941    
1942      Summary:      Summary:
1943        Fixed an overflow bug in target filesize computation.        Last bit for dshow gcc support
1944      Revision:      Revision:
1945        xvidcore--devapi4--1.0--patch-57        xvidcore--head--0.0--patch-64
1946    
1947      rc->target was an uint64_t data to avoid overflow when dealing      From pete:
1948      with long movies and/or high bitrates. The problem is that its       * Last bits concerning gcc build support for dshow.
1949      initialization was using int32 data, thus this was resulting  
1950      in an overflow in its initial computation. Quite silly, but this      removed files:
1951      bug drived me crazy during 4 hours...       dshow/dxpatch/.arch-ids/DXVCSDK-9.0-gcc.patch.id
1952         dshow/dxpatch/.arch-ids/DXVCSDK-9.0-gcc.txt.id
1953         dshow/dxpatch/DXVCSDK-9.0-gcc.patch
1954         dshow/dxpatch/DXVCSDK-9.0-gcc.txt
1955    
1956      modified files:      modified files:
1957       src/plugins/plugin_2pass2.c       dshow/src/Configure.cpp
1958    
1959    
1960  2003-05-22 18:53:19 GMT                                         patch-56  2004-07-27 21:10:02 GMT                                         patch-63
1961    
1962      Summary:      Summary:
1963        Added the mrproper Makefile target.        Better cross compilation support for dshow.
1964      Revision:      Revision:
1965        xvidcore--devapi4--1.0--patch-56        xvidcore--head--0.0--patch-63
1966    
1967        From pete and ed.gomez:
1968         * gcc 3.4.1 is even more pedantic, ::GUID was breaking it, use
1969           struct _GUID instead.
1970         * Some uppercase/lowercase mixing in MS headers.
1971         * More documentation footage for the braves !
1972    
1973      Added the mrproper Makefile target that deletes even bootstrapped      NB: with all this, dshow should compile, but it is not guaranted
1974      files. mrproper name comes from the linux kernel makefile, i was          to work ! There's even a patch for Configure.cpp that could be
1975      out of inspiration.          required... postponed to a later patch.
1976    
1977      modified files:      modified files:
1978       build/generic/Makefile       dshow/dxpatch/dx90sdk-update-gcc.patch
1979         dshow/dxpatch/dx90sdk-update-gcc.txt
1980    
1981    
1982  2003-05-22 17:30:15 GMT                                         patch-55  2004-07-26 20:25:52 GMT                                         patch-62
1983    
1984      Summary:      Summary:
1985        Fix a nasty bug due to a typo mistake.        ChangeLog 1.1 update
1986      Revision:      Revision:
1987        xvidcore--devapi4--1.0--patch-55        xvidcore--head--0.0--patch-62
1988    
1989        ChangeLog 1.1 update
1990    
     We were comparing frame length with a wrong min_size[index]  
     that was out of bounds (in internal_scale).  
1991    
1992      modified files:      modified files:
1993       src/plugins/plugin_2pass2.c       ChangeLog
1994    
1995    
1996  2003-05-22 17:24:19 GMT                                         patch-54  2004-07-26 20:22:38 GMT                                         patch-61
1997    
1998      Summary:      Summary:
1999        Removed automatic \n in DPRINTF calls.        Update from stable
2000      Revision:      Revision:
2001        xvidcore--devapi4--1.0--patch-54        xvidcore--head--0.0--patch-61
2002    
2003        Update from stable
2004    
2005        Patches applied:
2006    
2007         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-51
2008           ChangeLog Update
2009    
     Removed automatic \n in DPRINTF calls.  
2010    
2011      modified files:      modified files:
2012       src/bitstream/bitstream.c src/bitstream/mbcoding.c       ChangeLog-1.0
2013       src/decoder.c src/encoder.c src/image/image.c  
2014       src/plugins/plugin_2pass2.c src/portab.h      new patches:
2015       src/prediction/mbprediction.c       ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-51
2016    
2017    
2018  2003-05-22 17:03:38 GMT                                         patch-53  2004-07-26 19:26:24 GMT                                         patch-60
2019    
2020      Summary:      Summary:
2021        Cleaned up a bit, added comments.        Another missing memset in xvid_decraw
2022      Revision:      Revision:
2023        xvidcore--devapi4--1.0--patch-53        xvidcore--head--0.0--patch-60
2024    
2025        Another missing memset in xvid_decraw
2026    
     I Cleaned up the plugin_before function. I added some comments at the  
     same time, so now it should be more easy to understand the meaning of  
     all these if/else thingies :-)  
2027    
2028      modified files:      modified files:
2029       src/plugins/plugin_2pass2.c       examples/xvid_decraw.c
2030    
2031    
2032  2003-05-18 12:12:49 GMT                                         patch-52  2004-07-26 19:14:45 GMT                                         patch-59
2033    
2034      Summary:      Summary:
2035        Update of xvid_encraw (vop_debug, debug, max key frame)        DShow updates for gcc toolchain.
2036      Revision:      Revision:
2037        xvidcore--devapi4--1.0--patch-52        xvidcore--head--0.0--patch-59
2038    
2039      Added a -vop_debug option. This makes xvidcore to print out frame      From pete:
2040      information directly into the encoded frame.       * More work on the gcc toolchain.
2041    
2042      Changed the meaning of the -debug option. It activates now the      new files:
2043      internal xvidcore debug output.       dshow/dxpatch/.arch-ids/dx90sdk-update-gcc.patch.id
2044         dshow/dxpatch/.arch-ids/dx90sdk-update-gcc.txt.id
2045      Added a -max_key_interval.       dshow/dxpatch/dx90sdk-update-gcc.patch
2046         dshow/dxpatch/dx90sdk-update-gcc.txt
2047    
2048      modified files:      modified files:
2049       examples/xvid_encraw.c       dshow/Makefile dshow/dshow.dsp dshow/src/CXvidDecoder.cpp
2050    
2051    
2052  2003-05-18 12:01:31 GMT                                         patch-51  2004-07-25 21:31:41 GMT                                         patch-58
2053    
2054      Summary:      Summary:
2055        Missing RateControl removal from Win32 visual project.        Added GPL to vfw frontend
2056      Revision:      Revision:
2057        xvidcore--devapi4--1.0--patch-51        xvidcore--head--0.0--patch-58
2058    
2059      RateControl removal was missing in the visual c project.      From pete:
2060         * Added GPL to VFW ressources.
2061    
2062      modified files:      modified files:
2063       build/win32/libxvidcore.dsp       vfw/src/config.c vfw/src/driverproc.c vfw/src/resource.h
2064         vfw/src/resource.rc
2065    
2066    
2067  2003-05-18 00:08:46 GMT                                         patch-50  2004-07-25 19:31:32 GMT                                         patch-57
2068    
2069      Summary:      Summary:
2070        Removed legacy RateControl module.        decoder_mb_decode cleanup
2071      Revision:      Revision:
2072        xvidcore--devapi4--1.0--patch-50        xvidcore--head--0.0--patch-57
   
     Removed all code related to the old RateControl module.  
2073    
2074      removed files:      From ed.gomez:
2075       src/utils/.arch-ids/ratecontrol.h.id       * Try to cleanup the decoder_mb_decode function. A bit more
2076       src/utils/.arch-ids/ratecontrol.c.id src/utils/ratecontrol.h         computing required, less branches, more readable code.
      src/utils/ratecontrol.c  
2077    
2078      modified files:      modified files:
2079       build/generic/sources.inc src/encoder.h       src/decoder.c
2080    
2081    
2082  2003-05-17 23:54:55 GMT                                         patch-49  2004-07-24 11:39:57 GMT                                         patch-56
2083    
2084      Summary:      Summary:
2085        VFW Update.        Important bugfix from stable
2086      Revision:      Revision:
2087        xvidcore--devapi4--1.0--patch-49        xvidcore--head--0.0--patch-56
2088    
2089        Important bugfix from stable
2090    
2091        Patches applied:
2092    
2093      Added support for the debug option. The registry key debug has been       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-50
2094      changed to vop_debug. The reg key debug is now used for the codec         BVOP direct/interpolated ref block rounding fix.
     debugging output.  
2095    
     Some work on zones and mispellings.  
2096    
2097      modified files:      modified files:
2098       vfw/src/codec.c vfw/src/config.c vfw/src/config.h       src/decoder.c
2099       vfw/src/config.rc vfw/src/resource.h  
2100        new patches:
2101         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-50
2102    
2103    
2104  2003-05-17 23:50:38 GMT                                         patch-48  2004-07-23 20:40:08 GMT                                         patch-55
2105    
2106      Summary:      Summary:
2107        2pass plugin updates for zone support.  
2108      Revision:      Revision:
2109        xvidcore--devapi4--1.0--patch-48        xvidcore--head--0.0--patch-55
2110    
2111        From ed.gomez:
2112         * Extended stable patch pplying same change to new nasm files
2113    
2114      A bit more work on zones support in the 2Pass2 plugin.      Patches applied:
2115    
2116         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-49
2117           Removed data qualifer in .rodata
2118    
     Simple cleanup in the 2Pass1 plugin.  
2119    
2120      modified files:      modified files:
2121       src/plugins/plugin_2pass1.c src/plugins/plugin_2pass2.c       src/bitstream/x86_asm/cbp_mmx.asm
2122         src/bitstream/x86_asm/cbp_sse2.asm
2123         src/dct/x86_asm/fdct_mmx_ffmpeg.asm
2124         src/dct/x86_asm/fdct_mmx_skal.asm
2125         src/dct/x86_asm/fdct_sse2_skal.asm
2126         src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
2127         src/dct/x86_asm/idct_sse2_dmitry.asm
2128         src/dct/x86_asm/simple_idct_mmx.asm
2129         src/image/x86_asm/colorspace_rgb_mmx.asm
2130         src/image/x86_asm/colorspace_yuyv_mmx.asm
2131         src/image/x86_asm/interpolate8x8_3dn.asm
2132         src/image/x86_asm/interpolate8x8_3dne.asm
2133         src/image/x86_asm/interpolate8x8_mmx.asm
2134         src/image/x86_asm/interpolate8x8_xmm.asm
2135         src/image/x86_asm/postprocessing_mmx.asm
2136         src/image/x86_asm/postprocessing_sse2.asm
2137         src/image/x86_asm/qpel_mmx.asm
2138         src/image/x86_asm/reduced_mmx.asm
2139         src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
2140         src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
2141         src/motion/x86_asm/sad_xmm.asm
2142         src/quant/x86_asm/quantize_h263_3dne.asm
2143         src/quant/x86_asm/quantize_h263_mmx.asm
2144         src/quant/x86_asm/quantize_mpeg_mmx.asm
2145         src/quant/x86_asm/quantize_mpeg_xmm.asm
2146         src/utils/x86_asm/cpuid.asm
2147         src/utils/x86_asm/interlacing_mmx.asm
2148         src/utils/x86_asm/mem_transfer_3dne.asm
2149         src/utils/x86_asm/mem_transfer_mmx.asm
2150    
2151        new patches:
2152         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-49
2153    
2154    
2155  2003-05-17 21:07:43 GMT                                         patch-47  2004-07-21 19:36:46 GMT                                         patch-54
2156    
2157      Summary:      Summary:
2158        Debug is now controled through xvid_global + INIT        Bframe fixes, still not back to 1.0.1 level
2159      Revision:      Revision:
2160        xvidcore--devapi4--1.0--patch-47        xvidcore--head--0.0--patch-54
2161    
2162      Debug is now controlled through a global variable. It can be set thanx      Bframe fixes, still not back to 1.0.1 level
     to the API using the new xvid_gbl_init_t.debug field.  
2163    
     All DPRINTF constants have been turned into XVID_DEBUG_xxxx. They have  
     been moved to xvid.h.  
2164    
2165      modified files:      modified files:
2166       src/bitstream/bitstream.c src/bitstream/mbcoding.c       src/motion/estimation_bvop.c
2167       src/decoder.c src/encoder.c src/image/image.c       src/motion/estimation_rd_based_bvop.c
      src/plugins/plugin_2pass2.c src/plugins/plugin_single.c  
      src/portab.h src/prediction/mbprediction.c  
      src/utils/ratecontrol.c src/xvid.c src/xvid.h  
2168    
2169    
2170  2003-05-17 20:32:59 GMT                                         patch-46  2004-07-19 18:46:09 GMT                                         patch-53
2171    
2172      Summary:      Summary:
2173        Fix for the patch-44.        Stable merge
2174      Revision:      Revision:
2175        xvidcore--devapi4--1.0--patch-46        xvidcore--head--0.0--patch-53
   
     The fix from pete was breaking lot of other stuff, or at least it was  
     outlining it.  
   
     Now it works reliably.  
2176    
2177      modified files:      Stable merge
      src/encoder.c  
2178    
2179        Patches applied:
2180    
2181  2003-05-15 17:31:04 GMT                                         patch-45       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-47
2182           ISO C99'ism fix
2183    
2184      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-48
2185        Removed XVID_VOP_DYNAMIC_BFRAMES flag.         Complete previous xvid_decraw patch
     Revision:  
       xvidcore--devapi4--1.0--patch-45  
2186    
     The encoder loop bugfix removed this flag, so it's now being removed  
     from xvid_encraw.  
2187    
2188      modified files:      modified files:
2189       examples/xvid_encraw.c       examples/xvid_decraw.c src/encoder.c
2190    
2191        new patches:
2192         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-47
2193         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-48
2194    
2195    
2196  2003-05-15 17:24:55 GMT                                         patch-44  2004-07-18 15:19:58 GMT                                         patch-52
2197    
2198      Summary:      Summary:
2199        Fix to the encoder loop (was not respecting dynamic decision).        Added dshow mingw build process
2200      Revision:      Revision:
2201        xvidcore--devapi4--1.0--patch-44        xvidcore--head--0.0--patch-52
2202    
2203        From pete:
2204         - Added mingw build process to dshow frontend.
2205    
2206      The long awaited fix to the encoder loop that was not respecting the      new files:
2207      dynamic decision performed by the MEAnlyse function.       dshow/.arch-ids/Makefile.id dshow/.arch-ids/sources.inc.id
2208         dshow/Makefile dshow/dxpatch/.arch-ids/=id
2209         dshow/dxpatch/.arch-ids/DXVCSDK-9.0-gcc.patch.id
2210         dshow/dxpatch/.arch-ids/DXVCSDK-9.0-gcc.txt.id
2211         dshow/dxpatch/DXVCSDK-9.0-gcc.patch
2212         dshow/dxpatch/DXVCSDK-9.0-gcc.txt dshow/sources.inc
2213    
2214      modified files:      modified files:
2215       src/encoder.c src/xvid.h       dshow/dshow.dsp dshow/src/CXvidDecoder.cpp
2216         dshow/src/Configure.cpp dshow/src/config.h dshow/src/debug.h
2217         dshow/src/xvid.ax.rc
2218    
2219        new directories:
2220         dshow/dxpatch dshow/dxpatch/.arch-ids
2221    
2222    
2223  2003-05-14 23:27:59 GMT                                         patch-43  2004-07-18 15:01:02 GMT                                         patch-51
2224    
2225      Summary:      Summary:
2226        Added module building for MacOSX.        Added RD optimized block mode decision in bvops
2227      Revision:      Revision:
2228        xvidcore--devapi4--1.0--patch-43        xvidcore--head--0.0--patch-51
2229    
2230      Added the --enable-macosx_module option to the configure script.      From sysKin:
2231      It allows module building on that platform as it differenciates       *  Added RD optimized block mode decision in bvops.
     loadable modules (a la dlopen) and dynamic libs that are simply  
     linked at compile time.  
2232    
2233      This was needed for transcode.      new files:
2234         src/motion/.arch-ids/estimation_rd_based_bvop.c.id
2235      Patch contributed by Tilmann Bitterberg <transcode at tibit.org>       src/motion/estimation_rd_based_bvop.c
2236    
2237      modified files:      modified files:
2238       build/generic/configure.in       build/generic/sources.inc build/win32/libxvidcore.dsp
2239         build/win32/libxvidcore_static.dsp src/motion/estimation.h
2240         src/motion/estimation_bvop.c src/motion/estimation_rd_based.c
2241         src/plugins/plugin_2pass1.c src/xvid.h vfw/src/codec.c
2242         vfw/src/config.c vfw/src/config.h vfw/src/resource.h
2243         vfw/src/resource.rc
2244    
2245    
2246  2003-05-14 20:21:30 GMT                                         patch-42  2004-07-17 11:37:21 GMT                                         patch-50
2247    
2248      Summary:      Summary:
2249        Merged RD ME from cvs_head.        Stable merges
2250      Revision:      Revision:
2251        xvidcore--devapi4--1.0--patch-42        xvidcore--head--0.0--patch-50
2252    
2253        Stable merges
2254    
2255        Patches applied:
2256    
2257         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-45
2258           Future version interoperability
2259    
2260         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-46
2261           Make sure time incr is never larger than 16bit.
2262    
     Syskin has changed a bit the ME algorithm, so now it does a kind of  
     RD optimization of Vector search.  
2263    
2264      modified files:      modified files:
2265       src/motion/motion_est.c src/motion/motion_est.h       examples/xvid_decraw.c src/encoder.c
2266    
2267        new patches:
2268         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-45
2269         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-46
2270    
2271    
2272  2003-05-14 18:40:40 GMT                                         patch-41  2004-07-16 19:53:27 GMT                                         patch-49
2273    
2274      Summary:      Summary:
2275        Merged syskin ME changes.        AR support in DShow
2276      Revision:      Revision:
2277        xvidcore--devapi4--1.0--patch-41        xvidcore--head--0.0--patch-49
2278    
2279      Merged last syskin ME changes. Matches motion_est.c:1.69 and motion_est.h:1.7      From koepi/minolta:
2280      minus unneeded code plus some changes due to new API.       * Added AR support to dshow frontend.
2281    
2282      modified files:      modified files:
2283       src/motion/motion_est.c src/motion/motion_est.h       dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
2284         dshow/src/config.c
2285    
2286    
2287  2003-05-14 17:28:52 GMT                                         patch-40  2004-07-16 19:49:25 GMT                                         patch-48
2288    
2289      Summary:      Summary:
2290        Small update to xvid_encraw.        VFW update and fixes
2291      Revision:      Revision:
2292        xvidcore--devapi4--1.0--patch-40        xvidcore--head--0.0--patch-48
2293    
2294      I added an help message to mention the fact we can repeat the zone options.      From makc on our forums:
2295         * Use non deprecated defines
2296         * Fixed frame size formula.
2297    
2298      modified files:      modified files:
2299       examples/xvid_encraw.c       TODO vfw/src/codec.c vfw/src/driverproc.c
2300    
2301    
2302  2003-05-14 14:19:12 GMT                                         patch-39  2004-07-16 19:29:58 GMT                                         patch-47
2303    
2304      Summary:      Summary:
2305        VFW Update (zone support, profile support)        SSE2 brightness postproc.
2306      Revision:      Revision:
2307        xvidcore--devapi4--1.0--patch-39        xvidcore--head--0.0--patch-47
2308    
2309      VFW Update (zone support, profile support)      From Decoder:
2310         * Added SS2 brightness postproc code.
2311    
2312      new files:      new files:
2313       vfw/src/.arch-ids/vfwext.h.id vfw/src/.arch-ids/debug.h.id       src/image/x86_asm/.arch-ids/postprocessing_sse2.asm.id
2314       vfw/src/vfwext.h vfw/src/debug.h       src/image/x86_asm/postprocessing_sse2.asm
2315    
2316      modified files:      modified files:
2317       vfw/src/codec.c vfw/src/config.c vfw/src/config.h       build/generic/sources.inc build/win32/libxvidcore.dsp
2318       vfw/src/config.rc vfw/src/driverproc.c vfw/src/driverproc.def       build/win32/libxvidcore_static.dsp src/image/postprocessing.h
2319       vfw/src/resource.h vfw/vfw.dsp       src/xvid.c src/xvid.h
2320    
2321    
2322  2003-05-14 14:02:05 GMT                                         patch-38  2004-07-14 23:27:14 GMT                                         patch-46
2323    
2324      Summary:      Summary:
2325        Add support for single RC and zones to xvid_encraw.        More audio for VFW bitcalc
2326      Revision:      Revision:
2327        xvidcore--devapi4--1.0--patch-38        xvidcore--head--0.0--patch-46
2328    
2329      Adds support for single RC and zones to xvid_encraw.      From ???:
2330         * added more audio formats to bitcalc
2331         * replaced old ogm overhead formula with more precise one
2332    
2333      modified files:      modified files:
2334       examples/xvid_encraw.c       TODO vfw/src/config.c vfw/src/resource.rc
2335    
2336    
2337  2003-05-14 13:58:56 GMT                                         patch-37  2004-07-14 13:01:57 GMT                                         patch-45
2338    
2339      Summary:      Summary:
2340        Fixes for Win32 build of libxvidcore.        Enable MMX qpel in decoder.
2341      Revision:      Revision:
2342        xvidcore--devapi4--1.0--patch-37        xvidcore--head--0.0--patch-45
2343    
2344      A previous patch left the Win32 build process incomplete and not up      From ed.gomez:
2345      to date.       * It seems we're not that smart. We had mmx qpel code for more than
2346           a year, it is used in encoder but wasn't in decoder :\
2347    
2348      modified files:      modified files:
2349       build/generic/libxvidcore.def.in build/win32/libxvidcore.dsp       src/decoder.c
2350    
2351    
2352  2003-05-13 00:10:12 GMT                                         patch-36  2004-07-14 10:27:43 GMT                                         patch-44
2353    
2354      Summary:      Summary:
2355        Small fixes.        Speedup block transfer C functionKeywords:
2356      Revision:      Revision:
2357        xvidcore--devapi4--1.0--patch-36        xvidcore--head--0.0--patch-44
2358    
2359      data->quant fix.      From ed.gomez:
2360         * Not that a useful patch for most of users, but transfer8x8 was
2361      Fixed some coding bugs in trellis code. Used __inline and not inline.         really too slow. Simple optimizations did great, all 32bit
2362           platforms using the C code should benefit from this speedup.
2363    
2364      modified files:      modified files:
2365       src/encoder.c src/utils/mbtransquant.c       src/utils/mem_transfer.c
2366    
2367    
2368  2003-05-13 00:05:03 GMT                                         patch-35  2004-07-11 12:53:19 GMT                                         patch-43
2369    
2370      Summary:      Summary:
2371        CBR plugin is renamed Single pass. Fixed Quant plugin is disabled.        Manual AR setting for dshow.
2372      Revision:      Revision:
2373        xvidcore--devapi4--1.0--patch-35        xvidcore--head--0.0--patch-43
   
     With the zones feature, the CBR plugin could be used for all type  
     of one pass RC. The better thing to do would be to include fixed  
     quant to this new single pass plugin.  
2374    
2375      Btw, a (clean) solution has not been found yet. I am obliged to      From koepi:
2376      disable the fixed quant plugin. This breaks xvid_encraw :-(       * added manual AR setting in dshow.
2377    
2378      modified files:      modified files:
2379       build/generic/sources.inc src/plugins/plugin_single.c       dshow/src/CXvidDecoder.cpp dshow/src/config.c
2380       src/xvid.h       dshow/src/config.h dshow/src/resource.h dshow/src/xvid.ax.rc
   
     renamed files:  
      src/plugins/.arch-ids/plugin_cbr.c.id  
        ==> src/plugins/.arch-ids/plugin_single.c.id  
      src/plugins/plugin_cbr.c  
        ==> src/plugins/plugin_single.c  
2381    
2382    
2383  2003-05-12 23:49:14 GMT                                         patch-34  2004-07-11 10:34:56 GMT                                         patch-42
2384    
2385      Summary:      Summary:
2386        Removed quant limits per RC plugin, moved to global settings.        Added top field control to vfw.
2387      Revision:      Revision:
2388        xvidcore--devapi4--1.0--patch-34        xvidcore--head--0.0--patch-42
   
     The I/P/B Frames' min/max quantizers have moved from RC plugins' interface  
     to the general encoding interface.  
2389    
2390      The CBR plugin has been updated for zones and the quent limits move.      From koepi:
2391         * added top field first flag to vfw.
2392    
2393      modified files:      modified files:
2394       src/encoder.c src/encoder.h src/plugins/plugin_2pass2.c       vfw/src/codec.c vfw/src/config.c vfw/src/config.h
2395       src/plugins/plugin_cbr.c src/xvid.h       vfw/src/resource.h vfw/src/resource.rc
2396    
2397    
2398  2003-05-12 23:25:54 GMT                                         patch-33  2004-07-10 17:47:01 GMT                                         patch-41
2399    
2400      Summary:      Summary:
2401        Added encoding zones        Decoder work.
2402      Revision:      Revision:
2403        xvidcore--devapi4--1.0--patch-33        xvidcore--head--0.0--patch-41
2404    
2405      Added encoding zones in 2pass plugins. The idea behind "zones" is      From ed.gomez:
2406      to define frame ranges for which we change the plugin's behavior.       * Faster get coeff (now gcc can even inline it)
2407         * On the fly coeff dequant for inter blocks
2408           (intra don't get this, because there are lot more non
2409            zero coeffs, and i doubt it'd get faster with this)
2410    
2411      modified files:      modified files:
2412       src/encoder.c src/encoder.h src/plugins/plugin_2pass1.c       src/bitstream/mbcoding.c src/bitstream/mbcoding.h
2413       src/xvid.h       src/decoder.c
2414    
2415    
2416  2003-05-12 23:10:17 GMT                                         patch-32  2004-07-10 17:34:19 GMT                                         patch-40
2417    
2418      Summary:      Summary:
2419        Added the profile setting.        ChangeLog update + removed my email
2420      Revision:      Revision:
2421        xvidcore--devapi4--1.0--patch-32        xvidcore--head--0.0--patch-40
2422    
2423        ChangeLog update + removed my email
2424    
     Added the profile setting to user API.  
2425    
2426      modified files:      modified files:
2427       src/bitstream/bitstream.c src/bitstream/bitstream.h       ChangeLog
      src/encoder.c src/encoder.h src/xvid.h  
2428    
2429    
2430  2003-05-11 23:59:01 GMT                                         patch-31  2004-07-10 17:31:36 GMT                                         patch-39
2431    
2432      Summary:      Summary:
2433        Changed quality presets.        Stable merge
2434      Revision:      Revision:
2435        xvidcore--devapi4--1.0--patch-31        xvidcore--head--0.0--patch-39
2436    
2437        Stable merge
2438    
2439      The presets have been changed so now we should have better PSNR with      Patches applied:
2440      higher quality presets in all cases.  
2441         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-43
2442           Small mem leak in vfw.
2443    
2444         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-44
2445           ChangeLog update
2446    
     I changed a bit the way we treat quality overflow or overflow, now i  
     just clip the value to allowed range.  
2447    
2448      modified files:      modified files:
2449       examples/xvid_encraw.c       ChangeLog-1.0 vfw/src/codec.c
2450    
2451        new patches:
2452         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-43
2453         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-44
2454    
2455    
2456  2003-05-11 20:47:55 GMT                                         patch-30  2004-07-10 17:25:33 GMT                                         patch-38
2457    
2458      Summary:      Summary:
2459        Some cleanups in the trellis code.        Improved ME.
2460      Revision:      Revision:
2461        xvidcore--devapi4--1.0--patch-30        xvidcore--head--0.0--patch-38
2462    
2463        From sysKin:
2464         * new ME for b-frames
2465         * small redesign of subpel refinement function
2466    
2467      Some cleanup work on trellis code. Should compile file on Visual C++ now.      From ed.gomez:
2468         * Fixed some warnings reported by gcc. (the if condition should
2469           be checked by the original autor)
2470    
2471      modified files:      modified files:
2472       src/utils/mbtransquant.c       src/motion/estimation.h src/motion/estimation_bvop.c
2473         src/motion/estimation_common.c src/motion/estimation_gmc.c
2474         src/motion/estimation_pvop.c src/motion/estimation_rd_based.c
2475         src/motion/vop_type_decision.c
2476    
2477    
2478  2003-05-10 23:53:28 GMT                                         patch-29  2004-07-10 17:16:38 GMT                                         patch-37
2479    
2480      Summary:      Summary:
2481        New trellis code        qpel and chroma-sad had overlapping memory targets
2482      Revision:      Revision:
2483        xvidcore--devapi4--1.0--patch-29        xvidcore--head--0.0--patch-37
2484    
2485      New trellis code from skal. It should be reworked a bit so it integrates      From sysKin:
2486      better into XviD code.       * qpel and chroma-sad had overlapping memory targets
2487    
2488      modified files:      modified files:
2489       src/bitstream/mbcoding.c src/bitstream/mbcoding.h       src/motion/estimation_bvop.c
      src/utils/mbtransquant.c  
2490    
2491    
2492  2003-05-10 23:43:11 GMT                                         patch-28  2004-07-10 17:03:06 GMT                                         patch-36
2493    
2494      Summary:      Summary:
2495        Intra frame decision.        New changelog for 1.1 tree
2496      Revision:      Revision:
2497        xvidcore--devapi4--1.0--patch-28        xvidcore--head--0.0--patch-36
2498    
2499      These are syskin's words:  hopefully, intra frame at every scene      New changelog for 1.1 tree
     change (we really need it to cut things).  
2500    
2501    
2502      modified files:      new files:
2503       src/motion/motion_est.c       .arch-ids/ChangeLog.id ChangeLog
2504    
2505        renamed files:
2506         .arch-ids/ChangeLog.id
2507           ==> .arch-ids/ChangeLog-1.0.id
2508         ChangeLog
2509           ==> ChangeLog-1.0
2510    
2511    
2512  2003-05-05 21:50:25 GMT                                         patch-27  2004-07-10 16:57:53 GMT                                         patch-35
2513    
2514      Summary:      Summary:
2515        Fixed double last calculation in trellis quantization.        Stable tree merge
2516      Revision:      Revision:
2517        xvidcore--devapi4--1.0--patch-27        xvidcore--head--0.0--patch-35
2518    
2519      chl changelog message:  Removed double calculation of "last" => +0.02dB      Stable tree merge
2520    
2521      modified files:      Patches applied:
      src/bitstream/mbcoding.c  
2522    
2523         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-40
2524           Small memory error in ia32 cpuid function.
2525    
2526  2003-05-05 21:46:29 GMT                                         patch-26       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-41
2527           low delay guessing (il)logic fix.
2528    
2529      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-42
2530        Added config.status to the distclean target.         Fix wrong matrix reading logic.
     Revision:  
       xvidcore--devapi4--1.0--patch-26  
2531    
     The target distclean is supposed to clean all files so the remaining  
     ones are those supposed to be found in a distribution tarball...  
     config.status is not one of them, so let's add this to the distclean  
     target.  
2532    
2533      modified files:      modified files:
2534       build/generic/Makefile       src/bitstream/bitstream.c src/decoder.c
2535         src/utils/x86_asm/cpuid.asm
2536    
2537        new patches:
2538         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-40
2539         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-41
2540         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-42
2541    
2542    
2543  2003-05-05 21:39:47 GMT                                         patch-25  2004-06-12 13:51:50 GMT                                         patch-34
2544    
2545      Summary:      Summary:
2546        configure.in tuning (API number and lib sonames).        Added VBV to twopass RC
2547      Revision:      Revision:
2548        xvidcore--devapi4--1.0--patch-25        xvidcore--head--0.0--patch-34
   
     I fixed a typo which prevented SPECIFIC_CFLAGS to be properly set by  
     the configure script.  
2549    
2550      I also bumped the API version number as API 3.0 is current cvs_head      From christoph:
2551      and this branch is the next major API version       * Added VBV model verifier to twopass RC plugin
2552    
2553      While trying to build my own debian package out of xvidcore, i ran into      From ed.gomez:
2554      trouble with the soname not respecting some basic rules that prevented       * Do apply CodingStyle to christoph's code
2555      having different library revisions running alongside (with different major       * Use DPRINTF instead of #ifdef VBV_DEBUG #endif blocks as
2556      APIs). This has been fixed adding the major API number to the library         the information that was outputting was usefull for general
2557      SONAME.         RC debugging.
2558    
2559      modified files:      modified files:
2560       build/generic/configure.in       examples/xvid_encraw.c src/plugins/plugin_2pass2.c src/xvid.h
2561    
2562    
2563  2003-04-27 23:22:30 GMT                                         patch-24  2004-06-05 23:05:43 GMT                                         patch-33
2564    
2565      Summary:      Summary:
2566        Cleaned CBR plugin a bit, adds structure for a better initial quant.        Merged stable branch patches
2567      Revision:      Revision:
2568        xvidcore--devapi4--1.0--patch-24        xvidcore--head--0.0--patch-33
2569    
2570      Just a clean up turning default values to preprocessor constants. I added      Merged stable branch patches
     a get_initial_quant for trying to retrieve support in a near future, a good  
     quantizer according to the desired target bitrate. This will be done thanks  
     to a simple LUT where we'll have lut[quant] = average_bitrate;. This seems  
     stupid but it'll be better than starting with an hardcoded value.  
2571    
2572      modified files:      Patches applied:
      src/plugins/plugin_cbr.c  
2573    
2574         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-38
2575           DC clipping bug for real
2576    
2577  2003-04-27 23:18:20 GMT                                         patch-23       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-39
2578           Marking 1.0.1 release
2579    
     Summary:  
       b-frames look good in still motion, after all.  
     Revision:  
       xvidcore--devapi4--1.0--patch-23  
   
     b-frames look good in still motion, after all.  
2580    
2581      modified files:      modified files:
2582       src/motion/motion_est.c       ChangeLog TODO build/generic/configure.in src/decoder.c
2583         src/motion/estimation_rd_based.c src/prediction/mbprediction.c
2584         src/prediction/mbprediction.h src/xvid.h
2585    
2586        new patches:
2587         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-38
2588         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-39
2589    
2590    
2591  2003-04-27 23:14:39 GMT                                         patch-22  2004-06-05 23:02:35 GMT                                         patch-32
2592    
2593      Summary:      Summary:
2594        Add initial trellis quantization to inter+h263 frames.        Previous merge went wrong
2595      Revision:      Revision:
2596        xvidcore--devapi4--1.0--patch-22        xvidcore--head--0.0--patch-32
2597    
2598      This is the initial support of trellis quantization for inter frames      Previous merge went wrong
     + h263 quantization method.  
2599    
     Complete support is on the way.  
2600    
2601      modified files:      modified files:
2602       examples/xvid_encraw.c src/bitstream/mbcoding.c       src/portab.h
      src/bitstream/mbcoding.h src/utils/mbtransquant.c src/xvid.h  
2603    
2604    
2605  2003-04-27 22:59:47 GMT                                         patch-21  2004-05-31 21:32:38 GMT                                         patch-31
2606    
2607      Summary:      Summary:
2608        Fixes 2 memory leaks.        Added icon into vfw frontend.
2609      Revision:      Revision:
2610        xvidcore--devapi4--1.0--patch-21        xvidcore--head--0.0--patch-31
2611    
2612      After a valgrind pass I fixed these 2 leaks. We have still to fix      From pete:
2613      an MEAnalysis on unitialized data.       * Added icon into vfw fronted dll. Should show up in uninstall menu.
2614    
2615        new files:
2616         vfw/src/.arch-ids/xvid.ico.id vfw/src/xvid.ico
2617    
2618      modified files:      modified files:
2619       src/encoder.c src/utils/mem_align.c       vfw/bin/xvid.inf vfw/src/resource.rc vfw/vfw.dsp
2620    
2621    
2622  2003-04-27 22:50:27 GMT                                         patch-20  2004-05-31 21:22:49 GMT                                         patch-30
2623    
2624      Summary:      Summary:
2625        Adds Avg PSNR output to xvid_encraw.        Merged stable branch fixes
2626      Revision:      Revision:
2627        xvidcore--devapi4--1.0--patch-20        xvidcore--head--0.0--patch-30
2628    
2629      Adds Avg PSNR output to xvid_encraw.      Merged stable branch fixes
2630    
2631      modified files:      Patches applied:
      examples/xvid_encraw.c  
2632    
2633         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-31
2634           Close variable argument list.
2635    
2636  2003-04-27 22:40:45 GMT                                         patch-19       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-32
2637           Bits/Bytes confusion in the VFW frontend.
2638    
2639      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-33
2640        Fixes the vfw Visual Project.         Nasty typo in pvop vector lambdas.
2641      Revision:  
2642        xvidcore--devapi4--1.0--patch-19       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-34
2643           FPS=1 problem in decoder.
2644    
2645         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-35
2646           More missing va_end() calls.
2647    
2648         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-36
2649           Wrong license header.
2650    
2651         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-37
2652           time fixes to decoder.
2653    
     A missing file has been removed from the project file.  
2654    
2655      modified files:      modified files:
2656       vfw/vfw.dsp       src/bitstream/bitstream.c src/decoder.c src/decoder.h
2657         src/image/font.c src/image/reduced.c
2658         src/motion/estimation_pvop.c src/portab.h vfw/src/codec.c
2659         vfw/src/config.c
2660    
2661        new patches:
2662         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-31
2663         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-32
2664         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-33
2665         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-34
2666         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-35
2667         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-36
2668         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-37
2669    
2670    
2671  2003-04-14 20:07:47 GMT                                         patch-18  2004-05-26 09:13:33 GMT                                         patch-29
2672    
2673      Summary:      Summary:
2674        Fixes plugin initialization in xvid_encraw.        Stable merges
2675      Revision:      Revision:
2676        xvidcore--devapi4--1.0--patch-18        xvidcore--head--0.0--patch-29
2677    
2678      We were initializing plugins' versions before a memset...      Stable merges
     <homer>Doh...</homer>  
2679    
2680      modified files:      Patches applied:
      examples/xvid_encraw.c  
2681    
2682         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-28
2683           Small bug in bframe ME.
2684    
2685  2003-04-14 15:28:57 GMT                                         patch-17       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-29
2686           Small trellis bug
2687    
2688      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-30
2689        Fixed function prototypes <-> definitions mismatching.         ICM compatibility for VFW
     Revision:  
       xvidcore--devapi4--1.0--patch-17  
2690    
     Fixed function prototypes <-> definitions mismatching.  
2691    
2692      modified files:      modified files:
2693       src/utils/mbfunctions.h src/utils/mbtransquant.c       src/motion/estimation_bvop.c src/utils/mbtransquant.c
2694         vfw/src/config.c vfw/src/driverproc.c
2695    
2696        new patches:
2697         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-28
2698         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-29
2699         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-30
2700    
2701  2003-04-14 15:23:15 GMT                                         patch-16  
2702    2004-05-21 14:32:41 GMT                                         patch-28
2703    
2704      Summary:      Summary:
2705        VFW frontend update        Don't set edges twice on a frame.
2706      Revision:      Revision:
2707        xvidcore--devapi4--1.0--patch-16        xvidcore--head--0.0--patch-28
2708    
2709      The VFW frontend has been updated.      From ed.gomez:
2710         * A similar optimization has been done for encoder long ago,
2711           dunno why this hasn't been "ported" to decoder. This speeds
2712           up quite a lot the decoder for no effort (~7%).
2713    
2714      modified files:      modified files:
2715       vfw/src/codec.c vfw/src/codec.h vfw/src/config.c       src/decoder.c src/decoder.h
      vfw/src/config.h vfw/src/config.rc vfw/src/driverproc.c  
      vfw/src/resource.h vfw/vfw.dsp  
2716    
2717    
2718  2003-04-14 15:05:20 GMT                                         patch-15  2004-05-21 14:25:19 GMT                                         patch-27
2719    
2720      Summary:      Summary:
2721        Fixed BITS decision for low quants, reworked p/b/i decision.        No 64 bit arithmetic in critical path.
2722      Revision:      Revision:
2723        xvidcore--devapi4--1.0--patch-15        xvidcore--head--0.0--patch-27
   
     sysKin's log message: improved vhq (does not decrease psnr anymore - at least  
                           for low quants) and tweaked p/b/i decision again.  
2724    
2725      I Added a fix to this CVS commit to avoid ALU Exception (division by zero). It      From ed.gomez:
2726      has been commited to cvs_head as well by sysKin.       * No 64 bit arithmetic in critical paths (direct blocks in bvops), it's
2727           way too slow (__divdi3 GNU/Linux ABI for 64bit division was taking
2728           up to 5% cycles)
2729    
2730      modified files:      modified files:
2731       src/motion/motion_est.c       src/decoder.c
2732    
2733    
2734  2003-04-10 13:01:07 GMT                                         patch-14  2004-05-15 22:20:11 GMT                                         patch-26
2735    
2736      Summary:      Summary:
2737        Removed all ABS() macros.        Merged stable tree changes
2738      Revision:      Revision:
2739        xvidcore--devapi4--1.0--patch-14        xvidcore--head--0.0--patch-26
2740    
2741      All  ABS   macros  have   been  replace  with   their  stdlib.h/math.h      Merged stable tree changes
     equivalent. This gives a 33%  overall speedup for the plain C encoder,  
     while the  ia32 one seems to  suffer a small speed  loss. However this  
     speed loss is  very small and it  seems it depends on the  CPU type as  
     the abs/fabs usage  is impacting badly on sad  functions but impacting  
     well on interpolate functions ... weird inst'it ?  
2742    
2743      modified files:      Patches applied:
      src/bitstream/mbcoding.c src/global.h src/image/image.c  
      src/motion/motion_comp.c src/motion/motion_est.c  
      src/motion/sad.c src/prediction/mbprediction.c  
      src/utils/mbtransquant.c src/xvid.c  
2744    
2745         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-23
2746           Some very light Unix build system changes
2747    
2748  2003-04-09 18:44:24 GMT                                         patch-13       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-24
2749           Possible VOL header corruption.
2750    
2751      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-25
2752        Added GNU profiling option to the configure script.         DC prediction fix.
     Revision:  
       xvidcore--devapi4--1.0--patch-13  
2753    
2754      In  order to allow  easy profiling  using GNU  tools (gprof,  gcov), I       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-26
2755      added  the  --enable-gnuprofile  to  the configure.in  template.  This         Small mismatch in hint<->widget in VFW
     modifies the SPECIFIC_LDFLAGS and SPECIFIC_CFLAGS for library building  
     so they include all needed options for profiling and test coverage.  
2756    
2757      /!\  When  compiling your  own  program,  don't  forget to  use  these       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-27
2758           options:         Marking 1.0.0 final
            -pg -fprofile-arcs -ftest-coverage  
2759    
          When linking your program, you  MUST use the -pg option too, else  
          your binary will not use/create profiling informations.  
2760    
2761      modified files:      modified files:
2762       build/generic/configure.in       ChangeLog build/generic/Makefile build/generic/bootstrap.sh
2763         build/generic/configure.in src/bitstream/bitstream.c
2764         src/decoder.c src/motion/estimation_rd_based.c
2765         src/prediction/mbprediction.c src/prediction/mbprediction.h
2766         src/xvid.h vfw/src/resource.rc
2767    
2768        new patches:
2769         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-23
2770         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-24
2771         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-25
2772         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-26
2773         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-27
2774    
2775    
2776  2003-04-09 16:09:33 GMT                                         patch-12  2004-04-25 21:46:25 GMT                                         patch-25
2777    
2778      Summary:      Summary:
2779        Build fix from release-0_9_1-fixes@cvs.xvid.org        Smarter skipping
2780      Revision:      Revision:
2781        xvidcore--devapi4--1.0--patch-12        xvidcore--head--0.0--patch-25
2782    
2783      MacOSX build process was wrong on the linking stage as it was ignoring      From sysKin:
2784      the equivalent of the linux soname thingy.       * Smarter skipping + bugfix
2785    
2786      modified files:      modified files:
2787       build/generic/configure.in       src/motion/estimation.h src/motion/estimation_bvop.c
2788         src/motion/estimation_pvop.c
2789    
2790    
2791  2003-04-09 13:44:06 GMT                                         patch-11  2004-04-20 20:37:08 GMT                                         patch-24
2792    
2793      Summary:      Summary:
2794        Syncing arch tree with xvid.org cvs.        ME cleanup.
2795      Revision:      Revision:
2796        xvidcore--devapi4--1.0--patch-11        xvidcore--head--0.0--patch-24
   
     Synced with all the work done  in the xvid.org cvs repository. I could  
     not  maintain a  complete list  of all  items but  here is  a  kind of  
     digest.  
   
      + Merged build files fixes from the release-0_9_1-fixes branch.  
      + Synced all motion estimation changes from the cvs_head branch.  
      + Added rate control plugins.  
      + Added lumimasking plugin.  
      + Synced optimizations from cvs_head in interpolate and cbp  
        functions.  
      + xvid_encraw improvements.  
      + new mbtransquant set of functions.  
      + Fixed bframe SSE calculation.  
2797    
2798      new files:      From sysKin:
2799       src/plugins/.arch-ids/plugin_2pass1.c.id       * First stage cleanup: new fast qpel refinement.
      src/plugins/.arch-ids/plugin_2pass2.c.id  
      src/plugins/.arch-ids/plugin_cbr.c.id  
      src/plugins/.arch-ids/plugin_fixed.c.id  
      src/plugins/.arch-ids/plugin_lumimasking.c.id  
      vfw/src/.arch-ids/XviD_logo.bmp.id src/plugins/plugin_2pass1.c  
      src/plugins/plugin_2pass2.c src/plugins/plugin_cbr.c  
      src/plugins/plugin_fixed.c src/plugins/plugin_lumimasking.c  
      vfw/src/XviD_logo.bmp  
2800    
2801      modified files:      modified files:
2802       build/generic/Makefile build/generic/bootstrap.sh       src/motion/estimation.h src/motion/estimation_bvop.c
2803       build/generic/configure.in build/generic/libxvidcore.def.in       src/motion/estimation_common.c src/motion/estimation_gmc.c
2804       build/generic/platform.inc.in build/generic/sources.inc       src/motion/estimation_pvop.c src/motion/estimation_rd_based.c
2805       build/win32/libxvidcore.dsp examples/xvid_decraw.c       src/motion/vop_type_decision.c
      examples/xvid_encraw.c examples/xvid_stat.c  
      src/bitstream/bitstream.c src/bitstream/bitstream.h  
      src/bitstream/cbp.c src/bitstream/mbcoding.c  
      src/bitstream/vlc_codes.h src/decoder.c src/divx4.c  
      src/encoder.c src/encoder.h src/global.h src/image/image.c  
      src/image/interpolate8x8.c src/motion/motion.h  
      src/motion/motion_comp.c src/motion/motion_est.c  
      src/motion/motion_est.h src/motion/sad.c  
      src/plugins/plugin_dump.c src/plugins/plugin_psnr.c  
      src/portab.h src/prediction/mbprediction.c  
      src/utils/mbfunctions.h src/utils/mbtransquant.c src/xvid.c  
      src/xvid.h vfw/src/2pass.c vfw/src/codec.c  
2806    
2807    
2808  2003-03-16 00:21:32 GMT                                         patch-10  2004-04-20 19:44:44 GMT                                         patch-23
2809    
2810      Summary:      Summary:
2811        Added suxen plugin system (Synced with CVS)        Merging 1.0 fixes
2812      Revision:      Revision:
2813        xvidcore--devapi4--1.0--patch-10        xvidcore--head--0.0--patch-23
2814    
2815      Sync with the CVS and thus adds the plugin framework.      Merging 1.0 fixes
2816    
2817        Patches applied:
2818    
2819         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-21
2820           Fix crash in decoder for non IFrame 1st frame.
2821    
2822         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-22
2823           Small visual fix.
2824    
     new files:  
      src/plugins/.arch-ids/=id  
      src/plugins/.arch-ids/plugin_dump.c.id  
      src/plugins/.arch-ids/plugin_psnr.c.id  
      src/plugins/plugin_dump.c src/plugins/plugin_psnr.c  
2825    
2826      modified files:      modified files:
2827       build/win32/libxvidcore.dsp examples/Makefile       src/decoder.c vfw/src/config.c
      examples/xvid_decraw.c examples/xvid_encraw.c  
      src/bitstream/bitstream.c src/encoder.c src/encoder.h  
      src/portab.h src/utils/mbtransquant.c src/xvid.h  
2828    
2829      new directories:      new patches:
2830       src/plugins/.arch-ids src/plugins       ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-21
2831         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-22
2832    
2833    
2834  2003-03-11 23:37:06 GMT                                         patch-9  2004-04-18 17:14:29 GMT                                         patch-22
2835    
2836      Summary:      Summary:
2837        Changed xvid_decraw option handling for -d/-m.        Merging 1.0 fixes
2838      Revision:      Revision:
2839        xvidcore--devapi4--1.0--patch-9        xvidcore--head--0.0--patch-22
2840    
2841      -d and -m options were boolean so option values were not needed.      Merging 1.0 fixes
2842    
2843      modified files:      Patches applied:
      examples/xvid_decraw.c  
2844    
2845         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-18
2846           Tiny xvid_decraw cleaning
2847    
2848  2003-03-11 23:30:16 GMT                                         patch-8       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-19
2849           vfw opens audio file in shared access mode
2850    
2851      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-20
2852        Fixed frame counting in xvid_encraw.         Typo
     Revision:  
       xvidcore--devapi4--1.0--patch-8  
2853    
     We were branching before incrementing  the frame counter when core was  
     buffering frames.  This was resulting  in wrong frame  counting during  
     the buffering phase.  
2854    
2855      modified files:      modified files:
2856       examples/xvid_encraw.c       examples/xvid_decraw.c vfw/src/resource.rc
2857    
2858        new patches:
2859         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-18
2860         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-19
2861         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-20
2862    
2863    
2864  2003-03-11 23:07:01 GMT                                         patch-7  2004-04-18 17:09:59 GMT                                         patch-21
2865    
2866      Summary:      Summary:
2867        Ported xvid_decraw to new API.        Dering hooking in DShow.
2868      Revision:      Revision:
2869        xvidcore--devapi4--1.0--patch-7        xvidcore--head--0.0--patch-21
   
     xvid_decraw  has been  ported to  new  API. It  basically works  fine,  
     however i'm not completly staisfied. If I do a step by step run then i  
     can see  that second frame  is reported as  a VOL decoding  though the  
     first IFrame has been consumed. This makes xvid_decraw does not report  
     correctly frames' length.  
2870    
2871      Except  that, xvid_decraw  works well  enough  to activate  it in  the      From sysKin:
2872      makefile.       * Dering widget and associated code for dering support in DShow.
2873    
2874      modified files:      modified files:
2875       examples/Makefile examples/xvid_decraw.c       dshow/src/CXvidDecoder.cpp dshow/src/config.c
2876         dshow/src/config.h dshow/src/resource.h dshow/src/xvid.ax.rc
2877    
2878    
2879  2003-03-11 20:19:44 GMT                                         patch-6  2004-04-18 17:08:53 GMT                                         patch-20
2880    
2881      Summary:      Summary:
2882        Fix an important API comment in main header.        Dering hooking in VFW.
2883      Revision:      Revision:
2884        xvidcore--devapi4--1.0--patch-6        xvidcore--head--0.0--patch-20
2885    
2886      This patch fixes a comment in xvid.h which was simply wrong and      From sysKin:
2887      could lead to uneeded code.       * Dering widget and associated code for dering support in VFW.
2888    
2889      modified files:      modified files:
2890       src/xvid.h       vfw/src/codec.c vfw/src/codec.h vfw/src/config.c
2891         vfw/src/resource.h vfw/src/resource.rc
2892    
2893    
2894  2003-03-11 00:36:34 GMT                                         patch-5  2004-04-18 17:06:14 GMT                                         patch-19
2895    
2896      Summary:      Summary:
2897        PSNR is now an option. More consistent -m/-s option handling.        Added dering code.
2898      Revision:      Revision:
2899        xvidcore--devapi4--1.0--patch-5        xvidcore--head--0.0--patch-19
   
     I turned PSNR stats into an option (-s). I fixed the handling of the  
     -m option that required only a bool.  
2900    
2901      I could say in french "ma stupidité dans toute sa grandeur".      From Marc Fauconneau:
2902         * Added dering code to core.
     -m presence is enough to significate "save _m_peg stream", we don't  
     need the boolean value.  
2903    
2904      modified files:      modified files:
2905       examples/xvid_encraw.c       src/image/postprocessing.c src/image/postprocessing.h
2906         src/xvid.h
2907    
2908    
2909  2003-03-10 00:36:15 GMT                                         patch-4  2004-04-18 17:02:48 GMT                                         patch-18
2910    
2911      Summary:      Summary:
2912        Adds extended stats support even for bframes in xvidcore.        Added static builds for msvc.
2913      Revision:      Revision:
2914        xvidcore--devapi4--1.0--patch-4        xvidcore--head--0.0--patch-18
2915    
2916      This patch enables core extended stats support even for bframes. It      From pete:
2917      modifies the way the MBTransQuantBVOP function does its work. It used       * Added static type building project files for MSVC. Needed
2918      to not dequant, idct the MB because bframes are never used as reference         for xvid_bench.
2919      frames. However if we want to compute stats, then we must perform these  
2920      inverse transformations.      new files:
2921         build/win32/.arch-ids/libxvidcore_static.dsp.id
2922         build/win32/.arch-ids/xvid_decraw_static.dsp.id
2923         build/win32/.arch-ids/xvid_encraw_static.dsp.id
2924         build/win32/libxvidcore_static.dsp
2925         build/win32/xvid_decraw_static.dsp
2926         build/win32/xvid_encraw_static.dsp
2927    
2928      modified files:      modified files:
2929       src/encoder.c src/utils/mbfunctions.h src/utils/mbtransquant.c       TODO build/win32/xvidcore.dsw
2930    
2931    
2932  2003-03-09 16:42:27 GMT                                         patch-3  2004-04-15 19:32:53 GMT                                         patch-17
2933    
2934      Summary:      Summary:
2935        Adds extended stats support.        Merged fixes from 1.0 tree
2936      Revision:      Revision:
2937        xvidcore--devapi4--1.0--patch-3        xvidcore--head--0.0--patch-17
   
     This patch enables core extended stats support. It seems that xvidcore  
     does not compute sse for BFrames, I have tried to adds this by an ugly  
     hack  but  it did  not  work  as expected,  i  suppose  core does  not  
     decompress bframes as they are  not used as reference frames (unlike P  
     and I frames).  
2938    
2939      If we  succeed in enabling sse  calculation in core  for bframes, then      Merged fixes from 1.0 tree
     xvid_stat will  not be needed anymore.  This will save  lot of trouble  
     with frame matching in PSNR computation when bframes are enabled.  
2940    
2941      modified files:      Patches applied:
      examples/xvid_encraw.c  
2942    
2943         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-14
2944           Fixed small bug in trellis code.
2945    
2946  2003-03-09 00:23:52 GMT                                         patch-2       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-15
2947           Ressource leaking in dshow.
2948    
2949      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-16
2950        Updated xvid_encraw for new API.         Fixed missing 1st frame in dshow output.
     Revision:  
       xvidcore--devapi4--1.0--patch-2  
2951    
2952      This patch updates the xvid_encraw example to support the       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-17
2953      new API. As it's the first patch for API 4 support, I         Tiny minor fixes for msvc.
     disabled all other examples.  
2954    
     BUG: first frame type is Unknown, I suppose I'm missing  
          a subtility of the new API.  
2955    
2956      modified files:      modified files:
2957       examples/Makefile examples/xvid_encraw.c src/encoder.c       build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp
2958         dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
2959         examples/xvid_decraw.c src/utils/mbtransquant.c src/xvid.h
2960    
2961        new patches:
2962         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-14
2963         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-15
2964         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-16
2965         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-17
2966    
2967  2003-03-06 22:08:43 GMT                                         patch-1  
2968    2004-04-15 19:28:53 GMT                                         patch-16
2969    
2970      Summary:      Summary:
2971        Synced with dev-api-4 XviD branch.        Starting the 1.1 numbering here.
2972      Revision:      Revision:
2973        xvidcore--devapi4--1.0--patch-1        xvidcore--head--0.0--patch-16
2974    
2975      Synced with dev-api-4 XviD branch. My branching was done at a later      From pete:
2976      point than CVS. This resulted in version skew, now this branch is       * Started 1.1 numbering
2977      synced with CVS.       * Added 1.1 checking for the brightness field.
2978    
2979      new files:      PS: API 4 is extensible as long as we add fields at the end of
2980       vfw/.arch-ids/=id vfw/bin/.arch-ids/=id vfw/src/.arch-ids/=id          the structures and that we had checks to mimic old core
2981       vfw/.arch-ids/vfw.dsp.id vfw/bin/.arch-ids/xvid.inf.id          settings. That's why the API version doesn't change, but the
2982       vfw/src/.arch-ids/2pass.c.id vfw/src/.arch-ids/2pass.h.id          public numbering does.
      vfw/src/.arch-ids/codec.c.id vfw/src/.arch-ids/codec.h.id  
      vfw/src/.arch-ids/config.c.id vfw/src/.arch-ids/config.h.id  
      vfw/src/.arch-ids/config.rc.id  
      vfw/src/.arch-ids/driverproc.c.id  
      vfw/src/.arch-ids/driverproc.def.id  
      vfw/src/.arch-ids/resource.h.id rawdec/.arch-ids/rawdec.c.id  
      rawdec/.arch-ids/rawdec.dsp.id rawdec/.arch-ids/=id  
      dshow/.arch-ids/=id dshow/.arch-ids/authors.txt.id  
      dshow/.arch-ids/dshow.dsp.id dshow/src/.arch-ids/=id  
      dshow/src/.arch-ids/CAbout.cpp.id  
      dshow/src/.arch-ids/CAbout.h.id  
      dshow/src/.arch-ids/CXvidDecoder.cpp.id  
      dshow/src/.arch-ids/CXvidDecoder.h.id  
      dshow/src/.arch-ids/IXvidDecoder.h.id  
      dshow/src/.arch-ids/resource.h.id  
      dshow/src/.arch-ids/xvid.ax.def.id  
      dshow/src/.arch-ids/xvid.ax.rc.id vfw/vfw.dsp vfw/bin/xvid.inf  
      vfw/src/2pass.c vfw/src/2pass.h vfw/src/codec.c  
      vfw/src/codec.h vfw/src/config.c vfw/src/config.h  
      vfw/src/config.rc vfw/src/driverproc.c vfw/src/driverproc.def  
      vfw/src/resource.h rawdec/rawdec.c rawdec/rawdec.dsp  
      dshow/authors.txt dshow/dshow.dsp dshow/src/CAbout.cpp  
      dshow/src/CAbout.h dshow/src/CXvidDecoder.cpp  
      dshow/src/CXvidDecoder.h dshow/src/IXvidDecoder.h  
      dshow/src/resource.h dshow/src/xvid.ax.def  
      dshow/src/xvid.ax.rc  
2983    
2984      modified files:      modified files:
2985       build/generic/Makefile build/generic/bootstrap.sh       src/decoder.c src/xvid.c src/xvid.h
      build/generic/configure.in build/generic/platform.inc.in  
      build/win32/libxvidcore.dsp examples/Makefile  
      examples/xvid_bench.c examples/xvid_decraw.c  
      examples/xvid_encraw.c examples/xvid_stat.c  
      src/bitstream/bitstream.c src/bitstream/bitstream.h  
      src/bitstream/mbcoding.c src/bitstream/vlc_codes.h  
      src/decoder.c src/decoder.h src/encoder.c src/encoder.h  
      src/global.h src/image/colorspace.c src/image/colorspace.h  
      src/image/image.c src/image/image.h src/image/interpolate8x8.c  
      src/motion/motion.h src/motion/motion_comp.c  
      src/motion/motion_est.c src/motion/motion_est.h  
      src/motion/smp_motion_est.c src/motion/smp_motion_est.h  
      src/portab.h src/prediction/mbprediction.c  
      src/utils/mbtransquant.c src/xvid.c src/xvid.h todo.txt  
2986    
     new directories:  
      dshow/.arch-ids dshow/src/.arch-ids rawdec/.arch-ids  
      vfw/.arch-ids vfw/bin/.arch-ids vfw/src/.arch-ids vfw vfw/bin  
      vfw/src rawdec dshow dshow/src  
2987    
2988    2004-04-14 19:22:52 GMT                                         patch-15
 2003-03-06 21:27:16 GMT                                         base-0  
2989    
2990      Summary:      Summary:
2991        tag of ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-6        Remove ppro code from mmx h263 quant.
2992      Revision:      Revision:
2993        xvidcore--devapi4--1.0--base-0        xvidcore--head--0.0--patch-15
2994    
2995      (automatically generated log message)      From Jean Marc:
2996         * Removed pentium pro opcodes from mmx functions (cmov)
2997    
2998        modified files:
2999         src/quant/x86_asm/quantize_h263_mmx.asm
3000    
     new patches:  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--base-0  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-1  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-2  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-3  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-4  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-5  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-6  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-7  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-8  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-9  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-10  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-11  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-12  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-13  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-14  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-15  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-16  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-17  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-18  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-19  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-20  
      ed.gomez@free.fr--main/xvidcore--stable--0.9--version-0  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--base-0  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-1  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-2  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-3  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-4  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-5  
      ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-6  
3001    
3002  2003-02-15 18:40:33 GMT                                         patch-3  2004-04-13 20:05:24 GMT                                         patch-14
3003    
3004      Summary:      Summary:
3005        Added latest Pete's chroma optimization code.        Reverted troublesome patch-11
3006      Revision:      Revision:
3007        xvidcore--stable--1.0--patch-3        xvidcore--head--0.0--patch-14
3008    
3009      During merge, i forgot that small piece of code.      From ed.gomez:
3010         * Removed buggy patch-11. Though xvid_bench tests passed, the code
3011           was buggy... and as all changes were involved, the patch is reverted.
3012    
3013      modified files:      modified files:
3014       src/encoder.c src/xvid.h       src/utils/x86_asm/mem_transfer_mmx.asm
3015    
3016    
3017  2003-02-15 14:48:12 GMT                                         patch-2  2004-04-12 15:48:21 GMT                                         patch-13
3018    
3019      Summary:      Summary:
3020        Fixed compilation and moved back to plain GPL.        Optimized Plane SSE.
3021      Revision:      Revision:
3022        xvidcore--stable--1.0--patch-2        xvidcore--head--0.0--patch-13
   
     portab.h was missing the DPRINTF_RC flag.  
     I merged the watcom C portab.h part.  
3023    
3024      Back to plain GPL as it is in dev-api-3 branch.      From ed.gomez:
3025         * Mostly unuseful patch as it optimizes a function that is used
3026           not so often and that doesn't eat so much CPU. But as i'm always
3027           doing debugging (thus using plane_sse), i like the idea of being
3028           doing the debugging the faster i can :-)
3029    
3030      modified files:      modified files:
3031       LICENSE src/portab.h       examples/xvid_bench.c src/image/image.c src/motion/sad.c
3032         src/motion/sad.h src/motion/x86_asm/sad_mmx.asm src/xvid.c
3033    
3034    
3035  2003-02-15 14:05:17 GMT                                         patch-1  2004-04-12 15:38:01 GMT                                         patch-12
3036    
3037      Summary:      Summary:
3038        Updated tree to dev-api-3 branch.        New H263 code.
3039      Revision:      Revision:
3040        xvidcore--stable--1.0--patch-1        xvidcore--head--0.0--patch-12
   
     This patch consists basically of merging things with dev-api-3  
     CVS branch.  
   
      - All asm, C, h files have been copied from this CVS branch.  
      - Fixed generic sources.inc to take care of changes.  
      - Fixed architecture stuff in sources (ARCH_IS_...).  
      - Updated examples.  
      - Updated libxvidcore.dsp.  
      - Fixed libxvidcore.dsp for ARCH_IS_... constants.  
      - Changed .so and .a naming convention. It is now postfixed  
        with the API version to avoid API incompatibilities with 2.1  
        which had had a postfix.  
      - Fixed configure version 0.9.1 <-> 1.0.0 cvs-snaphot  
   
     This is the first attempt. I don't even know if it compiles well.  
3041    
3042      new files:      From Jean Marc:
3043       src/bitstream/x86_asm/.arch-ids/cbp_3dne.asm.id       * Improved H263 code.
      src/dct/.arch-ids/simple_idct.c.id  
      src/dct/x86_asm/.arch-ids/fdct_xmm.asm.id  
      src/dct/x86_asm/.arch-ids/idct_3dne.asm.id  
      src/dct/x86_asm/.arch-ids/simple_idct_mmx.asm.id  
      src/image/.arch-ids/font.c.id src/image/.arch-ids/font.h.id  
      src/image/.arch-ids/reduced.c.id  
      src/image/.arch-ids/reduced.h.id  
      src/image/x86_asm/.arch-ids/colorspace_mmx.inc.id  
      src/image/x86_asm/.arch-ids/colorspace_rgb_mmx.asm.id  
      src/image/x86_asm/.arch-ids/colorspace_yuv_mmx.asm.id  
      src/image/x86_asm/.arch-ids/colorspace_yuyv_mmx.asm.id  
      src/image/x86_asm/.arch-ids/interpolate8x8_3dne.asm.id  
      src/image/x86_asm/.arch-ids/reduced_mmx.asm.id  
      src/motion/.arch-ids/motion_est.h.id  
      src/motion/.arch-ids/smp_motion_est.c.id  
      src/motion/.arch-ids/smp_motion_est.h.id  
      src/motion/x86_asm/.arch-ids/sad_3dne.asm.id  
      src/quant/x86_asm/.arch-ids/quantize4_xmm.asm.id  
      src/quant/x86_asm/.arch-ids/quantize_3dne.asm.id  
      src/utils/x86_asm/.arch-ids/interlacing_mmx.asm.id  
      src/utils/x86_asm/.arch-ids/mem_transfer_3dne.asm.id  
      src/bitstream/x86_asm/cbp_3dne.asm src/dct/simple_idct.c  
      src/dct/x86_asm/fdct_xmm.asm src/dct/x86_asm/idct_3dne.asm  
      src/dct/x86_asm/simple_idct_mmx.asm src/image/font.c  
      src/image/font.h src/image/reduced.c src/image/reduced.h  
      src/image/x86_asm/colorspace_mmx.inc  
      src/image/x86_asm/colorspace_rgb_mmx.asm  
      src/image/x86_asm/colorspace_yuv_mmx.asm  
      src/image/x86_asm/colorspace_yuyv_mmx.asm  
      src/image/x86_asm/interpolate8x8_3dne.asm  
      src/image/x86_asm/reduced_mmx.asm src/motion/motion_est.h  
      src/motion/smp_motion_est.c src/motion/smp_motion_est.h  
      src/motion/x86_asm/sad_3dne.asm  
      src/quant/x86_asm/quantize4_xmm.asm  
      src/quant/x86_asm/quantize_3dne.asm  
      src/utils/x86_asm/interlacing_mmx.asm  
      src/utils/x86_asm/mem_transfer_3dne.asm  
3044    
3045      modified files:      modified files:
3046       build/generic/Makefile build/generic/configure.in       src/quant/x86_asm/quantize_h263_mmx.asm
      build/generic/sources.inc build/win32/libxvidcore.dsp  
      examples/odivx_enc_dec.c examples/xvid_bench.c  
      examples/xvid_decraw.c examples/xvid_encraw.c  
      examples/xvid_stat.c src/bitstream/bitstream.c  
      src/bitstream/bitstream.h src/bitstream/cbp.c  
      src/bitstream/cbp.h src/bitstream/mbcoding.c  
      src/bitstream/mbcoding.h src/bitstream/ppc_asm/cbp_altivec.s  
      src/bitstream/ppc_asm/cbp_ppc.s src/bitstream/vlc_codes.h  
      src/bitstream/x86_asm/cbp_mmx.asm  
      src/bitstream/x86_asm/cbp_sse2.asm src/bitstream/zigzag.h  
      src/dct/fdct.c src/dct/fdct.h src/dct/ia64_asm/fdct_ia64.s  
      src/dct/idct.c src/dct/idct.h src/dct/ppc_asm/fdct_altivec.s  
      src/dct/ppc_asm/idct_altivec.s src/dct/x86_asm/fdct_mmx.asm  
      src/dct/x86_asm/idct_mmx.asm src/decoder.c src/decoder.h  
      src/divx4.c src/divx4.h src/encoder.c src/encoder.h  
      src/global.h src/image/colorspace.c src/image/colorspace.h  
      src/image/image.c src/image/image.h src/image/interpolate8x8.c  
      src/image/interpolate8x8.h  
      src/image/x86_asm/interpolate8x8_3dn.asm  
      src/image/x86_asm/interpolate8x8_mmx.asm  
      src/image/x86_asm/interpolate8x8_xmm.asm  
      src/image/x86_asm/rgb_to_yv12_mmx.asm  
      src/image/x86_asm/yuv_to_yv12_mmx.asm  
      src/image/x86_asm/yuyv_to_yv12_mmx.asm  
      src/image/x86_asm/yv12_to_rgb24_mmx.asm  
      src/image/x86_asm/yv12_to_rgb32_mmx.asm  
      src/image/x86_asm/yv12_to_yuyv_mmx.asm  
      src/motion/ia64_asm/sad_ia64.s src/motion/motion.h  
      src/motion/motion_comp.c src/motion/motion_est.c  
      src/motion/ppc_asm/sad_altivec.c src/motion/sad.c  
      src/motion/sad.h src/motion/x86_asm/sad_3dn.asm  
      src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm  
      src/motion/x86_asm/sad_xmm.asm src/portab.h  
      src/prediction/mbprediction.c src/prediction/mbprediction.h  
      src/quant/adapt_quant.c src/quant/adapt_quant.h  
      src/quant/quant_h263.c src/quant/quant_h263.h  
      src/quant/quant_matrix.c src/quant/quant_matrix.h  
      src/quant/quant_mpeg4.c src/quant/quant_mpeg4.h  
      src/quant/x86_asm/quantize4_mmx.asm  
      src/quant/x86_asm/quantize_mmx.asm src/utils/emms.c  
      src/utils/emms.h src/utils/ia64_asm/mem_transfer_ia64.s  
      src/utils/mbfunctions.h src/utils/mbtransquant.c  
      src/utils/mem_align.c src/utils/mem_align.h  
      src/utils/mem_transfer.c src/utils/mem_transfer.h  
      src/utils/ratecontrol.c src/utils/ratecontrol.h  
      src/utils/timer.c src/utils/timer.h  
      src/utils/x86_asm/cpuid.asm  
      src/utils/x86_asm/mem_transfer_mmx.asm src/xvid.c src/xvid.h  
3047    
3048    
3049  2003-02-14 23:01:44 GMT                                         base-0  2004-04-12 14:03:19 GMT                                         patch-10
3050    
3051      Summary:      Summary:
3052        Upcoming 1.0 version continuation        Removed CVS Id field
3053      Revision:      Revision:
3054        xvidcore--stable--1.0--base-0        xvidcore--head--0.0--patch-10
3055    
3056      Continuation of the xvidcore--stable--0.9 version.      Removed CVS Id field
3057    
3058      new directories:  
3059       {arch}/xvidcore/xvidcore--stable/xvidcore--stable--1.0      modified files:
3060       {arch}/xvidcore/xvidcore--stable/xvidcore--stable--1.0/ed.gomez@free.fr--main       src/motion/ppc_asm/sad_altivec.c
      {arch}/xvidcore/xvidcore--stable/xvidcore--stable--1.0/ed.gomez@free.fr--main/patch-log  
3061    
3062    
3063  2003-02-11 21:03:19 GMT                                         patch-20  2004-04-12 14:00:16 GMT                                         patch-9
3064    
3065      Summary:      Summary:
3066        Removed BFrame outdated bframe/qpel decoding.        Added debug option (-debug)
3067      Revision:      Revision:
3068        xvidcore--stable--0.9--patch-20        xvidcore--head--0.0--patch-9
3069    
3070        Added debug option (-debug)
3071    
     Michael noticed there were still pieces of bframe and qpel decoding.  
     He proposed to remove it or upgrade it... Feeling too lazy to merge  
     all differences (the too much divergent) file from dev-api-3.  
3072    
3073      modified files:      modified files:
3074       changelog.txt src/decoder.c src/image/interpolate8x8.c       examples/xvid_decraw.c
      src/image/interpolate8x8.h  
3075    
3076    
3077  2003-02-11 18:40:48 GMT                                         patch-19  2004-04-12 13:53:00 GMT                                         patch-8
3078    
3079      Summary:      Summary:
3080        Fixed libxvidcore.def, revamped Makefile output, fixed ia64 build, added ranlib detection.        Merged stable tree fixes
3081      Revision:      Revision:
3082        xvidcore--stable--0.9--patch-19        xvidcore--head--0.0--patch-8
3083    
3084      Ok this patch does lot of things.      Merged stable tree fixes
3085    
3086      First, it fixes libxvidcore.def for win32 targets. This file is now      Patches applied:
     generated at configure time. This way we make sure no symobols are  
     exported without being compiled in.  
3087    
3088      Second, I revamped Makefile so its output is more eye candy.       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-6
3089           Compiler quirk in portab.h
3090    
3091      Third change, I removed the ia64 dct file from SRC_IA64 variable,       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-7
3092      this was interfering with the DCT_IA64_SOURCES variable.         DShow widget hiding.
3093    
3094      Fourth change, ranlib is detected at configure time and used in the       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-8
3095      Makeile through the RANLIB variable.         RGB 16bit output fix.
3096    
3097      modified files:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-9
3098       build/generic/Makefile build/generic/configure.in         3DNow Ext functions use MMXEXT opcodes.
      build/generic/libxvidcore.def.in build/generic/platform.inc.in  
      build/generic/sources.inc  
3099    
3100      renamed files:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-10
3101       build/generic/.arch-ids/libxvidcore.def.id         PGM support back in xvid_decraw.
        ==> build/generic/.arch-ids/libxvidcore.def.in.id  
      build/generic/libxvidcore.def  
        ==> build/generic/libxvidcore.def.in  
3102    
3103         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-11
3104           Better MV clipping code.
3105    
3106         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-12
3107           3dnow functions proper separation.
3108    
3109  2003-02-10 23:31:01 GMT                                         patch-18       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-13
3110           Don't do SAD and RD based searches for qp.
     Summary:  
       Fixed xvid_encraw help message.  
     Revision:  
       xvidcore--stable--0.9--patch-18  
3111    
     Fixed xvid_encraw help message.  
3112    
3113      modified files:      modified files:
3114       examples/xvid_encraw.c       dshow/src/xvid.ax.rc examples/xvid_decraw.c src/decoder.c
3115         src/image/colorspace.c src/motion/estimation_pvop.c
3116         src/portab.h src/xvid.c
3117    
3118        new patches:
3119         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-6
3120         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-7
3121         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-8
3122         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-9
3123         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-10
3124         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-11
3125         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-12
3126         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-13
3127    
3128    
3129  2003-02-10 23:06:32 GMT                                         patch-17  2004-04-05 20:44:57 GMT                                         patch-7
3130    
3131      Summary:      Summary:
3132        Added IA64 DCT source choice according to the compiler basename.        MSVC warning.
3133      Revision:      Revision:
3134        xvidcore--stable--0.9--patch-17        xvidcore--head--0.0--patch-7
3135    
3136      The IA64 dct file must be choosen according to the compiler.      From pete:
3137      I chose to look for a basename based on the *ecc* regexp, all       * Fixed MSVC warnings about float vs double.
     other compiler will be treated as being the GNU C compiler.  
   
     Hope this is enough.  
3138    
3139      modified files:      modified files:
3140       build/generic/Makefile build/generic/configure.in       src/plugins/plugin_lumimasking.c
      build/generic/platform.inc.in  
3141    
3142    
3143  2003-02-10 13:49:25 GMT                                         patch-16  2004-04-05 20:04:10 GMT                                         patch-6
3144    
3145      Summary:      Summary:
3146        Changed linking option on PPC platforms (-flat_namespace)        Frame dropping alternative fix.
3147      Revision:      Revision:
3148        xvidcore--stable--0.9--patch-16        xvidcore--head--0.0--patch-6
3149    
3150      Guillaume sent me this fix for PPC platforms.      From sysKin:
3151         * Different solution to the same problem previously fixed in
3152           1.0 tree.
3153    
3154      modified files:      modified files:
3155       build/generic/configure.in       src/encoder.c
3156    
3157    
3158  2003-02-09 23:15:18 GMT                                         patch-15  2004-04-05 19:45:17 GMT                                         patch-5
3159    
3160      Summary:      Summary:
3161        Added the configure bootstrap script.        Merged stable tree fixes
3162      Revision:      Revision:
3163        xvidcore--stable--0.9--patch-15        xvidcore--head--0.0--patch-5
3164    
3165      Added the configure bootstrap script.      Merged stable tree fixes
3166    
3167      new files:      Patches applied:
      build/generic/.arch-ids/bootstrap.sh.id  
      build/generic/bootstrap.sh  
3168    
3169         * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-2
3170           Typo in ME fast comparison.
3171    
3172  2003-02-09 23:06:51 GMT                                         patch-14       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-3
3173           Dead code removal.
3174    
3175      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-4
3176        The PPC port is now disabled because it is outdated.         Frame dropping disabling for bframes.
3177      Revision:  
3178        xvidcore--stable--0.9--patch-14       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-5
3179           Marking RC4
3180    
     The PPC port is now disabled because it is outdated.  
3181    
3182      modified files:      modified files:
3183       build/generic/configure.in       ChangeLog build/generic/configure.in src/encoder.c
3184         src/motion/estimation_common.c src/xvid.h
3185    
3186        new patches:
3187         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-2
3188         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-3
3189         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-4
3190         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-5
3191    
3192    
3193  2003-02-09 23:01:30 GMT                                         patch-13  2004-04-03 10:33:44 GMT                                         patch-4
3194    
3195      Summary:      Summary:
3196        More "unknown compiler" friendly portab.h file.        Merged 1.0 fixes
3197      Revision:      Revision:
3198        xvidcore--stable--0.9--patch-13        xvidcore--head--0.0--patch-4
   
     Cristoph pointed out that portab.h was a problem when used with  
     unknown compilers. This patch tries to fix that.  
3199    
3200      modified files:      Merged 1.0 fixes
      src/portab.h  
3201    
3202        Patches applied:
3203    
3204  2003-02-09 00:49:32 GMT                                         patch-12       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--base-0
3205           tag of ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-53
3206    
3207      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-1
3208        DivX4 compatibility layer has been turned into an option (default:disable).         VFW Resource leak fix (try #2)
     Revision:  
       xvidcore--stable--0.9--patch-12  
3209    
     The divx4 compatibility API has been turned into an option. This  
     has been a long wanted thing by mplayer's guys, so here it is.  
     As we say in french "mieux vaut tard que jamais".  
3210    
3211      modified files:      modified files:
3212       build/generic/Makefile build/generic/configure.in       vfw/src/codec.c vfw/src/driverproc.c
3213       build/generic/platform.inc.in build/generic/sources.inc  
3214        new patches:
3215         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--base-0
3216         ed.gomez@free.fr--2004-1/xvidcore--stable--1.0--patch-1
3217    
3218    
3219  2003-02-08 23:29:55 GMT                                         patch-11  2004-04-02 21:44:39 GMT                                         patch-3
3220    
3221      Summary:      Summary:
3222        Fixed WIN32/_MSC_VER confusion and updated MSVC libxvidcore.dsp project file.        Merged new PPC port
3223      Revision:      Revision:
3224        xvidcore--stable--0.9--patch-11        xvidcore--head--0.0--patch-3
3225    
3226      This patch set fixes all WIN32/_MSC_VER conditional compilation      Merged new PPC port
     in examples and in the Illegal Instruction detection for SSE2  
     support in xvid.c.  
3227    
3228      libxvidcore.dsp file as been updated with the right defines for      Patches applied:
     x86 support (ARCH_IS_IA32, ARCH_IS_32BIT, ARCH_IS_LITTLE_ENDIAN)  
3229    
3230      Hope Win32 is now completely ready.       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--base-0
3231           tag of ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-4
3232    
3233      modified files:       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-1
3234       build/win32/libxvidcore.dsp examples/xvid_bench.c         Sad Altivec File added
      examples/xvid_decraw.c examples/xvid_encraw.c  
      examples/xvid_stat.c src/xvid.c  
3235    
3236         * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-2
3237           Mem Transfer functions ported to altivec
3238    
3239  2003-02-08 14:55:19 GMT                                         patch-10       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-4
3240           bugfix in mem transfer altivec routines
3241    
3242      Summary:       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-5
3243        Fixed MacOSX build.         Bug Fix in Mem Transfer
     Revision:  
       xvidcore--stable--0.9--patch-10  
3244    
3245      Two fixes for MacOSX. It adds a missing option to gcc to allow the       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-6
3246      linking stage on this platform (-fno-common). It fixes Altivec test         Walken Inverse DCT added
     which was outputting result on the console.  
3247    
3248      modified files:       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-7
3249       build/generic/configure.in         Interpolate8x8 altivec added
3250    
3251         * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-8
3252           interpolate avg2 altivec added
3253    
3254  2003-02-08 12:49:17 GMT                                         patch-9       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-9
3255           Star-merged Edouards Branch
3256    
3257      Summary:       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-10
3258        Added Altivec detection (Guillaume Morin)         Added RGB to YV12 Altivec routines
     Revision:  
       xvidcore--stable--0.9--patch-9  
   
     Added Altivec detection test in configure.in.  
3259    
3260      modified files:       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-11
3261       build/generic/configure.in         Added YUV to YV12 Altivec routines
3262    
3263         * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-12
3264           more interpolate functions
3265    
3266  2003-02-08 12:25:46 GMT                                         patch-8       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-13
3267           H263 Quantization added in altivec
3268    
3269      Summary:       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-14
3270        Fixed portab.h for _DEBUG target and GCC/ICC compilers.         Star-Merge with main branch
     Revision:  
       xvidcore--stable--0.9--patch-8  
3271    
3272      During the Unix build system change, i had to turn the DRPINTF macro       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-15
3273      into a real function because teh MacOSX compilers do not support the         h263 dequantization with altivec
     variadic macros as defined in ISO C99 standard. During this change,  
     i forgot to adapt the macro code and the #include <stdarg.h> needed  
     for variadic functions.  
3274    
3275      modified files:       * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-16
3276       src/portab.h         sse8_16bit added
3277    
3278         * chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-17
3279           added yv12 to yuv colorspace routines (altivec)
3280    
3281  2003-02-08 11:45:00 GMT                                         patch-7       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--base-0
3282           tag of ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--base-0
3283    
3284      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-1
3285        Changed the way I add strings into variables.         Merged with mainline patch-9
     Revision:  
       xvidcore--stable--0.9--patch-7  
3286    
3287      I changed the way I add strings to variables (CFLAGS and so on). Now i use       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-2
3288      var="$var string2" instead of var=$var" string2".         PPC platform support cleanup.
3289    
3290      Fixed a typo reported by Pete for the cygwin part.       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-3
3291           Merging Paul's changes
3292    
3293      modified files:       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-4
3294       build/generic/configure.in         Merged mainline patches
3295    
3296         * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-5
3297           Merged up to mainline RC1
3298    
3299  2003-02-07 23:16:57 GMT                                         patch-6       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-6
3300           Merged chn's work
3301    
3302      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-7
3303        Fixed the "ar" "s" option for some platforms.         Merged chn's mem transfer functions
     Revision:  
       xvidcore--stable--0.9--patch-6  
3304    
3305      The "s" option of the "ar" program is not standard accross all       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-8
3306      platforms. I had at least problems on OpenBSD and an old Solaris         Merged mainline mem_transfer arch separation
     version.  
3307    
3308      modified files:       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-9
3309       build/generic/Makefile         Merged mainline patches
3310    
3311         * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-10
3312           Replayed unconflicting patches from chn
3313    
3314  2003-02-07 22:19:37 GMT                                         patch-5       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-11
3315           Merging mainline up to patch-31
3316    
3317      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-12
3318        Fixed a BSD checking in ansm output format.         Forgotten patch from chn
     Revision:  
       xvidcore--stable--0.9--patch-5  
3319    
3320      Fixed a BSD checking in ansm output format.       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-13
3321           Merged chn's branch up to patch-10
3322    
3323      modified files:       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-14
3324       build/generic/configure.in         Merged work from Chriostoph up to patch-13
3325    
3326         * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-15
3327           Merged stuff from mainline
3328    
3329  2003-02-07 21:18:14 GMT                                         patch-4       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-16
3330           Merged chn's work
3331    
3332      Summary:       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-17
3333        Fixed options and added the --disable-assembly option         Merged mainline
     Revision:  
       xvidcore--stable--0.9--patch-4  
3334    
3335      Options have been fixed because they were not taking care of the       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-18
3336      enable_feature variable.         Merged mainline fixes
3337    
3338      The --disable-assembly options has been added. This is a good way       * ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-19
3339      to compile XviD on nearly all platforms without having to deal with         Merging head branch to prepare mainline merging
     the assembly code -- useful on PPC platform at the moment where gcc  
     seems to use a different kind of assembly syntax.  
3340    
3341      modified files:       * ptk9417@rit.edu--2004-1/xvidcore--devapi4-ppc--1.0--base-0
3342       build/generic/configure.in         tag of ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-2
3343    
3344         * ptk9417@rit.edu--2004-1/xvidcore--devapi4-ppc--1.0--patch-1
3345           Quick changes for ppc linux
3346    
 2003-02-06 21:49:16 GMT                                         patch-3  
3347    
3348      Summary:      new files:
3349        Fixes for the new build system in sources.       src/dct/ppc_asm/.arch-ids/idct_altivec.c.id
3350      Revision:       src/dct/ppc_asm/idct_altivec.c src/image/ppc_asm/.arch-ids/=id
3351        xvidcore--stable--0.9--patch-3       src/image/ppc_asm/.arch-ids/colorspace_altivec.c.id
3352         src/image/ppc_asm/.arch-ids/interpolate8x8_altivec.c.id
3353         src/image/ppc_asm/colorspace_altivec.c
3354         src/image/ppc_asm/interpolate8x8_altivec.c
3355         src/motion/ppc_asm/.arch-ids/sad_altivec.c.id
3356         src/motion/ppc_asm/sad_altivec.c
3357         src/quant/ppc_asm/.arch-ids/=id
3358         src/quant/ppc_asm/.arch-ids/quant_h263_altivec.c.id
3359         src/quant/ppc_asm/quant_h263_altivec.c
3360         src/utils/ppc_asm/.arch-ids/=id
3361         src/utils/ppc_asm/.arch-ids/altivec_trigger.c.id
3362         src/utils/ppc_asm/.arch-ids/mem_transfer_altivec.c.id
3363         src/utils/ppc_asm/altivec_trigger.c
3364         src/utils/ppc_asm/mem_transfer_altivec.c
3365    
3366      This patch fixes source files according to the new defines used      removed files:
3367      by the reworked build system.       src/bitstream/ppc_asm/.arch-ids/cbp_altivec.s.id
3368         src/bitstream/ppc_asm/.arch-ids/cbp_ppc.s.id
3369         src/bitstream/ppc_asm/cbp_altivec.s
3370         src/bitstream/ppc_asm/cbp_ppc.s
3371         src/dct/ppc_asm/.arch-ids/fdct_altivec.s.id
3372         src/dct/ppc_asm/.arch-ids/idct_altivec.s.id
3373         src/dct/ppc_asm/fdct_altivec.s src/dct/ppc_asm/idct_altivec.s
3374         src/motion/ppc_asm/.arch-ids/README.id
3375         src/motion/ppc_asm/.arch-ids/sad_altivec.c.id
3376         src/motion/ppc_asm/.arch-ids/sad_altivec.s.id
3377         src/motion/ppc_asm/README src/motion/ppc_asm/sad_altivec.c
3378         src/motion/ppc_asm/sad_altivec.s
3379    
3380      modified files:      modified files:
3381       src/bitstream/bitstream.h src/divx4.h src/portab.h       build/generic/Makefile build/generic/configure.in
3382       src/utils/emms.h src/xvid.c       build/generic/platform.inc.in build/generic/sources.inc
3383         examples/xvid_bench.c src/bitstream/cbp.h src/dct/fdct.h
3384         src/dct/idct.h src/dct/simple_idct.c src/image/colorspace.h
3385         src/image/interpolate8x8.h src/motion/sad.h src/portab.h
3386         src/quant/quant.h src/utils/emms.h src/utils/mem_transfer.h
3387         src/xvid.c
3388    
3389  2003-02-06 21:22:55 GMT                                         patch-2      new directories:
3390         src/image/ppc_asm src/image/ppc_asm/.arch-ids
3391         src/quant/ppc_asm src/quant/ppc_asm/.arch-ids
3392         src/utils/ppc_asm src/utils/ppc_asm/.arch-ids
3393    
3394      Summary:      new patches:
3395        Changed build system for Unix OSes       chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--base-0
3396      Revision:       chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-1
3397        xvidcore--stable--0.9--patch-2       chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-2
3398         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-4
3399         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-5
3400         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-6
3401         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-7
3402         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-8
3403         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-9
3404         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-10
3405         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-11
3406         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-12
3407         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-13
3408         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-14
3409         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-15
3410         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-16
3411         chn@kbw.ch--2004-1/xvidcore--naegeli--1.0--patch-17
3412         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--base-0
3413         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-1
3414         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-2
3415         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-3
3416         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-4
3417         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-5
3418         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-6
3419         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-7
3420         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-8
3421         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-9
3422         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-10
3423         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-11
3424         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-12
3425         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-13
3426         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-14
3427         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-15
3428         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-16
3429         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-17
3430         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-18
3431         ed.gomez@free.fr--2004-1/xvidcore--devapi4-ppc--1.0--patch-19
3432         ptk9417@rit.edu--2004-1/xvidcore--devapi4-ppc--1.0--base-0
3433         ptk9417@rit.edu--2004-1/xvidcore--devapi4-ppc--1.0--patch-1
3434    
     Changed the build system for Unix systems. It is now built upon  
     an autoconf script that automatically configures the sources.  
3435    
3436      The Makefile is portable accross various platforms and "make"  2004-04-02 21:26:57 GMT                                         patch-2
     programs. It is at least working on these platforms for now:  
      - Debian GNU/Linux - StrongARM - Alphave67 (alpha 64bit) - ia32  
        UltraSparcIII  
      - Solaris - UltraSparcI - Sparc 32bit on old sun stations ( i don't  
        remember the exact name)  
      - FreeBSD 4.7 - ia32  
      - RedHat 7.3 - ia32  
      - Gentoo 1.4 - ia32  
      - the Irix box according to christoph tests  
      - ia64 - Unknown OS?  
3437    
3438      The unix unified makefile supports:      Summary:
3439       - gmake        messed with XviD BS version
3440       - pmake      Revision:
3441          xvidcore--head--0.0--patch-2
3442    
3443      ToDo things to finish this new build system:      messed with XviD BS version
      - Manage the ecc/gcc source choice for ia64  
      - Someone to test the makefile on Cygwin and/or mingw+minsys  
      - Update MSVC projects (replace 2 or 3 defines)  
      - See why MacOSX is complaining about duplicated symbols, it seems the  
        mach ABI does not alow namespace collisions even between C modules.  
        And add altivec detection in configure.in  
3444    
     new files:  
      build/generic/.arch-ids/configure.in.id  
      build/generic/.arch-ids/Makefile.id  
      build/generic/.arch-ids/platform.inc.in.id  
      build/generic/.arch-ids/sources.inc.id  
      build/generic/configure.in build/generic/Makefile  
      build/generic/platform.inc.in build/generic/sources.inc  
3445    
3446      removed files:      modified files:
3447       build/generic/.arch-ids/Makefile.beos.id       src/xvid.h
      build/generic/.arch-ids/Makefile.cygwin.id  
      build/generic/.arch-ids/Makefile.dj.id  
      build/generic/.arch-ids/Makefile.freebsd.id  
      build/generic/.arch-ids/Makefile.generic.id  
      build/generic/.arch-ids/Makefile.ia64.id  
      build/generic/.arch-ids/Makefile.inc.id  
      build/generic/.arch-ids/Makefile.irix64.id  
      build/generic/.arch-ids/Makefile.linuxppc.id  
      build/generic/.arch-ids/Makefile.linuxppc_altivec.id  
      build/generic/.arch-ids/Makefile.linuxx86.id  
      build/generic/.arch-ids/Makefile.sparc.id  
      build/generic/Makefile.beos build/generic/Makefile.cygwin  
      build/generic/Makefile.dj build/generic/Makefile.freebsd  
      build/generic/Makefile.generic build/generic/Makefile.ia64  
      build/generic/Makefile.inc build/generic/Makefile.irix64  
      build/generic/Makefile.linuxppc  
      build/generic/Makefile.linuxppc_altivec  
      build/generic/Makefile.linuxx86 build/generic/Makefile.sparc  
3448    
3449    
3450  2003-02-06 21:11:17 GMT                                         patch-1  2004-04-02 21:25:15 GMT                                         patch-1
3451    
3452      Summary:      Summary:
3453        Updated to current stable CVS_HEAD        Brightness Postprocessing.
3454      Revision:      Revision:
3455        xvidcore--stable--0.9--patch-1        xvidcore--head--0.0--patch-1
3456    
3457        From Pete:
3458         * Added brightness postprocessing.
3459    
3460      Updated files to current stable CVS_HEAD versions.      From ed.gomez:
3461         * Merging changes due to CVS branches unsync state between head and
3462           last 1.0 dev branch.
3463    
3464      new files:      new files:
3465       build/win32/.arch-ids/odivx_enc_dec.dsp.id       src/image/x86_asm/.arch-ids/postprocessing_mmx.asm.id
3466       build/win32/.arch-ids/xvidcore.dsw.id       src/image/x86_asm/postprocessing_mmx.asm
3467       build/win32/.arch-ids/xvid_bench.dsp.id  
3468       build/win32/odivx_enc_dec.dsp build/win32/xvidcore.dsw      modified files:
3469       build/win32/xvid_bench.dsp       build/generic/sources.inc build/win32/libxvidcore.dsp
3470         dshow/src/CXvidDecoder.cpp dshow/src/config.c
3471      modified files:       dshow/src/xvid.ax.rc src/decoder.c src/image/image.c
3472       authors.txt build/generic/Makefile.beos       src/image/image.h src/image/postprocessing.c
3473       build/generic/Makefile.generic build/generic/Makefile.linuxx86       src/image/postprocessing.h src/xvid.c src/xvid.h
3474       doc/Makefile examples/Makefile examples/odivx_enc_dec.c       vfw/src/codec.c vfw/src/codec.h vfw/src/config.c
3475       examples/xvid_bench.c examples/xvid_encraw.c       vfw/src/resource.h vfw/src/resource.rc
      examples/xvid_stat.c src/bitstream/bitstream.c  
      src/bitstream/bitstream.h src/bitstream/cbp.c  
      src/bitstream/mbcoding.c src/bitstream/vlc_codes.h  
      src/bitstream/zigzag.h src/dct/fdct.c src/dct/idct.c  
      src/dct/idct.h src/decoder.c src/decoder.h src/divx4.h  
      src/encoder.c src/encoder.h src/global.h  
      src/image/colorspace.c src/image/image.c  
      src/image/interpolate8x8.c src/image/interpolate8x8.h  
      src/motion/motion.h src/motion/motion_comp.c  
      src/motion/motion_est.c src/motion/sad.c src/portab.h  
      src/prediction/mbprediction.c src/prediction/mbprediction.h  
      src/quant/adapt_quant.c src/quant/adapt_quant.h  
      src/quant/quant_h263.c src/quant/quant_mpeg4.c  
      src/utils/emms.h src/utils/mbfunctions.h  
      src/utils/mbtransquant.c src/utils/mem_align.c  
      src/utils/mem_transfer.c src/utils/timer.c src/utils/timer.h  
      src/xvid.h todo.txt  
3476    
3477    
3478  2003-02-06 20:59:19 GMT                                         base-0  2004-04-02 20:36:54 GMT                                         base-0
3479    
3480      Summary:      Summary:
3481        Imported xvidcore 0.9.0 into arch repository        tag of ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-53
3482      Revision:      Revision:
3483        xvidcore--stable--0.9--base-0        xvidcore--head--0.0--base-0
3484    
3485      Imported xvidcore 0.9.0 into arch repository. I hope I forgot nothing.      (automatically generated log message)
3486    
3487      new files:      new patches:
3488       ./.arch-ids/CodingStyle.id ./.arch-ids/LICENSE.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--base-0
3489       ./.arch-ids/README.txt.id ./.arch-ids/authors.txt.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-1
3490       ./.arch-ids/changelog.txt.id ./.arch-ids/todo.txt.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-2
3491       ./CodingStyle ./LICENSE ./README.txt ./authors.txt       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-3
3492       ./build/.arch-ids/=id ./build/generic/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-4
3493       ./build/generic/.arch-ids/Makefile.beos.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-5
3494       ./build/generic/.arch-ids/Makefile.cygwin.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-6
3495       ./build/generic/.arch-ids/Makefile.dj.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-7
3496       ./build/generic/.arch-ids/Makefile.freebsd.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-8
3497       ./build/generic/.arch-ids/Makefile.generic.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-9
3498       ./build/generic/.arch-ids/Makefile.ia64.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-10
3499       ./build/generic/.arch-ids/Makefile.inc.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-11
3500       ./build/generic/.arch-ids/Makefile.irix64.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-12
3501       ./build/generic/.arch-ids/Makefile.linuxppc.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-13
3502       ./build/generic/.arch-ids/Makefile.linuxppc_altivec.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-14
3503       ./build/generic/.arch-ids/Makefile.linuxx86.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-15
3504       ./build/generic/.arch-ids/Makefile.sparc.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-16
3505       ./build/generic/.arch-ids/libxvidcore.def.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-17
3506       ./build/generic/Makefile.beos ./build/generic/Makefile.cygwin       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-18
3507       ./build/generic/Makefile.dj ./build/generic/Makefile.freebsd       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-19
3508       ./build/generic/Makefile.generic ./build/generic/Makefile.ia64       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-20
3509       ./build/generic/Makefile.inc ./build/generic/Makefile.irix64       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-21
3510       ./build/generic/Makefile.linuxppc       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-22
3511       ./build/generic/Makefile.linuxppc_altivec       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-23
3512       ./build/generic/Makefile.linuxx86       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-24
3513       ./build/generic/Makefile.sparc ./build/generic/libxvidcore.def       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-25
3514       ./build/win32/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-26
3515       ./build/win32/.arch-ids/libxvidcore.dsp.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-27
3516       ./build/win32/.arch-ids/xvid_decraw.dsp.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-28
3517       ./build/win32/.arch-ids/xvid_encraw.dsp.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-29
3518       ./build/win32/.arch-ids/xvid_stat.dsp.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-30
3519       ./build/win32/libxvidcore.dsp ./build/win32/xvid_decraw.dsp       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-31
3520       ./build/win32/xvid_encraw.dsp ./build/win32/xvid_stat.dsp       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-32
3521       ./changelog.txt ./doc/.arch-ids/=id ./doc/.arch-ids/API.dox.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-33
3522       ./doc/.arch-ids/Makefile.id ./doc/.arch-ids/README.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-34
3523       ./doc/.arch-ids/foot.inc.in.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-35
3524       ./doc/.arch-ids/header.tex.in.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-36
3525       ./doc/.arch-ids/xvid-decoding.txt.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-37
3526       ./doc/.arch-ids/xvid-encoder.txt.id ./doc/API.dox       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-38
3527       ./doc/Makefile ./doc/README ./doc/foot.inc.in       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-39
3528       ./doc/header.tex.in ./doc/xvid-decoding.txt       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-40
3529       ./doc/xvid-encoder.txt ./examples/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-41
3530       ./examples/.arch-ids/Makefile.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-42
3531       ./examples/.arch-ids/README.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-43
3532       ./examples/.arch-ids/cactus.pgm.bz2.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-44
3533       ./examples/.arch-ids/odivx_enc_dec.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-45
3534       ./examples/.arch-ids/xvid_bench.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-46
3535       ./examples/.arch-ids/xvid_decraw.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-47
3536       ./examples/.arch-ids/xvid_encraw.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-48
3537       ./examples/.arch-ids/xvid_stat.c.id ./examples/Makefile       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-49
3538       ./examples/README ./examples/cactus.pgm.bz2       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-50
3539       ./examples/odivx_enc_dec.c ./examples/xvid_bench.c       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-51
3540       ./examples/xvid_decraw.c ./examples/xvid_encraw.c       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-52
3541       ./examples/xvid_stat.c ./src/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-53
3542       ./src/.arch-ids/decoder.c.id ./src/.arch-ids/decoder.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-54
3543       ./src/.arch-ids/divx4.c.id ./src/.arch-ids/divx4.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-55
3544       ./src/.arch-ids/encoder.c.id ./src/.arch-ids/encoder.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-56
3545       ./src/.arch-ids/global.h.id ./src/.arch-ids/portab.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-57
3546       ./src/.arch-ids/xvid.c.id ./src/.arch-ids/xvid.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-58
3547       ./src/bitstream/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-59
3548       ./src/bitstream/.arch-ids/bitstream.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-60
3549       ./src/bitstream/.arch-ids/bitstream.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-61
3550       ./src/bitstream/.arch-ids/cbp.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-62
3551       ./src/bitstream/.arch-ids/cbp.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-63
3552       ./src/bitstream/.arch-ids/mbcoding.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-64
3553       ./src/bitstream/.arch-ids/mbcoding.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-65
3554       ./src/bitstream/.arch-ids/vlc_codes.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-66
3555       ./src/bitstream/.arch-ids/zigzag.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-67
3556       ./src/bitstream/bitstream.c ./src/bitstream/bitstream.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-68
3557       ./src/bitstream/cbp.c ./src/bitstream/cbp.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-69
3558       ./src/bitstream/mbcoding.c ./src/bitstream/mbcoding.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-70
3559       ./src/bitstream/ppc_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-71
3560       ./src/bitstream/ppc_asm/.arch-ids/cbp_altivec.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-72
3561       ./src/bitstream/ppc_asm/.arch-ids/cbp_ppc.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-73
3562       ./src/bitstream/ppc_asm/cbp_altivec.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-74
3563       ./src/bitstream/ppc_asm/cbp_ppc.s ./src/bitstream/vlc_codes.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-75
3564       ./src/bitstream/x86_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-76
3565       ./src/bitstream/x86_asm/.arch-ids/cbp_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-77
3566       ./src/bitstream/x86_asm/.arch-ids/cbp_sse2.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-78
3567       ./src/bitstream/x86_asm/cbp_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-79
3568       ./src/bitstream/x86_asm/cbp_sse2.asm ./src/bitstream/zigzag.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-80
3569       ./src/dct/.arch-ids/=id ./src/dct/.arch-ids/README.IJG.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-81
3570       ./src/dct/.arch-ids/fdct.c.id ./src/dct/.arch-ids/fdct.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-82
3571       ./src/dct/.arch-ids/idct.c.id ./src/dct/.arch-ids/idct.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-83
3572       ./src/dct/README.IJG ./src/dct/fdct.c ./src/dct/fdct.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-84
3573       ./src/dct/ia64_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-85
3574       ./src/dct/ia64_asm/.arch-ids/fdct_ia64.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-86
3575       ./src/dct/ia64_asm/.arch-ids/genidct.py.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-87
3576       ./src/dct/ia64_asm/.arch-ids/idct_fini.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-88
3577       ./src/dct/ia64_asm/.arch-ids/idct_ia64_ecc.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-89
3578       ./src/dct/ia64_asm/.arch-ids/idct_ia64_gcc.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-90
3579       ./src/dct/ia64_asm/.arch-ids/idct_init.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-91
3580       ./src/dct/ia64_asm/fdct_ia64.s ./src/dct/ia64_asm/genidct.py       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-92
3581       ./src/dct/ia64_asm/idct_fini.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-93
3582       ./src/dct/ia64_asm/idct_ia64_ecc.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-94
3583       ./src/dct/ia64_asm/idct_ia64_gcc.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-95
3584       ./src/dct/ia64_asm/idct_init.s ./src/dct/idct.c       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-96
3585       ./src/dct/idct.h ./src/dct/ppc_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-97
3586       ./src/dct/ppc_asm/.arch-ids/fdct_altivec.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-98
3587       ./src/dct/ppc_asm/.arch-ids/idct_altivec.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-99
3588       ./src/dct/ppc_asm/fdct_altivec.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-100
3589       ./src/dct/ppc_asm/idct_altivec.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-101
3590       ./src/dct/x86_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-102
3591       ./src/dct/x86_asm/.arch-ids/fdct_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-103
3592       ./src/dct/x86_asm/.arch-ids/idct_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-104
3593       ./src/dct/x86_asm/fdct_mmx.asm ./src/dct/x86_asm/idct_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-105
3594       ./src/decoder.c ./src/decoder.h ./src/divx4.c ./src/divx4.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-106
3595       ./src/encoder.c ./src/encoder.h ./src/global.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-107
3596       ./src/image/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-108
3597       ./src/image/.arch-ids/colorspace.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-109
3598       ./src/image/.arch-ids/colorspace.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-110
3599       ./src/image/.arch-ids/image.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-111
3600       ./src/image/.arch-ids/image.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-112
3601       ./src/image/.arch-ids/interpolate8x8.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-113
3602       ./src/image/.arch-ids/interpolate8x8.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-114
3603       ./src/image/colorspace.c ./src/image/colorspace.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-115
3604       ./src/image/ia64_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-116
3605       ./src/image/ia64_asm/.arch-ids/README.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-117
3606       ./src/image/ia64_asm/.arch-ids/interpolate8x8_ia64.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-118
3607       ./src/image/ia64_asm/.arch-ids/interpolate8x8_ia64_exact.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-119
3608       ./src/image/ia64_asm/README       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-120
3609       ./src/image/ia64_asm/interpolate8x8_ia64.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-121
3610       ./src/image/ia64_asm/interpolate8x8_ia64_exact.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-122
3611       ./src/image/image.c ./src/image/image.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-123
3612       ./src/image/interpolate8x8.c ./src/image/interpolate8x8.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-124
3613       ./src/image/x86_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-125
3614       ./src/image/x86_asm/.arch-ids/interpolate8x8_3dn.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-126
3615       ./src/image/x86_asm/.arch-ids/interpolate8x8_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-127
3616       ./src/image/x86_asm/.arch-ids/interpolate8x8_xmm.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-128
3617       ./src/image/x86_asm/.arch-ids/rgb_to_yv12_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-129
3618       ./src/image/x86_asm/.arch-ids/yuv_to_yv12_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-130
3619       ./src/image/x86_asm/.arch-ids/yuyv_to_yv12_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-131
3620       ./src/image/x86_asm/.arch-ids/yv12_to_rgb24_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-132
3621       ./src/image/x86_asm/.arch-ids/yv12_to_rgb32_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-133
3622       ./src/image/x86_asm/.arch-ids/yv12_to_yuyv_mmx.asm.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-134
3623       ./src/image/x86_asm/interpolate8x8_3dn.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-135
3624       ./src/image/x86_asm/interpolate8x8_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-136
3625       ./src/image/x86_asm/interpolate8x8_xmm.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-137
3626       ./src/image/x86_asm/rgb_to_yv12_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-138
3627       ./src/image/x86_asm/yuv_to_yv12_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-139
3628       ./src/image/x86_asm/yuyv_to_yv12_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-140
3629       ./src/image/x86_asm/yv12_to_rgb24_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-141
3630       ./src/image/x86_asm/yv12_to_rgb32_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-142
3631       ./src/image/x86_asm/yv12_to_yuyv_mmx.asm       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-143
3632       ./src/motion/.arch-ids/=id ./src/motion/.arch-ids/motion.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-144
3633       ./src/motion/.arch-ids/motion_comp.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-145
3634       ./src/motion/.arch-ids/motion_est.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-146
3635       ./src/motion/.arch-ids/sad.c.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-147
3636       ./src/motion/.arch-ids/sad.h.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-148
3637       ./src/motion/ia64_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-149
3638       ./src/motion/ia64_asm/.arch-ids/calc_delta_1.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-150
3639       ./src/motion/ia64_asm/.arch-ids/calc_delta_2.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-151
3640       ./src/motion/ia64_asm/.arch-ids/calc_delta_3.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-152
3641       ./src/motion/ia64_asm/.arch-ids/halfpel8_refine_ia64.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-153
3642       ./src/motion/ia64_asm/.arch-ids/sad_ia64.s.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-154
3643       ./src/motion/ia64_asm/calc_delta_1.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-155
3644       ./src/motion/ia64_asm/calc_delta_2.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-156
3645       ./src/motion/ia64_asm/calc_delta_3.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-157
3646       ./src/motion/ia64_asm/halfpel8_refine_ia64.s       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-158
3647       ./src/motion/ia64_asm/sad_ia64.s ./src/motion/motion.h       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-159
3648       ./src/motion/motion_comp.c ./src/motion/motion_est.c       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-160
3649       ./src/motion/ppc_asm/.arch-ids/=id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-161
3650       ./src/motion/ppc_asm/.arch-ids/README.id       ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-162
3651       ./src/motion/ppc_asm/.arch-ids/sad_altivec.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--base-0
3652       ./src/motion/ppc_asm/.arch-ids/sad_altivec.s.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-1
3653       ./src/motion/ppc_asm/README ./src/motion/ppc_asm/sad_altivec.c       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-2
3654       ./src/motion/ppc_asm/sad_altivec.s ./src/motion/sad.c       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-3
3655       ./src/motion/sad.h ./src/motion/x86_asm/.arch-ids/=id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-4
3656       ./src/motion/x86_asm/.arch-ids/sad_3dn.asm.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-5
3657       ./src/motion/x86_asm/.arch-ids/sad_mmx.asm.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-6
3658       ./src/motion/x86_asm/.arch-ids/sad_sse2.asm.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-7
3659       ./src/motion/x86_asm/.arch-ids/sad_xmm.asm.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-8
3660       ./src/motion/x86_asm/sad_3dn.asm       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-9
3661       ./src/motion/x86_asm/sad_mmx.asm       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-10
3662       ./src/motion/x86_asm/sad_sse2.asm       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-11
3663       ./src/motion/x86_asm/sad_xmm.asm ./src/portab.h       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-12
3664       ./src/prediction/.arch-ids/=id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-13
3665       ./src/prediction/.arch-ids/mbprediction.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-14
3666       ./src/prediction/.arch-ids/mbprediction.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-15
3667       ./src/prediction/mbprediction.c       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-16
3668       ./src/prediction/mbprediction.h ./src/quant/.arch-ids/=id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-17
3669       ./src/quant/.arch-ids/adapt_quant.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-18
3670       ./src/quant/.arch-ids/adapt_quant.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-19
3671       ./src/quant/.arch-ids/quant_h263.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-20
3672       ./src/quant/.arch-ids/quant_h263.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-21
3673       ./src/quant/.arch-ids/quant_matrix.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-22
3674       ./src/quant/.arch-ids/quant_matrix.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-23
3675       ./src/quant/.arch-ids/quant_mpeg4.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-24
3676       ./src/quant/.arch-ids/quant_mpeg4.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-25
3677       ./src/quant/adapt_quant.c ./src/quant/adapt_quant.h       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-26
3678       ./src/quant/ia64_asm/.arch-ids/=id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-27
3679       ./src/quant/ia64_asm/.arch-ids/quant_h263_ia64.s.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-28
3680       ./src/quant/ia64_asm/quant_h263_ia64.s       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-29
3681       ./src/quant/quant_h263.c ./src/quant/quant_h263.h       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-30
3682       ./src/quant/quant_matrix.c ./src/quant/quant_matrix.h       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-31
3683       ./src/quant/quant_mpeg4.c ./src/quant/quant_mpeg4.h       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-32
3684       ./src/quant/x86_asm/.arch-ids/=id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-33
3685       ./src/quant/x86_asm/.arch-ids/quantize4_mmx.asm.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-34
3686       ./src/quant/x86_asm/.arch-ids/quantize_mmx.asm.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-35
3687       ./src/quant/x86_asm/quantize4_mmx.asm       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-36
3688       ./src/quant/x86_asm/quantize_mmx.asm ./src/utils/.arch-ids/=id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-37
3689       ./src/utils/.arch-ids/emms.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-38
3690       ./src/utils/.arch-ids/emms.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-39
3691       ./src/utils/.arch-ids/mbfunctions.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-40
3692       ./src/utils/.arch-ids/mbtransquant.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-41
3693       ./src/utils/.arch-ids/mem_align.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-42
3694       ./src/utils/.arch-ids/mem_align.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-43
3695       ./src/utils/.arch-ids/mem_transfer.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-44
3696       ./src/utils/.arch-ids/mem_transfer.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-45
3697       ./src/utils/.arch-ids/ratecontrol.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-46
3698       ./src/utils/.arch-ids/ratecontrol.h.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-47
3699       ./src/utils/.arch-ids/timer.c.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-48
3700       ./src/utils/.arch-ids/timer.h.id ./src/utils/emms.c       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-49
3701       ./src/utils/emms.h ./src/utils/ia64_asm/.arch-ids/=id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-50
3702       ./src/utils/ia64_asm/.arch-ids/mem_transfer_ia64.s.id       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-51
3703       ./src/utils/ia64_asm/mem_transfer_ia64.s       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-52
3704       ./src/utils/mbfunctions.h ./src/utils/mbtransquant.c       ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-53
3705       ./src/utils/mem_align.c ./src/utils/mem_align.h       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--base-0
3706       ./src/utils/mem_transfer.c ./src/utils/mem_transfer.h       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-1
3707       ./src/utils/ratecontrol.c ./src/utils/ratecontrol.h       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-2
3708       ./src/utils/timer.c ./src/utils/timer.h       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-3
3709       ./src/utils/x86_asm/.arch-ids/=id       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-4
3710       ./src/utils/x86_asm/.arch-ids/cpuid.asm.id       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-5
3711       ./src/utils/x86_asm/.arch-ids/mem_transfer_mmx.asm.id       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-6
3712       ./src/utils/x86_asm/cpuid.asm       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-7
3713       ./src/utils/x86_asm/mem_transfer_mmx.asm ./src/xvid.c       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-8
3714       ./src/xvid.h ./todo.txt       ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-9
3715         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-10
3716         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-11
3717         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-12
3718         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-13
3719         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-14
3720         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-15
3721         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-16
3722         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-17
3723         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-18
3724         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-19
3725         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-20
3726         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-21
3727         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-22
3728         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-23
3729         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-24
3730         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-25
3731         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-26
3732         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-27
3733         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-28
3734         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-29
3735         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-30
3736         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-31
3737         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-32
3738         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-33
3739         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-34
3740         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-35
3741         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-36
3742         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-37
3743         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-38
3744         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-39
3745         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-40
3746         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-41
3747         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-42
3748         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-43
3749         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-44
3750         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-45
3751         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-46
3752         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-47
3753         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-48
3754         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-49
3755         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-50
3756         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-51
3757         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-52
3758         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-53
3759         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-54
3760         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-55
3761         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-56
3762         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-57
3763         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-58
3764         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-59
3765         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-60
3766         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-61
3767         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-62
3768         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-63
3769         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-64
3770         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-65
3771         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-66
3772         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-67
3773         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-68
3774         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-69
3775         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-70
3776         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-71
3777         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-72
3778         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-73
3779         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-74
3780         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-75
3781         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-76
3782         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-77
3783         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-78
3784         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-79
3785         ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-80
3786         ed.gomez@free.fr--main/xvidcore--stable--0.9--base-0
3787         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-1
3788         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-2
3789         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-3
3790         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-4
3791         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-5
3792         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-6
3793         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-7
3794         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-8
3795         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-9
3796         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-10
3797         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-11
3798         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-12
3799         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-13
3800         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-14
3801         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-15
3802         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-16
3803         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-17
3804         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-18
3805         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-19
3806         ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-20
3807         ed.gomez@free.fr--main/xvidcore--stable--0.9--version-0
3808         ed.gomez@free.fr--main/xvidcore--stable--1.0--base-0
3809         ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-1
3810         ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-2
3811         ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-3
3812         ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-4
3813         ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-5
3814         ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-6
3815    
3816    

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.14

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