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

Annotation of /trunk/xvidcore/ChangeLog-1.0

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1483 - (view) (download)

1 : edgomez 1483 # 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
3 :     # also removed all my email adresses from the output because they are not
4 :     # relevant.
5 :    
6 :     #########################################################################
7 :     # 1.0.1 (Bitstream Version 35)
8 :     #########################################################################
9 :    
10 :     2004-06-02 20:58:38 GMT patch-38
11 :    
12 :     Summary:
13 :     DC clipping bug for real
14 :     Revision:
15 :     xvidcore--stable--1.0--patch-38
16 :    
17 :     From ed.gomez:
18 :     * patch-25 was supposed to fix a DC clipping bug. However i
19 :     added the additional clipping code in the wrong place. But
20 :     at least, my fix didn't cause any trouble, it was just noop.
21 :     This patch should really fix this very "unlikely bug" (i just
22 :     want to remind the reader that this bug isn't easy to trigger,
23 :     and eg: my test sequences don't trigger it at all)
24 :    
25 :     BS version incremented: 35
26 :    
27 :     modified files:
28 :     src/decoder.c src/motion/estimation_rd_based.c
29 :     src/prediction/mbprediction.c src/prediction/mbprediction.h
30 :     src/xvid.h
31 :    
32 :    
33 :     2004-05-31 21:11:49 GMT patch-37
34 :    
35 :     Summary:
36 :     time fixes to decoder.
37 :     Revision:
38 :     xvidcore--stable--1.0--patch-37
39 :    
40 :     From ed.gomez:
41 :     * timestamps were badly computed by teh decoder in some corner cases
42 :     (1fps). This bug revealed that, timestamps were indeed wrong as
43 :     expected, but that bvop blocks in direct mode (vectors interpolated)
44 :     were somewhat compensated with wrong vectors in these same corner
45 :     cases.
46 :    
47 :     modified files:
48 :     src/bitstream/bitstream.c src/decoder.c src/decoder.h
49 :    
50 :    
51 :     2004-05-30 09:36:13 GMT patch-36
52 :    
53 :     Summary:
54 :     Wrong license header.
55 :     Revision:
56 :     xvidcore--stable--1.0--patch-36
57 :    
58 :     From ed.gomez:
59 :     * Pascal did agree a plain GPL migration long ago, but this file
60 :     remained GPL+location restriction.
61 :    
62 :     modified files:
63 :     src/image/reduced.c
64 :    
65 :    
66 :     2004-05-29 09:02:25 GMT patch-35
67 :    
68 :     Summary:
69 :     More missing va_end() calls.
70 :     Revision:
71 :     xvidcore--stable--1.0--patch-35
72 :    
73 :     From pete:
74 :     * portab.h is plenty of missing calls to va_end().
75 :    
76 :     modified files:
77 :     src/portab.h
78 :    
79 :    
80 :     2004-05-28 21:28:21 GMT patch-34
81 :    
82 :     Summary:
83 :     FPS=1 problem in decoder.
84 :     Revision:
85 :     xvidcore--stable--1.0--patch-34
86 :    
87 :     From ed.gomez:
88 :     * patch-24 did fix bad behavior in encoder, so at least, compliant
89 :     streams were generated but the decoder was still doing the maths
90 :     a wrong way. Apply same logic to decoder.
91 :    
92 :     Thanks to the patch-24 bug reporter for this followup.
93 :    
94 :     modified files:
95 :     src/bitstream/bitstream.c
96 :    
97 :    
98 :     2004-05-27 20:04:01 GMT patch-33
99 :    
100 :     Summary:
101 :     Nasty typo in pvop vector lambdas.
102 :     Revision:
103 :     xvidcore--stable--1.0--patch-33
104 :    
105 :     From sysKin:
106 :     * s/+/*/ in the lambda value array for vectors in the pvop
107 :     estimation module.
108 :    
109 :     modified files:
110 :     src/motion/estimation_pvop.c
111 :    
112 :    
113 :     2004-05-26 13:23:38 GMT patch-32
114 :    
115 :     Summary:
116 :     Bits/Bytes confusion in the VFW frontend.
117 :     Revision:
118 :     xvidcore--stable--1.0--patch-32
119 :    
120 :     From sysKin:
121 :     * confusion between the kilo, in kilobits (1000) and
122 :     the kilo in kilobytes (1024, should be named KiB anyway)
123 :     * biSizeImage is in bytes, not bits according to the Win32
124 :     API.
125 :    
126 :     modified files:
127 :     vfw/src/codec.c vfw/src/config.c
128 :    
129 :    
130 :     2004-05-26 09:28:31 GMT patch-31
131 :    
132 :     Summary:
133 :     Close variable argument list.
134 :     Revision:
135 :     xvidcore--stable--1.0--patch-31
136 :    
137 :     From ed.gomez:
138 :     * Close the variable argument list as specified by the ANSI C
139 :     standard. Reported by Carsten <list4darav at gmx dot de> on
140 :     xvid-devel.
141 :    
142 :     modified files:
143 :     src/image/font.c
144 :    
145 :    
146 :     2004-05-26 09:00:26 GMT patch-30
147 :    
148 :     Summary:
149 :     ICM compatibility for VFW
150 :     Revision:
151 :     xvidcore--stable--1.0--patch-30
152 :    
153 :     From sysKin:
154 :     * Makes the VFW frontend compatible with ICM applications
155 :     (Ooo, MS Office... etc). Reported on IRC.
156 :    
157 :     modified files:
158 :     vfw/src/config.c vfw/src/driverproc.c
159 :    
160 :    
161 :     2004-05-26 08:58:56 GMT patch-29
162 :    
163 :     Summary:
164 :     Small trellis bug
165 :     Revision:
166 :     xvidcore--stable--1.0--patch-29
167 :    
168 :     From sysKin:
169 :     * Last coeff wasn't summed.
170 :    
171 :     Reported by Jean Marc.
172 :    
173 :     modified files:
174 :     src/utils/mbtransquant.c
175 :    
176 :    
177 :     2004-05-26 08:46:45 GMT patch-28
178 :    
179 :     Summary:
180 :     Small bug in bframe ME.
181 :     Revision:
182 :     xvidcore--stable--1.0--patch-28
183 :    
184 :     From sysKin:
185 :     * Small bug in bframe ME.
186 :    
187 :     modified files:
188 :     src/motion/estimation_bvop.c
189 :    
190 :     #########################################################################
191 :     # 1.0.0 final (Bitstream Version 34)
192 :     #########################################################################
193 :    
194 :     2004-05-08 22:26:06 GMT patch-27
195 :    
196 :     Summary:
197 :     Marking 1.0.0 final
198 :     Revision:
199 :     xvidcore--stable--1.0--patch-27
200 :    
201 :     From ed.gomez:
202 :     * Marking 1.0.0 final \o/
203 :    
204 :     modified files:
205 :     ChangeLog build/generic/configure.in src/xvid.h
206 :    
207 :    
208 :     2004-05-06 17:56:52 GMT patch-26
209 :    
210 :     Summary:
211 :     Small mismatch in hint<->widget in VFW
212 :     Revision:
213 :     xvidcore--stable--1.0--patch-26
214 :    
215 :     From sysKin:
216 :     * Small mismatch in hint<->widget.
217 :    
218 :     modified files:
219 :     vfw/src/resource.rc
220 :    
221 :    
222 :     2004-05-02 22:40:50 GMT patch-25
223 :    
224 :     Summary:
225 :     DC prediction fix.
226 :     Revision:
227 :     xvidcore--stable--1.0--patch-25
228 :    
229 :     From ed.gomez:
230 :     * DC predictors weren't clipped to the [-2048, 2047] range.
231 :    
232 :     BS version increased to 33
233 :    
234 :     Thanks to jnorish on our forums to point out the problem.
235 :    
236 :     modified files:
237 :     src/bitstream/bitstream.c src/decoder.c
238 :     src/motion/estimation_rd_based.c src/prediction/mbprediction.c
239 :     src/prediction/mbprediction.h src/xvid.h
240 :    
241 :    
242 :     2004-05-02 10:30:29 GMT patch-24
243 :    
244 :     Summary:
245 :     Possible VOL header corruption.
246 :     Revision:
247 :     xvidcore--stable--1.0--patch-24
248 :    
249 :     From ed.gomez:
250 :     * The VOL header could be corrupted when passing fincr=fbase=1 which
251 :     happens for fps=1 sequences.
252 :    
253 :     BS version bumped up to 32
254 :    
255 :     Original report:
256 :     http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=2026&highlight=
257 :    
258 :     modified files:
259 :     src/bitstream/bitstream.c src/xvid.h
260 :    
261 :    
262 :     2004-04-30 23:10:19 GMT patch-23
263 :    
264 :     Summary:
265 :     Some very light Unix build system changes
266 :     Revision:
267 :     xvidcore--stable--1.0--patch-23
268 :    
269 :     To prepare testing framework merging.
270 :    
271 :     From ed.gomez:
272 :     * Some typos
273 :     * Copyright updates (it's 2004 since a few months ;-)
274 :     * Added some checking to bootstrap.sh
275 :     * Added m4 AC_PREREQ macro to configure.in
276 :    
277 :     modified files:
278 :     build/generic/Makefile build/generic/bootstrap.sh
279 :     build/generic/configure.in
280 :    
281 :    
282 :     2004-04-20 19:40:29 GMT patch-22
283 :    
284 :     Summary:
285 :     Small visual fix.
286 :     Revision:
287 :     xvidcore--stable--1.0--patch-22
288 :    
289 :     From sysKin:
290 :     * Small visual fix
291 :    
292 :     modified files:
293 :     vfw/src/config.c
294 :    
295 :    
296 :     2004-04-20 19:38:24 GMT patch-21
297 :    
298 :     Summary:
299 :     Fix crash in decoder for non IFrame 1st frame.
300 :     Revision:
301 :     xvidcore--stable--1.0--patch-21
302 :    
303 :     From sysKin:
304 :     * Fixed the crash caused by non IFrame 1st frame.
305 :    
306 :     modified files:
307 :     src/decoder.c
308 :    
309 :    
310 :     2004-04-18 16:21:50 GMT patch-20
311 :    
312 :     Summary:
313 :     Typo
314 :     Revision:
315 :     xvidcore--stable--1.0--patch-20
316 :    
317 :     Typo
318 :    
319 :    
320 :     modified files:
321 :     vfw/src/resource.rc
322 :    
323 :    
324 :     2004-04-17 17:04:20 GMT patch-19
325 :    
326 :     Summary:
327 :     vfw opens audio file in shared access mode
328 :     Revision:
329 :     xvidcore--stable--1.0--patch-19
330 :    
331 :     vfw opens audio file in shared access mode
332 :    
333 :    
334 :     modified files:
335 :     vfw/src/config.c
336 :    
337 :    
338 :     2004-04-15 22:39:12 GMT patch-18
339 :    
340 :     Summary:
341 :     Tiny xvid_decraw cleaning
342 :     Revision:
343 :     xvidcore--stable--1.0--patch-18
344 :    
345 :     Tiny xvid_decraw cleaning
346 :    
347 :    
348 :     modified files:
349 :     examples/xvid_decraw.c
350 :    
351 :    
352 :     2004-04-15 19:14:31 GMT patch-17
353 :    
354 :     Summary:
355 :     Tiny minor fixes for msvc.
356 :     Revision:
357 :     xvidcore--stable--1.0--patch-17
358 :    
359 :     From pete:
360 :     * Missing arch endianness define in project files.
361 :     * Add a textual warning about win32 console EOF misreading.
362 :     * Prevent a SIGFPE when no frames were decoded.
363 :    
364 :     modified files:
365 :     build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp
366 :     examples/xvid_decraw.c
367 :    
368 :    
369 :     2004-04-14 22:41:07 GMT patch-16
370 :    
371 :     Summary:
372 :     Fixed missing 1st frame in dshow output.
373 :     Revision:
374 :     xvidcore--stable--1.0--patch-16
375 :    
376 :     From sysKin:
377 :     * decoder flags were overwritten, this was preventing from outputing
378 :     the first frame immediatly.
379 :    
380 :     modified files:
381 :     dshow/src/CXvidDecoder.cpp
382 :    
383 :    
384 :     2004-04-14 22:39:17 GMT patch-15
385 :    
386 :     Summary:
387 :     Ressource leaking in dshow.
388 :     Revision:
389 :     xvidcore--stable--1.0--patch-15
390 :    
391 :     From sysKin:
392 :     * Same kind of ressource leaking as in vfw. Same cure.
393 :    
394 :     modified files:
395 :     dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
396 :    
397 :    
398 :     2004-04-14 19:45:23 GMT patch-14
399 :    
400 :     Summary:
401 :     Fixed small bug in trellis code.
402 :     Revision:
403 :     xvidcore--stable--1.0--patch-14
404 :    
405 :     From ed.gomez (spotted by jean marc):
406 :     * Trellis optimization was computing the sum |coeffs| wrongly
407 :     because the Compute_sum function wasn't doing zigzag scanning
408 :     and stopped at last non zero coeffs in linear scanning...
409 :     The trivial fix could have been to pass the zigzag to the compute
410 :     sum function so it could have done its job right.
411 :     But... Why computing stuff that is already known in the upper layer ?
412 :     I removed the compute sum function, and just pass the original sum
413 :     value in trellis function parameters, just in case we have to return
414 :     it again because trellis failed optimizing the block coeffs.
415 :    
416 :     This fix the bug and saves cycles :-) (but should not be noticeable)
417 :    
418 :     modified files:
419 :     src/utils/mbtransquant.c src/xvid.h
420 :    
421 :    
422 :     2004-04-12 12:06:12 GMT patch-13
423 :    
424 :     Summary:
425 :     Don't do SAD and RD based searches for qp.
426 :     Revision:
427 :     xvidcore--stable--1.0--patch-13
428 :    
429 :     From sysKin:
430 :     * MakeGoodFlags function wasn't disabling SAD based search when
431 :     using RD. This was causing slowdown for no gain at all. This
432 :     patch should speed up encoding in qp mode.
433 :    
434 :    
435 :     modified files:
436 :     src/motion/estimation_pvop.c
437 :    
438 :    
439 :     2004-04-12 12:01:19 GMT patch-12
440 :    
441 :     Summary:
442 :     3dnow functions proper separation.
443 :     Revision:
444 :     xvidcore--stable--1.0--patch-12
445 :    
446 :     From pete (thx to a forum report):
447 :     * Separate correctly pure 3dnow functions and 3dnow+mmxext functions.
448 :     This fix "Illegal instruction" crash on old k6-2 CPUs.
449 :    
450 :     modified files:
451 :     src/xvid.c
452 :    
453 :    
454 :     2004-04-12 11:57:20 GMT patch-11
455 :    
456 :     Summary:
457 :     Better MV clipping code.
458 :     Revision:
459 :     xvidcore--stable--1.0--patch-11
460 :    
461 :     From sysKin:
462 :     * Better MV clipping. DivX 5 generates out of range vectors and clipping
463 :     them directly borks the decoding of other MVs for which out of range
464 :     MVs were predictors. So it's just better to clip them for the block
465 :     decoding and keep an unclipped version for predictions.
466 :    
467 :     modified files:
468 :     src/decoder.c
469 :    
470 :    
471 :     2004-04-08 20:34:54 GMT patch-10
472 :    
473 :     Summary:
474 :     PGM support back in xvid_decraw.
475 :     Revision:
476 :     xvidcore--stable--1.0--patch-10
477 :    
478 :     From ed.gomez:
479 :     * pgm/pnm format added back to xvid_decraw
480 :     + pgm/pnm formats are now default for yv12/i420/rgb24 pixel format.
481 :     + tga is default for rgb16/32
482 :     + use option -f to choose tga, or pnm/pgm
483 :    
484 :     modified files:
485 :     examples/xvid_decraw.c
486 :    
487 :    
488 :     2004-04-07 22:30:15 GMT patch-9
489 :    
490 :     Summary:
491 :     3DNow Ext functions use MMXEXT opcodes.
492 :     Revision:
493 :     xvidcore--stable--1.0--patch-9
494 :    
495 :     From Soltius (XviD Forum):
496 :     * Most of 3dnow extension functions do use MMXEXT opcodes, so
497 :     classify these functions as 3dnowext+mmxext. Avoids K6-2
498 :     boxes to crash with an invalid instruction error reported
499 :     by the host OS.
500 :    
501 :     PS: original bug report
502 :     http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1656
503 :    
504 :     modified files:
505 :     src/xvid.c
506 :    
507 :    
508 :     2004-04-07 22:01:54 GMT patch-8
509 :    
510 :     Summary:
511 :     RGB 16bit output fix.
512 :     Revision:
513 :     xvidcore--stable--1.0--patch-8
514 :    
515 :     From ScarletteTout (XviD Forum):
516 :     * Fix RGB 16bit output in C functions.
517 :    
518 :     From ed.gomez:
519 :     * Replaced PGM output by TGA output so it's easy to implement
520 :     RGB 16/24/32 and greyscale bitmaps support in a single format.
521 :     (pgm could have supported RGB 24 and Greyscale only)
522 :     * Added colorspace choice to xvid_decraw
523 :     Use option -c csp, where csp is either rgb16, rgb24, rgb32, yv12 or i420
524 :     Defaults to i420.
525 :    
526 :     PS: original bug report
527 :     http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1960&highlight=
528 :    
529 :     modified files:
530 :     examples/xvid_decraw.c src/image/colorspace.c
531 :    
532 :    
533 :     #########################################################################
534 :     # 1.0.0 RC4 (Bitstream Version 30)
535 :     #########################################################################
536 :    
537 :     2004-04-04 20:21:38 GMT patch-7
538 :    
539 :     Summary:
540 :     DShow widget hiding.
541 :     Revision:
542 :     xvidcore--stable--1.0--patch-7
543 :    
544 :     From Michael:
545 :     * No need to keep widget visibles if they won't be in 1.0.0.
546 :    
547 :     modified files:
548 :     dshow/src/xvid.ax.rc
549 :    
550 :    
551 :     2004-04-04 20:17:52 GMT patch-6
552 :    
553 :     Summary:
554 :     Compiler quirk in portab.h
555 :     Revision:
556 :     xvidcore--stable--1.0--patch-6
557 :    
558 :     From Michael:
559 :     * The VC.NET workaround was causing trouble. Inversed the test.
560 :    
561 :     modified files:
562 :     src/portab.h
563 :    
564 :    
565 :     2004-04-04 14:19:10 GMT patch-5
566 :    
567 :     Summary:
568 :     Marking RC4
569 :     Revision:
570 :     xvidcore--stable--1.0--patch-5
571 :    
572 :     Marking RC4
573 :    
574 :    
575 :     modified files:
576 :     ChangeLog build/generic/configure.in src/xvid.h
577 :    
578 :    
579 :     2004-04-04 14:07:00 GMT patch-4
580 :    
581 :     Summary:
582 :     Frame dropping disabling for bframes.
583 :     Revision:
584 :     xvidcore--stable--1.0--patch-4
585 :    
586 :     From sysKin & Pete:
587 :     * Disable frame dropping with bframes enabled. These two options
588 :     do not play fine together.
589 :    
590 :     modified files:
591 :     src/encoder.c
592 :    
593 :    
594 :     2004-04-04 14:05:50 GMT patch-3
595 :    
596 :     Summary:
597 :     Dead code removal.
598 :     Revision:
599 :     xvidcore--stable--1.0--patch-3
600 :    
601 :     From sysKin:
602 :     * FrameCodeP was always called with contanst parameters. Removed
603 :     these parameters and associated dead code.
604 :    
605 :     modified files:
606 :     src/encoder.c
607 :    
608 :    
609 :     2004-04-04 14:03:42 GMT patch-2
610 :    
611 :     Summary:
612 :     Typo in ME fast comparison.
613 :     Revision:
614 :     xvidcore--stable--1.0--patch-2
615 :    
616 :     From sysKin:
617 :     * Small typo in Fast ME code.
618 :    
619 :     modified files:
620 :     src/motion/estimation_common.c
621 :    
622 :    
623 :     2004-04-02 23:58:19 GMT patch-1
624 :    
625 :     Summary:
626 :     VFW Resource leak fix (try #2)
627 :     Revision:
628 :     xvidcore--stable--1.0--patch-1
629 :    
630 :     From Suiryc on IRC:
631 :     * both encoder and decoder ending functions were calling
632 :     the dll freeing code. This was an error as the first function
633 :     called would unbind core function for the second called one.
634 :     Thus xvidcore could not release buffers.
635 :    
636 :     modified files:
637 :     vfw/src/codec.c vfw/src/driverproc.c
638 :    
639 :    
640 :     2004-04-02 20:33:02 GMT base-0
641 :    
642 :     Summary:
643 :     tag of ed.gomez@free.fr--2004-1/xvidcore--devapi4--1.0--patch-53
644 :     Revision:
645 :     xvidcore--stable--1.0--base-0
646 :    
647 :     (automatically generated log message)
648 :    
649 :    
650 :     2004-03-31 19:32:47 GMT patch-53
651 :    
652 :     Summary:
653 :     Ressources leaking in VFW.
654 :     Revision:
655 :     xvidcore--devapi4--1.0--patch-53
656 :    
657 :     From sysKin:
658 :     * Storing ressources in global vars is making multithreaded/instanced
659 :     apps leaking lot of memory. Moved these vars to codec struct.
660 :    
661 :     Thanks to dalox <fdalleau at hymatom d0t fr> to spot and fix the bug.
662 :    
663 :     modified files:
664 :     vfw/src/codec.c vfw/src/codec.h vfw/src/driverproc.c
665 :    
666 :    
667 :     2004-03-31 19:28:51 GMT patch-52
668 :    
669 :     Summary:
670 :     Fix to bad NVOP+bframe interaction.
671 :     Revision:
672 :     xvidcore--devapi4--1.0--patch-52
673 :    
674 :     From syskin:
675 :     * When generating a NVOP, it interferes with bframe flushing and
676 :     packing.
677 :    
678 :     modified files:
679 :     src/encoder.c
680 :    
681 :    
682 :     2004-03-31 19:24:42 GMT patch-51
683 :    
684 :     Summary:
685 :     Fix GMC 2 warp point.
686 :     Revision:
687 :     xvidcore--devapi4--1.0--patch-51
688 :    
689 :     From Skal:
690 :     * Fix 2 warp points GMC.
691 :    
692 :     modified files:
693 :     src/motion/gmc.c
694 :    
695 :    
696 :     2004-03-31 19:18:46 GMT patch-50
697 :    
698 :     Summary:
699 :     Added intra quant testing.
700 :     Revision:
701 :     xvidcore--devapi4--1.0--patch-50
702 :    
703 :     From Skal:
704 :     * Added intra quant testing to xvid_bench
705 :    
706 :     modified files:
707 :     examples/xvid_bench.c
708 :    
709 :    
710 :     2004-03-31 19:07:55 GMT patch-49
711 :    
712 :     Summary:
713 :     input width/height check
714 :     Revision:
715 :     xvidcore--devapi4--1.0--patch-49
716 :    
717 :     From Skal:
718 :     * Input width and height aren't checked and this can cause crash.
719 :    
720 :     modified files:
721 :     src/encoder.c
722 :    
723 :    
724 :     2004-03-28 01:02:21 GMT patch-48
725 :    
726 :     Summary:
727 :     $ CVS expansion removed
728 :     Revision:
729 :     xvidcore--devapi4--1.0--patch-48
730 :    
731 :     $ CVS expansion removed
732 :    
733 :    
734 :     modified files:
735 :     dshow/src/Configure.cpp dshow/src/config.c
736 :     examples/xvid_encraw.c
737 :    
738 :    
739 :     2004-03-28 00:45:23 GMT patch-47
740 :    
741 :     Summary:
742 :     Allow bigger frames
743 :     Revision:
744 :     xvidcore--devapi4--1.0--patch-47
745 :    
746 :     Allow bigger frames
747 :    
748 :    
749 :     modified files:
750 :     examples/xvid_encraw.c
751 :    
752 :    
753 :     2004-03-28 00:41:54 GMT patch-46
754 :    
755 :     Summary:
756 :     Fix in postproc header
757 :     Revision:
758 :     xvidcore--devapi4--1.0--patch-46
759 :    
760 :     Fix in postproc header
761 :    
762 :    
763 :     modified files:
764 :     src/image/postprocessing.h
765 :    
766 :    
767 :     2004-03-28 00:33:02 GMT patch-45
768 :    
769 :     Summary:
770 :     Fixed xvidvfw build on real mingw+msys systems
771 :     Revision:
772 :     xvidcore--devapi4--1.0--patch-45
773 :    
774 :     Fixed xvidvfw build on real mingw+msys systems
775 :    
776 :    
777 :     modified files:
778 :     vfw/bin/Makefile
779 :    
780 :    
781 :     2004-03-15 21:48:48 GMT patch-44
782 :    
783 :     Summary:
784 :     VFW updates.
785 :     Revision:
786 :     xvidcore--devapi4--1.0--patch-44
787 :    
788 :     VFW updates.
789 :    
790 :     modified files:
791 :     vfw/src/config.c vfw/src/resource.rc
792 :    
793 :    
794 :     2004-03-15 21:44:17 GMT patch-43
795 :    
796 :     Summary:
797 :     GMC bugfix.
798 :     Revision:
799 :     xvidcore--devapi4--1.0--patch-43
800 :    
801 :     From skal:
802 :     * GMC bugfixes.
803 :    
804 :     modified files:
805 :     src/motion/gmc.c
806 :    
807 :    
808 :     2004-03-15 21:41:18 GMT patch-42
809 :    
810 :     Summary:
811 :     Buffer overrun fix in post proc.
812 :     Revision:
813 :     xvidcore--devapi4--1.0--patch-42
814 :    
815 :     From sysKin:
816 :     * Fixed buffer overrun in postproc code.
817 :    
818 :     modified files:
819 :     src/image/postprocessing.c src/image/postprocessing.h
820 :    
821 :    
822 :     2004-03-15 21:33:22 GMT patch-41
823 :    
824 :     Summary:
825 :     Forgotten files.
826 :     Revision:
827 :     xvidcore--devapi4--1.0--patch-41
828 :    
829 :     Me:
830 :     * Sorry i missed these file additions. Important for the packages
831 :     as i build them from the tla archive.
832 :    
833 :     new files:
834 :     dshow/src/.arch-ids/Configure.cpp.id
835 :     dshow/src/.arch-ids/config.c.id
836 :     dshow/src/.arch-ids/config.h.id dshow/src/.arch-ids/debug.h.id
837 :     dshow/src/Configure.cpp dshow/src/config.c dshow/src/config.h
838 :     dshow/src/debug.h
839 :    
840 :    
841 :     2004-03-03 21:01:09 GMT patch-40
842 :    
843 :     Summary:
844 :     MV clipping in decoder.
845 :     Revision:
846 :     xvidcore--devapi4--1.0--patch-40
847 :    
848 :     From sysKin:
849 :     * clip MVs to valid ranges.
850 :    
851 :     modified files:
852 :     src/decoder.c src/decoder.h
853 :    
854 :    
855 :     #########################################################################
856 :     # 1.0.0 RC3 (Bistream Version 29)
857 :     #########################################################################
858 :    
859 :     2004-02-29 13:17:10 GMT patch-39
860 :    
861 :     Summary:
862 :     Marking 1.0.0 RC3
863 :     Revision:
864 :     xvidcore--devapi4--1.0--patch-39
865 :    
866 :     * Marking RC3
867 :    
868 :     modified files:
869 :     ChangeLog build/generic/configure.in src/xvid.h
870 :    
871 :    
872 :     2004-02-29 13:08:38 GMT patch-38
873 :    
874 :     Summary:
875 :     Win32 project fixes for xvid_encraw and xvid_decraw.
876 :     Revision:
877 :     xvidcore--devapi4--1.0--patch-38
878 :    
879 :     From sysKin:
880 :     * xvid_dec/encraw were linking against libxvidcore.lib. Now they link
881 :     against xvidcore.dll.a
882 :    
883 :     NB: xvid_bench is left as is though it doesn't link. This program
884 :     requires access to internal functions which aren't available
885 :     through the dll link lib. No good solution exists for MSVC to
886 :     build both a dll+its link lib+static lib.
887 :    
888 :     modified files:
889 :     build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp
890 :    
891 :    
892 :     2004-02-29 12:56:36 GMT patch-37
893 :    
894 :     Summary:
895 :     DShow updates
896 :     Revision:
897 :     xvidcore--devapi4--1.0--patch-37
898 :    
899 :     Bunch of DShow updates
900 :    
901 :     modified files:
902 :     dshow/src/CXvidDecoder.cpp dshow/src/resource.h
903 :     dshow/src/xvid.ax.rc
904 :    
905 :    
906 :     2004-02-29 12:55:41 GMT patch-36
907 :    
908 :     Summary:
909 :     VFW updates.
910 :     Revision:
911 :     xvidcore--devapi4--1.0--patch-36
912 :    
913 :     * Bunch of VFW frontends updates.
914 :    
915 :     modified files:
916 :     vfw/src/codec.c vfw/src/codec.h vfw/src/config.c
917 :     vfw/src/resource.rc vfw/src/status.c vfw/vfw.dsp
918 :    
919 :    
920 :     2004-02-29 12:49:24 GMT patch-35
921 :    
922 :     Summary:
923 :     Artefact workaround in bframes.
924 :     Revision:
925 :     xvidcore--devapi4--1.0--patch-35
926 :    
927 :     From sysKin:
928 :     * Workaround for some artefacts appearing in bframes.
929 :    
930 :     modified files:
931 :     src/motion/estimation_bvop.c
932 :    
933 :    
934 :     2004-02-29 12:46:13 GMT patch-34
935 :    
936 :     Summary:
937 :     Decoder buffer overflow fix.
938 :     Revision:
939 :     xvidcore--devapi4--1.0--patch-34
940 :    
941 :     From sysKin:
942 :     * Avoids buffer overflow when reading the last align byte. Our
943 :     bitstream do 4 byte reading because of some platform contraints
944 :     (ARM) and can cause buffer overflow reads.
945 :    
946 :     modified files:
947 :     src/decoder.c
948 :    
949 :    
950 :     2004-02-29 11:53:47 GMT patch-33
951 :    
952 :     Summary:
953 :     Compatibility decoding for old bitstreams.
954 :     Revision:
955 :     xvidcore--devapi4--1.0--patch-33
956 :    
957 :     From syskin:
958 :     * old core versions used in dev-api-3 distributed by nearly all win32 bin
959 :     builders used to have a edging bug. So when this information is known,
960 :     workaround the bug.
961 :    
962 :     modified files:
963 :     src/decoder.c src/encoder.c src/image/image.c
964 :     src/image/image.h
965 :    
966 :     #########################################################################
967 :     # 1.0.0 RC2 (Bistream Version 28)
968 :     #########################################################################
969 :    
970 :     2004-02-08 01:06:40 GMT patch-32
971 :    
972 :     Summary:
973 :     Marking RC2
974 :     Revision:
975 :     xvidcore--devapi4--1.0--patch-32
976 :    
977 :     Marking RC2
978 :    
979 :    
980 :     modified files:
981 :     ChangeLog build/generic/configure.in
982 :    
983 :    
984 :     2004-02-07 13:54:24 GMT patch-31
985 :    
986 :     Summary:
987 :     Win32 project outputs dll lib for linking.
988 :     Revision:
989 :     xvidcore--devapi4--1.0--patch-31
990 :    
991 :     From pete:
992 :     * output a lib to link against the dll (xvidcore.dll.a).
993 :    
994 :     modified files:
995 :     build/win32/libxvidcore.dsp
996 :    
997 :    
998 :     2004-02-07 13:51:01 GMT patch-30
999 :    
1000 :     Summary:
1001 :     DShow update.
1002 :     Revision:
1003 :     xvidcore--devapi4--1.0--patch-30
1004 :    
1005 :     From pete:
1006 :     * cmd line driving
1007 :    
1008 :     From sysKin(?):
1009 :     * bugfixes related to video flipping
1010 :     * bugfix for the 'crash at the end" bug
1011 :    
1012 :     modified files:
1013 :     TODO dshow/dshow.dsp dshow/src/CAbout.cpp dshow/src/CAbout.h
1014 :     dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
1015 :     dshow/src/xvid.ax.def
1016 :    
1017 :    
1018 :     2004-02-07 13:47:45 GMT patch-29
1019 :    
1020 :     Summary:
1021 :     VFW updates
1022 :     Revision:
1023 :     xvidcore--devapi4--1.0--patch-29
1024 :    
1025 :     Sorry feeling lazy about splitting this patch...
1026 :    
1027 :     From peter:
1028 :     * bitrate calculator
1029 :    
1030 :     From sysKin:
1031 :     * WMP9 bugfix
1032 :    
1033 :     modified files:
1034 :     TODO vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1035 :     vfw/src/resource.h vfw/src/resource.rc
1036 :    
1037 :    
1038 :     2004-02-07 13:43:26 GMT patch-28
1039 :    
1040 :     Summary:
1041 :     Implicit overflow tuning for 2nd pass.
1042 :     Revision:
1043 :     xvidcore--devapi4--1.0--patch-28
1044 :    
1045 :     From sysKin:
1046 :     * When doing a bigger 2nd pass, the overflow loop must be more
1047 :     aggressive else no bonus bits are reinjected. So we can auto
1048 :     tune the overlow values in that case.
1049 :    
1050 :     modified files:
1051 :     src/plugins/plugin_2pass2.c
1052 :    
1053 :    
1054 :     2004-02-07 13:38:33 GMT patch-27
1055 :    
1056 :     Summary:
1057 :     GMC+interlaced bugfix in decoder.
1058 :     Revision:
1059 :     xvidcore--devapi4--1.0--patch-27
1060 :    
1061 :     From sysKin:
1062 :     * GMC+interlaced bugfix in decoder.
1063 :    
1064 :     modified files:
1065 :     src/decoder.c
1066 :    
1067 :    
1068 :     2004-02-07 13:35:16 GMT patch-26
1069 :    
1070 :     Summary:
1071 :     Reverted patch-23
1072 :     Revision:
1073 :     xvidcore--devapi4--1.0--patch-26
1074 :    
1075 :     From christoph:
1076 :     * reverted patch-23, old code was right.
1077 :     * Important typo for the YVYU csp (passing the y plane instead of u).
1078 :    
1079 :     modified files:
1080 :     src/image/image.c src/xvid.h
1081 :    
1082 :    
1083 :     2004-01-31 11:20:36 GMT patch-25
1084 :    
1085 :     Summary:
1086 :     DShow support for more mpeg4 fourccs.
1087 :     Revision:
1088 :     xvidcore--devapi4--1.0--patch-25
1089 :    
1090 :     From sysKin:
1091 :     * Added support for the MP4V fourcc.
1092 :    
1093 :     modified files:
1094 :     dshow/src/CAbout.cpp dshow/src/CAbout.h
1095 :     dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
1096 :     dshow/src/resource.h dshow/src/xvid.ax.rc
1097 :    
1098 :    
1099 :     2004-01-31 11:12:38 GMT patch-24
1100 :    
1101 :     Summary:
1102 :     DivX decoder compatibility
1103 :     Revision:
1104 :     xvidcore--devapi4--1.0--patch-24
1105 :    
1106 :     From sysKin:
1107 :     * DivX decoder compatibility improved for packed bitstreams.
1108 :     It should now detect them and play them fine.
1109 :    
1110 :     modified files:
1111 :     src/bitstream/bitstream.c
1112 :    
1113 :    
1114 :     2004-01-31 11:10:26 GMT patch-23
1115 :    
1116 :     Summary:
1117 :     YV12/I420 confusion fixed.
1118 :     Revision:
1119 :     xvidcore--devapi4--1.0--patch-23
1120 :    
1121 :     From christoph:
1122 :     * I420/YV12 were swapped since ... ages.
1123 :     * CSP_USER renamed to CSP_PLANAR
1124 :    
1125 :     modified files:
1126 :     src/encoder.c src/image/image.c src/xvid.h
1127 :    
1128 :    
1129 :     2004-01-31 10:53:20 GMT patch-22
1130 :    
1131 :     Summary:
1132 :     Arch separation for mem transfer functions
1133 :     Revision:
1134 :     xvidcore--devapi4--1.0--patch-22
1135 :    
1136 :     Arch separation for mem transfer functions
1137 :    
1138 :    
1139 :     modified files:
1140 :     src/utils/mem_transfer.h
1141 :    
1142 :    
1143 :     2004-01-27 14:47:08 GMT patch-21
1144 :    
1145 :     Summary:
1146 :     Write to registry Flip video flag in dshow
1147 :     Revision:
1148 :     xvidcore--devapi4--1.0--patch-21
1149 :    
1150 :     From sysKin:
1151 :     * The flip video flag is now saved in registry.
1152 :     * Changed internal flags name convention (use n prefix for all now)
1153 :    
1154 :     modified files:
1155 :     dshow/src/CAbout.cpp dshow/src/CAbout.h
1156 :     dshow/src/CXvidDecoder.cpp
1157 :    
1158 :    
1159 :     2004-01-27 14:42:52 GMT patch-20
1160 :    
1161 :     Summary:
1162 :     Added bitrate calc to VFW
1163 :     Revision:
1164 :     xvidcore--devapi4--1.0--patch-20
1165 :    
1166 :     From Pete:
1167 :     * Added bitrate calculator.
1168 :     * Changed up a few function calls to static type.
1169 :    
1170 :     modified files:
1171 :     vfw/src/codec.c vfw/src/codec.h vfw/src/config.c
1172 :     vfw/src/config.h vfw/src/resource.h vfw/src/resource.rc
1173 :     vfw/vfw.dsp
1174 :    
1175 :    
1176 :     2004-01-27 14:29:49 GMT patch-19
1177 :    
1178 :     Summary:
1179 :     Bugfix in decoder
1180 :     Revision:
1181 :     xvidcore--devapi4--1.0--patch-19
1182 :    
1183 :     From sysKin:
1184 :     * when stats are not used, don't write to the stats pointer.
1185 :    
1186 :     modified files:
1187 :     src/decoder.c
1188 :    
1189 :     #########################################################################
1190 :     # 1.0.0 RC1 (Bistream Version 26)
1191 :     #########################################################################
1192 :    
1193 :     2004-01-25 16:01:06 GMT patch-18
1194 :    
1195 :     Summary:
1196 :     Marking RC1
1197 :     Revision:
1198 :     xvidcore--devapi4--1.0--patch-18
1199 :    
1200 :     Marking RC1
1201 :    
1202 :     modified files:
1203 :     ChangeLog build/generic/configure.in src/xvid.h
1204 :    
1205 :    
1206 :     2004-01-25 15:37:57 GMT patch-17
1207 :    
1208 :     Summary:
1209 :     VFW update (again²)
1210 :     Revision:
1211 :     xvidcore--devapi4--1.0--patch-17
1212 :    
1213 :     From sysKin:
1214 :     * Added Constant Quant encoding.
1215 :    
1216 :     modified files:
1217 :     vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1218 :     vfw/src/resource.rc
1219 :    
1220 :    
1221 :     2004-01-25 15:35:38 GMT patch-16
1222 :    
1223 :     Summary:
1224 :     Missing MB quants for PP.
1225 :     Revision:
1226 :     xvidcore--devapi4--1.0--patch-16
1227 :    
1228 :     From sysKin:
1229 :     * MB Quants are used by the PP code, so don't forget to update
1230 :     them even if the block is skipped or not coded.
1231 :    
1232 :     modified files:
1233 :     src/decoder.c
1234 :    
1235 :    
1236 :     2004-01-23 13:25:52 GMT patch-15
1237 :    
1238 :     Summary:
1239 :     VFW update (again)
1240 :     Revision:
1241 :     xvidcore--devapi4--1.0--patch-15
1242 :    
1243 :     From sysKin:
1244 :     * Status window updates.
1245 :     * Big resource.h cleanup, it seems msvc isn't able to do it automatically.
1246 :    
1247 :     modified files:
1248 :     vfw/src/resource.h vfw/src/resource.rc vfw/src/status.c
1249 :    
1250 :    
1251 :     2004-01-23 11:17:20 GMT patch-14
1252 :    
1253 :     Summary:
1254 :     VFW gcc warnings
1255 :     Revision:
1256 :     xvidcore--devapi4--1.0--patch-14
1257 :    
1258 :     VFW gcc warnings
1259 :    
1260 :    
1261 :     modified files:
1262 :     vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1263 :    
1264 :    
1265 :     2004-01-22 20:54:53 GMT patch-13
1266 :    
1267 :     Summary:
1268 :     DShow updates.
1269 :     Revision:
1270 :     xvidcore--devapi4--1.0--patch-13
1271 :    
1272 :     From sysKin:
1273 :     * Fixed registry params type. Bool cannot be used or something weird
1274 :     happens when writing to registry
1275 :     * Defaults set to what the Reset widget sets.
1276 :    
1277 :     modified files:
1278 :     dshow/src/CAbout.h dshow/src/CXvidDecoder.cpp
1279 :    
1280 :    
1281 :     2004-01-22 20:35:27 GMT patch-12
1282 :    
1283 :     Summary:
1284 :     VFW updates.
1285 :     Revision:
1286 :     xvidcore--devapi4--1.0--patch-12
1287 :    
1288 :     From sysKin:
1289 :     * GUI improvements.
1290 :     * Stats fixing.
1291 :     * Automatic config clear upon installation.
1292 :     * Added postprocessing options in there too.
1293 :    
1294 :     modified files:
1295 :     vfw/bin/xvid.inf vfw/src/codec.c vfw/src/codec.h
1296 :     vfw/src/config.c vfw/src/config.h vfw/src/resource.h
1297 :     vfw/src/resource.rc vfw/src/status.c vfw/src/status.h
1298 :    
1299 :    
1300 :     2004-01-22 20:28:54 GMT patch-11
1301 :    
1302 :     Summary:
1303 :     Minor updates to text files
1304 :     Revision:
1305 :     xvidcore--devapi4--1.0--patch-11
1306 :    
1307 :     Minor updates to text files
1308 :    
1309 :    
1310 :     modified files:
1311 :     AUTHORS TODO
1312 :    
1313 :    
1314 :     2004-01-22 20:27:10 GMT patch-10
1315 :    
1316 :     Summary:
1317 :     2pass plugin changes.
1318 :     Revision:
1319 :     xvidcore--devapi4--1.0--patch-10
1320 :    
1321 :     From sysKin:
1322 :     * Disabled QPel during first pass as well.
1323 :     * Fix a mistaking condition when enabling largers 2nd passes.
1324 :    
1325 :     From ed.gomez:
1326 :     * Fix the fix logic. The previous fix enclosed a condition it should
1327 :     not have touched. So i removed the mistaking condition, which was
1328 :     wrong anyway as stated in the comment, and got back the sane condition
1329 :     test.
1330 :    
1331 :     modified files:
1332 :     src/plugins/plugin_2pass1.c src/plugins/plugin_2pass2.c
1333 :    
1334 :    
1335 :     2004-01-17 13:03:11 GMT patch-9
1336 :    
1337 :     Summary:
1338 :     Unitialized pointers during plugin creation.
1339 :     Revision:
1340 :     xvidcore--devapi4--1.0--patch-9
1341 :    
1342 :     From sysKin:
1343 :     - plugins which do not require private data were leaving the param2
1344 :     unitialized. Just init it to NULL. This bug wasn't causing any
1345 :     trouble anyway...
1346 :    
1347 :     modified files:
1348 :     src/plugins/plugin_dump.c src/plugins/plugin_psnr.c
1349 :     vfw/src/codec.c
1350 :    
1351 :    
1352 :     2004-01-17 01:09:01 GMT patch-8
1353 :    
1354 :     Summary:
1355 :     DShow forwwards AR information.
1356 :     Revision:
1357 :     xvidcore--devapi4--1.0--patch-8
1358 :    
1359 :     From syskin(?):
1360 :     - forward AR information to DShow framework.
1361 :     - grayed some widgets.
1362 :    
1363 :     modified files:
1364 :     dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
1365 :     dshow/src/xvid.ax.rc
1366 :    
1367 :    
1368 :     2004-01-07 13:50:29 GMT patch-7
1369 :    
1370 :     Summary:
1371 :     Scaled zones fix.
1372 :     Revision:
1373 :     xvidcore--devapi4--1.0--patch-7
1374 :    
1375 :     From sysKin (ideas from Koepi iirc):
1376 :     * Fix scaled zones computing prescaled data and so on instead of
1377 :     guessing everything with a global zone weight factor.
1378 :    
1379 :     modified files:
1380 :     src/plugins/plugin_2pass2.c
1381 :    
1382 :    
1383 :     2004-01-06 01:06:39 GMT patch-6
1384 :    
1385 :     Summary:
1386 :     Tab->Spaces in header only
1387 :     Revision:
1388 :     xvidcore--devapi4--1.0--patch-6
1389 :    
1390 :     Tab->Spaces in header only
1391 :    
1392 :    
1393 :     modified files:
1394 :     src/xvid.h
1395 :    
1396 :    
1397 :     2004-01-04 18:35:35 GMT patch-5
1398 :    
1399 :     Summary:
1400 :     Typo fixed
1401 :     Revision:
1402 :     xvidcore--devapi4--1.0--patch-5
1403 :    
1404 :     Typo fixed
1405 :    
1406 :    
1407 :     modified files:
1408 :     build/generic/configure.in
1409 :    
1410 :    
1411 :     2004-01-04 13:40:51 GMT patch-4
1412 :    
1413 :     Summary:
1414 :     VFW safer code.
1415 :     Revision:
1416 :     xvidcore--devapi4--1.0--patch-4
1417 :    
1418 :     From sysKin:
1419 :     * Protects some parts of the code depending on a previous
1420 :     xvidcore opening. Avoids resources leaking.
1421 :    
1422 :     modified files:
1423 :     vfw/src/codec.c vfw/src/driverproc.c
1424 :    
1425 :    
1426 :     2004-01-04 13:33:28 GMT patch-3
1427 :    
1428 :     Summary:
1429 :     Fixes VC debug target name
1430 :     Revision:
1431 :     xvidcore--devapi4--1.0--patch-3
1432 :    
1433 :     Fixes VC debug target name
1434 :    
1435 :    
1436 :     modified files:
1437 :     vfw/vfw.dsp
1438 :    
1439 :    
1440 :     2004-01-02 23:10:56 GMT patch-2
1441 :    
1442 :     Summary:
1443 :     Win32 linking policy revised.
1444 :     Revision:
1445 :     xvidcore--devapi4--1.0--patch-2
1446 :    
1447 :     Finnaly Win32 linking policy is to separate all XviD components:
1448 :     - xvidcore.dll exports XviD API
1449 :     - xvidvfw.dll links against xvidcore DLL
1450 :     - xviddshow.dll links against xvidcore DLL
1451 :    
1452 :     From sysKin:
1453 :     * Changed DShow linking policy in VS project file.
1454 :     * Changed VFW linking policy in VS project file.
1455 :     * Added runtime xvidcore.dll loading in DShow and VFW.
1456 :     * Installs xvidcore.dll along side with xvidvfw.dll.
1457 :    
1458 :     From ed.gomez:
1459 :     * Changed libxvidcore.dll mingw32/cygwin target name to
1460 :     xvidcore.dll in the configure script.
1461 :     * Changed xvid.dll VFW target name to xvidvfw.dll in the
1462 :     generic Makefile.
1463 :    
1464 :     PS: unlike CVS, i reverted back to MS build tools in VS project files
1465 :    
1466 :     modified files:
1467 :     build/generic/configure.in build/win32/libxvidcore.dsp
1468 :     dshow/dshow.dsp dshow/src/CXvidDecoder.cpp
1469 :     dshow/src/CXvidDecoder.h vfw/bin/Makefile vfw/bin/sources.inc
1470 :     vfw/bin/xvid.inf vfw/src/codec.c vfw/src/codec.h
1471 :     vfw/src/config.c vfw/src/config.h vfw/vfw.dsp
1472 :    
1473 :    
1474 :     2004-01-02 22:02:07 GMT patch-1
1475 :    
1476 :     Summary:
1477 :     Better seeking in dshow
1478 :     Revision:
1479 :     xvidcore--devapi4--1.0--patch-1
1480 :    
1481 :     From Michael:
1482 :     * Better DShow seeking.
1483 :    
1484 :     modified files:
1485 :     dshow/src/CXvidDecoder.cpp
1486 :    
1487 :    
1488 :     2004-01-02 12:28:39 GMT base-0
1489 :    
1490 :     Summary:
1491 :     tag of ed.gomez@free.fr--2003-1/xvidcore--devapi4--1.0--patch-162
1492 :     Revision:
1493 :     xvidcore--devapi4--1.0--base-0
1494 :    
1495 :     Archive cycling...
1496 :    
1497 :     #########################################################################
1498 :     # 1.0.0 beta3 (Bistream Version 25)
1499 :     #########################################################################
1500 :    
1501 :     2003-12-26 22:21:35 GMT patch-162
1502 :    
1503 :     Summary:
1504 :     Marking 1.0.0 beta3
1505 :     Revision:
1506 :     xvidcore--devapi4--1.0--patch-162
1507 :    
1508 :     Marking beta3
1509 :    
1510 :     modified files:
1511 :     ChangeLog TODO build/generic/configure.in src/xvid.h
1512 :    
1513 :    
1514 :     2003-12-25 20:57:52 GMT patch-161
1515 :    
1516 :     Summary:
1517 :     Thread safe PP.
1518 :     Revision:
1519 :     xvidcore--devapi4--1.0--patch-161
1520 :    
1521 :     From Michael:
1522 :     * Thread safe PP, context is now stored in DECODER struct.
1523 :    
1524 :     modified files:
1525 :     src/decoder.c src/decoder.h src/image/postprocessing.c
1526 :     src/image/postprocessing.h
1527 :    
1528 :    
1529 :     2003-12-25 20:49:36 GMT patch-160
1530 :    
1531 :     Summary:
1532 :     Added Turbo option to VFW GUI
1533 :     Revision:
1534 :     xvidcore--devapi4--1.0--patch-160
1535 :    
1536 :     From Michael:
1537 :     * Added turbo mode that enables all fast ME flags.
1538 :    
1539 :     modified files:
1540 :     vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1541 :     vfw/src/resource.h vfw/src/resource.rc
1542 :    
1543 :    
1544 :     2003-12-25 20:46:16 GMT patch-159
1545 :    
1546 :     Summary:
1547 :     Cartoon mode usage written to stream.
1548 :     Revision:
1549 :     xvidcore--devapi4--1.0--patch-159
1550 :    
1551 :     From Michael:
1552 :     * @encoding: write cartoon usage in the version user data.
1553 :     * @decoding: detect cartoon flag appended to version string
1554 :     and force FILM PP disabling.
1555 :    
1556 :     modified files:
1557 :     src/bitstream/bitstream.c src/bitstream/bitstream.h
1558 :     src/decoder.c src/decoder.h src/encoder.c
1559 :    
1560 :    
1561 :     2003-12-21 13:34:03 GMT patch-158
1562 :    
1563 :     Summary:
1564 :     Removed unused var in VFW GUI
1565 :     Revision:
1566 :     xvidcore--devapi4--1.0--patch-158
1567 :    
1568 :     Removed unused var in VFW GUI
1569 :    
1570 :    
1571 :     modified files:
1572 :     vfw/src/config.c
1573 :    
1574 :    
1575 :     2003-12-21 13:32:52 GMT patch-157
1576 :    
1577 :     Summary:
1578 :     Two pass small update
1579 :     Revision:
1580 :     xvidcore--devapi4--1.0--patch-157
1581 :    
1582 :     from syskin:
1583 :     * allow second pass to be bigger than 1st one
1584 :     (not tested, the quant mapping formula may not be adapted for this
1585 :     usage, so take this change as experimental, and prefer doing
1586 :     second pass still smaller than 1st one)
1587 :     * let ivops benefit from positive overflow.
1588 :    
1589 :     from me:
1590 :     * set frame type in quant zones (was a buglet)
1591 :    
1592 :     modified files:
1593 :     src/plugins/plugin_2pass2.c
1594 :    
1595 :    
1596 :     2003-12-20 22:28:07 GMT patch-156
1597 :    
1598 :     Summary:
1599 :     New VFW defaults
1600 :     Revision:
1601 :     xvidcore--devapi4--1.0--patch-156
1602 :    
1603 :     From michael:
1604 :     * new VFW default values
1605 :    
1606 :     modified files:
1607 :     vfw/src/config.c
1608 :    
1609 :    
1610 :     2003-12-20 22:12:38 GMT patch-155
1611 :    
1612 :     Summary:
1613 :     Added ARGB colorspace.
1614 :     Revision:
1615 :     xvidcore--devapi4--1.0--patch-155
1616 :    
1617 :     Christoph Nägeli naegelic(at)ee{dot}ethz<dot>ch asked me to add C
1618 :     support for ARGB colorspace. He provided the encoding part, and i
1619 :     extended the original patch in order to have full support for ARGB
1620 :     both for encoding and decoding (though it's C only, read *slow*).
1621 :    
1622 :     modified files:
1623 :     src/image/colorspace.c src/image/colorspace.h
1624 :     src/image/image.c src/xvid.c src/xvid.h
1625 :    
1626 :    
1627 :     2003-12-20 21:29:37 GMT patch-154
1628 :    
1629 :     Summary:
1630 :     Added 2pass1 comment about fast 1st pass.
1631 :     Revision:
1632 :     xvidcore--devapi4--1.0--patch-154
1633 :    
1634 :     Just added a comment on fast 1st pass, so it explains why
1635 :     we do it that way and why some things are left aside.
1636 :    
1637 :     modified files:
1638 :     src/plugins/plugin_2pass1.c
1639 :    
1640 :    
1641 :     2003-12-20 20:03:51 GMT patch-153
1642 :    
1643 :     Summary:
1644 :     Win32 VC6 wrong libc linking.
1645 :     Revision:
1646 :     xvidcore--devapi4--1.0--patch-153
1647 :    
1648 :     From sysKin:
1649 :     * Changed single thread libc linking to multithreaded version.
1650 :    
1651 :     modified files:
1652 :     vfw/vfw.dsp
1653 :    
1654 :    
1655 :     2003-12-20 15:28:53 GMT patch-152
1656 :    
1657 :     Summary:
1658 :     VOL flags updating -- take #2
1659 :     Revision:
1660 :     xvidcore--devapi4--1.0--patch-152
1661 :    
1662 :     From sysKin:
1663 :     * VOL flags updates fix take #2
1664 :    
1665 :     modified files:
1666 :     src/encoder.c
1667 :    
1668 :    
1669 :     2003-12-20 15:10:30 GMT patch-151
1670 :    
1671 :     Summary:
1672 :     Fast ME tunings.
1673 :     Revision:
1674 :     xvidcore--devapi4--1.0--patch-151
1675 :    
1676 :     From michael:
1677 :     * fast refinement for 8x8 blocks
1678 :     * more reliable behavior for all fast ME decisions
1679 :    
1680 :     modified files:
1681 :     src/motion/estimation_bvop.c src/motion/estimation_pvop.c
1682 :     src/xvid.h
1683 :    
1684 :    
1685 :     2003-12-20 14:59:58 GMT patch-150
1686 :    
1687 :     Summary:
1688 :     VFW AR revamping -- take #2
1689 :     Revision:
1690 :     xvidcore--devapi4--1.0--patch-150
1691 :    
1692 :     From sysKin:
1693 :     * more AR revamping
1694 :    
1695 :     modified files:
1696 :     vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1697 :     vfw/src/resource.h vfw/src/resource.rc
1698 :    
1699 :    
1700 :     2003-12-20 14:57:40 GMT patch-149
1701 :    
1702 :     Summary:
1703 :     Unbuffured IO for 1st pass stat files
1704 :     Revision:
1705 :     xvidcore--devapi4--1.0--patch-149
1706 :    
1707 :     Unbuffured IO for 1st pass stat files
1708 :    
1709 :    
1710 :     modified files:
1711 :     src/plugins/plugin_2pass1.c
1712 :    
1713 :    
1714 :     2003-12-18 17:44:07 GMT patch-148
1715 :    
1716 :     Summary:
1717 :     Forgotten bit of patch-141
1718 :     Revision:
1719 :     xvidcore--devapi4--1.0--patch-148
1720 :    
1721 :     Damn i forgot to merge the 1st pass changes... so lame, i tested the
1722 :     original patch but not the merged one.
1723 :    
1724 :     modified files:
1725 :     src/plugins/plugin_2pass1.c
1726 :    
1727 :    
1728 :     2003-12-18 14:45:39 GMT patch-147
1729 :    
1730 :     Summary:
1731 :     More postprocessing.
1732 :     Revision:
1733 :     xvidcore--devapi4--1.0--patch-147
1734 :    
1735 :     From michael:
1736 :     * added film noise effect.
1737 :     * moved postproc initialization to decoder initialization.
1738 :     * added support for this postproc filter into DShow.
1739 :    
1740 :     modified files:
1741 :     dshow/src/CAbout.cpp dshow/src/CAbout.h
1742 :     dshow/src/CXvidDecoder.cpp dshow/src/resource.h
1743 :     dshow/src/xvid.ax.rc src/decoder.c src/image/postprocessing.c
1744 :     src/image/postprocessing.h src/xvid.c src/xvid.h
1745 :    
1746 :    
1747 :     2003-12-18 14:38:19 GMT patch-146
1748 :    
1749 :     Summary:
1750 :     BFrames ME speed up flags.
1751 :     Revision:
1752 :     xvidcore--devapi4--1.0--patch-146
1753 :    
1754 :     From michael:
1755 :     * Added 3 ME flags to skip some bvop ME steps and thus speed up
1756 :     ME for bvops (at the expense of quality loss).
1757 :     - skip delta search
1758 :     - fast interpolate mode
1759 :     - early stop
1760 :    
1761 :     modified files:
1762 :     src/motion/estimation.h src/motion/estimation_bvop.c
1763 :     src/motion/estimation_common.c src/motion/estimation_pvop.c
1764 :     src/xvid.h
1765 :    
1766 :    
1767 :     2003-12-18 14:11:01 GMT patch-145
1768 :    
1769 :     Summary:
1770 :     VFW defaults changed
1771 :     Revision:
1772 :     xvidcore--devapi4--1.0--patch-145
1773 :    
1774 :     From michael:
1775 :     * disabled DXN profiles. Better not say we are compatible to avoid
1776 :     problems with DXN. Mostly because of VBV lacking.
1777 :     * Changed overflow defaults to 5/5/5 with new 2pass code.
1778 :    
1779 :     modified files:
1780 :     vfw/src/config.c
1781 :    
1782 :    
1783 :     2003-12-17 16:45:59 GMT patch-144
1784 :    
1785 :     Summary:
1786 :     Forgotten bit for AR support in VFW
1787 :     Revision:
1788 :     xvidcore--devapi4--1.0--patch-144
1789 :    
1790 :     Koepi might have forgotten to send me this change:
1791 :     * added resource id to the resource header
1792 :    
1793 :     modified files:
1794 :     vfw/src/resource.h
1795 :    
1796 :    
1797 :     2003-12-17 15:11:37 GMT patch-143
1798 :    
1799 :     Summary:
1800 :     Lower starting quantizer for CBR encoding
1801 :     Revision:
1802 :     xvidcore--devapi4--1.0--patch-143
1803 :    
1804 :     From christoph:
1805 :     * Lower starting quantizer for CBR encodings.
1806 :    
1807 :     modified files:
1808 :     src/plugins/plugin_single.c
1809 :    
1810 :    
1811 :     2003-12-17 15:04:33 GMT patch-142
1812 :    
1813 :     Summary:
1814 :     Small xvid_encraw updates
1815 :     Revision:
1816 :     xvidcore--devapi4--1.0--patch-142
1817 :    
1818 :     From christoph:
1819 :     * set upper frame size limit to 4096 pixels
1820 :     * GME refinement flag set where it belongs to.
1821 :    
1822 :     modified files:
1823 :     examples/xvid_encraw.c
1824 :    
1825 :    
1826 :     2003-12-17 15:01:52 GMT patch-141
1827 :    
1828 :     Summary:
1829 :     Two pass update.
1830 :     Revision:
1831 :     xvidcore--devapi4--1.0--patch-141
1832 :    
1833 :     This patch improves the two pass code, quantizer distribution is
1834 :     smoother and results seem to be better.
1835 :    
1836 :     * Two pass now scales only a specific part of the frame length.
1837 :     This required changing the stats file format (added a header+MV
1838 :     length field) and the xvid_plg_data_t structure (binary compatible).
1839 :     * Overflow improvement and degradation set to 10% instead of 60%
1840 :     Assymetric values may help...
1841 :     * Some cleanup work done on the encoder part of the API header.
1842 :    
1843 :     NB: plg data struct will be cleaned up before 1.0 so if you rely on it
1844 :     please read the header file to know which part will disappear.
1845 :    
1846 :     modified files:
1847 :     src/encoder.c src/plugins/plugin_2pass1.c
1848 :     src/plugins/plugin_2pass2.c src/xvid.h
1849 :    
1850 :    
1851 :     2003-12-17 13:53:34 GMT patch-140
1852 :    
1853 :     Summary:
1854 :     VOL flags fix.
1855 :     Revision:
1856 :     xvidcore--devapi4--1.0--patch-140
1857 :    
1858 :     From sysKin:
1859 :     * VOL flags updated as they should
1860 :    
1861 :     modified files:
1862 :     src/encoder.c
1863 :    
1864 :    
1865 :     2003-12-17 11:07:15 GMT patch-139
1866 :    
1867 :     Summary:
1868 :     VFW GUI Update.
1869 :     Revision:
1870 :     xvidcore--devapi4--1.0--patch-139
1871 :    
1872 :     From Koepi:
1873 :     * typo in GMC description
1874 :     * Added AR widget (experimental)
1875 :    
1876 :     modified files:
1877 :     vfw/src/codec.c vfw/src/config.c vfw/src/config.h
1878 :     vfw/src/resource.rc
1879 :    
1880 :    
1881 :     2003-12-14 12:44:36 GMT patch-138
1882 :    
1883 :     Summary:
1884 :     Fix PP crash
1885 :     Revision:
1886 :     xvidcore--devapi4--1.0--patch-138
1887 :    
1888 :     Fix PP crash
1889 :    
1890 :    
1891 :     modified files:
1892 :     src/decoder.c
1893 :    
1894 :    
1895 :     2003-12-14 12:43:21 GMT patch-137
1896 :    
1897 :     Summary:
1898 :     Texture bit counting for bframes
1899 :     Revision:
1900 :     xvidcore--devapi4--1.0--patch-137
1901 :    
1902 :     Texture bit counting for bframes
1903 :    
1904 :    
1905 :     modified files:
1906 :     src/bitstream/mbcoding.c
1907 :    
1908 :    
1909 :     2003-12-12 23:58:18 GMT patch-136
1910 :    
1911 :     Summary:
1912 :     SSE2 code enabled.
1913 :     Revision:
1914 :     xvidcore--devapi4--1.0--patch-136
1915 :    
1916 :     * SSE2 code enabled by default (only sane ones, _no_ idct)
1917 :     * Aligned data in xvid_bench to avoid crashes with SSE2 code
1918 :     because of unaligned read accesses.
1919 :    
1920 :     modified files:
1921 :     examples/xvid_bench.c src/xvid.c
1922 :    
1923 :    
1924 :     2003-12-12 22:50:33 GMT patch-135
1925 :    
1926 :     Summary:
1927 :     DShow update.
1928 :     Revision:
1929 :     xvidcore--devapi4--1.0--patch-135
1930 :    
1931 :     From michael (from nic):
1932 :     * Dshow updates (colorspace etc...)
1933 :     * Deblocking option.
1934 :    
1935 :     modified files:
1936 :     dshow/src/CAbout.cpp dshow/src/CAbout.h
1937 :     dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
1938 :     dshow/src/resource.h dshow/src/xvid.ax.rc
1939 :    
1940 :    
1941 :     2003-12-12 14:18:13 GMT patch-134
1942 :    
1943 :     Summary:
1944 :     Added missing postproc init
1945 :     Revision:
1946 :     xvidcore--devapi4--1.0--patch-134
1947 :    
1948 :     Added missing postproc init
1949 :    
1950 :    
1951 :     modified files:
1952 :     src/xvid.c
1953 :    
1954 :    
1955 :     2003-12-12 14:16:29 GMT patch-133
1956 :    
1957 :     Summary:
1958 :     YUV space clarifications and fix.
1959 :     Revision:
1960 :     xvidcore--devapi4--1.0--patch-133
1961 :    
1962 :     From christoph:
1963 :     * Put some comments
1964 :     * fixed UV swapping in USER case.
1965 :    
1966 :     modified files:
1967 :     src/image/image.c
1968 :    
1969 :    
1970 :     2003-12-12 14:01:52 GMT patch-132
1971 :    
1972 :     Summary:
1973 :     Default compilation flags change.
1974 :     Revision:
1975 :     xvidcore--devapi4--1.0--patch-132
1976 :    
1977 :     from christoph:
1978 :     - -fgcse was causing trouble on Suse9 gcc
1979 :     - -01->-02
1980 :    
1981 :     modified files:
1982 :     build/generic/configure.in
1983 :    
1984 :    
1985 :     2003-12-12 13:43:35 GMT patch-131
1986 :    
1987 :     Summary:
1988 :     Pixel Aspect Ratio support improvement.
1989 :     Revision:
1990 :     xvidcore--devapi4--1.0--patch-131
1991 :    
1992 :     * 1:1 VGA is default now (old behavior)
1993 :     * When passed EXT PAR type, we now (try to) sanityse the
1994 :     par_width/par_height value:
1995 :     - make it positive
1996 :     - using 0 (typical memset reseting) defaults to 1
1997 :     - simplify the PAR (using gcd)
1998 :     - then range it in [1..255] (can be lossy)
1999 :     * Specify valid range in API header
2000 :    
2001 :     Bitstream version bumped to 24.
2002 :    
2003 :     PS: this patch supersedes sysKin's one in CVS.
2004 :    
2005 :     modified files:
2006 :     src/encoder.c src/xvid.h
2007 :    
2008 :    
2009 :     2003-12-10 22:57:50 GMT patch-130
2010 :    
2011 :     Summary:
2012 :     xvid_decraw cmdline changes.
2013 :     Revision:
2014 :     xvidcore--devapi4--1.0--patch-130
2015 :    
2016 :     * -nframes -> -frames (why did i put a 'n' there ?)
2017 :     * -save changed its meaning, it now controls per frame Elementary
2018 :     Stream saving.
2019 :     * -o string is now independent from -save.
2020 :    
2021 :     So now it's possible to save both a ES file per frame + a ES file for the
2022 :     sequence.
2023 :    
2024 :     modified files:
2025 :     examples/xvid_encraw.c
2026 :    
2027 :    
2028 :     2003-12-10 15:08:20 GMT patch-129
2029 :    
2030 :     Summary:
2031 :     Decoder bugfixes.
2032 :     Revision:
2033 :     xvidcore--devapi4--1.0--patch-129
2034 :    
2035 :     From syskin:
2036 :     * bvops MBs were going banana from time to time because they were
2037 :     referencing wrong future ref MBs.
2038 :     * decoder now informs the client app about bvop lag, returning
2039 :     XVID_TYPE_NOTHING, up to the client app to display (or not)
2040 :     the bvop lag frame (black with error message).
2041 :    
2042 :     Fixing previous patch a bit:
2043 :     * added $Id: ChangeLog-1.0,v 1.1 2004-07-10 17:39:05 edgomez Exp $ fields
2044 :     * Fixed copyright
2045 :    
2046 :     modified files:
2047 :     dshow/src/CXvidDecoder.cpp src/decoder.c
2048 :     src/image/postprocessing.c src/image/postprocessing.h
2049 :    
2050 :    
2051 :     2003-12-10 14:53:58 GMT patch-128
2052 :    
2053 :     Summary:
2054 :     Deblocking code.
2055 :     Revision:
2056 :     xvidcore--devapi4--1.0--patch-128
2057 :    
2058 :     Patch from michael:
2059 :     * added deblocking code
2060 :    
2061 :     Merge work:
2062 :     * Added postprocessing.[ch] to project files
2063 :     * added #include "image/postprocessing.h" directive in decoder.c
2064 :     * new lines missing (gcc is so pedantic)
2065 :    
2066 :     NB: slice rendering + postprocessing is impossible. Slice rendering is
2067 :     somewhat abandoned.
2068 :    
2069 :     new files:
2070 :     src/image/.arch-ids/postprocessing.c.id
2071 :     src/image/.arch-ids/postprocessing.h.id
2072 :     src/image/postprocessing.c src/image/postprocessing.h
2073 :    
2074 :     modified files:
2075 :     build/generic/sources.inc build/win32/libxvidcore.dsp
2076 :     src/decoder.c src/xvid.h
2077 :    
2078 :    
2079 :     2003-12-08 18:33:26 GMT patch-127
2080 :    
2081 :     Summary:
2082 :     Don't read out of bounds
2083 :     Revision:
2084 :     xvidcore--devapi4--1.0--patch-127
2085 :    
2086 :     Don't read out of bounds
2087 :    
2088 :    
2089 :     modified files:
2090 :     src/plugins/plugin_2pass2.c
2091 :    
2092 :    
2093 :     2003-12-08 18:31:41 GMT patch-126
2094 :    
2095 :     Summary:
2096 :     Macroblock structure cleanup
2097 :     Revision:
2098 :     xvidcore--devapi4--1.0--patch-126
2099 :    
2100 :     Macroblock structure cleanup
2101 :    
2102 :    
2103 :     modified files:
2104 :     src/global.h
2105 :    
2106 :    
2107 :     2003-12-07 15:09:41 GMT patch-125
2108 :    
2109 :     Summary:
2110 :     Small fixes.
2111 :     Revision:
2112 :     xvidcore--devapi4--1.0--patch-125
2113 :    
2114 :     From gruel:
2115 :     * xvid.h: Minor color space correction.
2116 :    
2117 :     From sysKin:
2118 :     * codec.c: Zones fix
2119 :    
2120 :     modified files:
2121 :     src/xvid.h vfw/src/codec.c
2122 :    
2123 :    
2124 :     2003-12-07 14:57:14 GMT patch-124
2125 :    
2126 :     Summary:
2127 :     HUGE file handling in twopass.
2128 :     Revision:
2129 :     xvidcore--devapi4--1.0--patch-124
2130 :    
2131 :     Because of a lacking cast, two pass did not handle well some very
2132 :     large target size (bitrate mode is not affected).
2133 :    
2134 :     It should now be safe specifying target sizes up to 2^31kB which
2135 :     represents 2TB. Someone using XviD in studios ? ;-)
2136 :    
2137 :     modified files:
2138 :     src/plugins/plugin_2pass2.c
2139 :    
2140 :     #########################################################################
2141 :     # 1.0.0 beta2 (Bitstream Version 23)
2142 :     #########################################################################
2143 :    
2144 :     2003-12-05 14:43:53 GMT patch-123
2145 :    
2146 :     Summary:
2147 :     Marking 1.0.0 Beta2
2148 :     Revision:
2149 :     xvidcore--devapi4--1.0--patch-123
2150 :    
2151 :     Marking 1.0.0 Beta2
2152 :    
2153 :    
2154 :     modified files:
2155 :     ChangeLog TODO build/generic/configure.in
2156 :    
2157 :    
2158 :     2003-12-05 14:35:22 GMT patch-122
2159 :    
2160 :     Summary:
2161 :     Cap quants correctly (the best we can at least)
2162 :     Revision:
2163 :     xvidcore--devapi4--1.0--patch-122
2164 :    
2165 :     Cap quants correctly (the best we can at least)
2166 :    
2167 :    
2168 :     modified files:
2169 :     src/plugins/plugin_single.c
2170 :    
2171 :    
2172 :     2003-12-05 14:33:48 GMT patch-121
2173 :    
2174 :     Summary:
2175 :     Small glitch
2176 :     Revision:
2177 :     xvidcore--devapi4--1.0--patch-121
2178 :    
2179 :     Small glitch
2180 :    
2181 :    
2182 :     modified files:
2183 :     src/motion/vop_type_decision.c
2184 :    
2185 :    
2186 :     2003-12-05 14:06:19 GMT patch-120
2187 :    
2188 :     Summary:
2189 :     KFthresholding changes.
2190 :     Revision:
2191 :     xvidcore--devapi4--1.0--patch-120
2192 :    
2193 :     As user reports proved, the logic behind the min_key_interval was
2194 :     1/ misleading because the parameter is kfthreshold indeed and not
2195 :     a minimum keyframe interval
2196 :     2/ the formula was a bit too aggressive (removing 20% of bitrate
2197 :     per frame until distance to next iframe was 1)
2198 :    
2199 :     I posted a RFC to try to settle a decision on what behavior this
2200 :     setting should have. We have still have no clear answer so i prefer
2201 :     just fixing the misleading name right now and wait for a common
2202 :     position about its behavior later.
2203 :    
2204 :     Libraries are *binary* compatible, but *source code* compatibility
2205 :     is broken (rename rc_2pass2_t->min_key_interval to kfthreshold).
2206 :     This is probably the last API change.
2207 :    
2208 :     NB: fixes a type problem during scaling parameter computing which
2209 :     was causing insane pb_iboost_tax_ratio values.
2210 :    
2211 :     modified files:
2212 :     src/plugins/plugin_2pass2.c src/xvid.h vfw/src/codec.c
2213 :     vfw/src/config.c vfw/src/config.h
2214 :    
2215 :    
2216 :     2003-12-05 00:20:28 GMT patch-119
2217 :    
2218 :     Summary:
2219 :     ivop decision tuning.
2220 :     Revision:
2221 :     xvidcore--devapi4--1.0--patch-119
2222 :    
2223 :     ivop decision tuning from sysKin.
2224 :    
2225 :     modified files:
2226 :     src/motion/vop_type_decision.c
2227 :    
2228 :    
2229 :     2003-12-03 18:55:29 GMT patch-118
2230 :    
2231 :     Summary:
2232 :     VOSH header always written.
2233 :     Revision:
2234 :     xvidcore--devapi4--1.0--patch-118
2235 :    
2236 :     * profile is set to sane default value in BitstreamWriteVolHeaders
2237 :     * VOSH is now always written (note that the ending code is never
2238 :     written)
2239 :     * doubled variable removed from bvop estimation file.
2240 :    
2241 :     bitstream version set to 23
2242 :     Version 22 was used in CVS by a fix from michael for VOSH, it was just
2243 :     lacking the sane default value setting when profile is 0x00 from user.
2244 :     0x00 is a reserved profile ID in the spec so it wasn't making much sense
2245 :     to write 0x00.
2246 :    
2247 :     modified files:
2248 :     src/bitstream/bitstream.c src/motion/estimation_bvop.c
2249 :     src/xvid.h
2250 :    
2251 :    
2252 :     2003-12-03 15:29:30 GMT patch-117
2253 :    
2254 :     Summary:
2255 :     VFW GUI fixes.
2256 :     Revision:
2257 :     xvidcore--devapi4--1.0--patch-117
2258 :    
2259 :     min key was misleading because it was legacy code from dev-api-3.
2260 :    
2261 :     modified files:
2262 :     vfw/src/codec.c vfw/src/config.c vfw/src/resource.rc
2263 :    
2264 :    
2265 :     2003-12-03 15:22:25 GMT patch-116
2266 :    
2267 :     Summary:
2268 :     ME fixes.
2269 :     Revision:
2270 :     xvidcore--devapi4--1.0--patch-116
2271 :    
2272 :     From syskin:
2273 :     - small typo in chroma sad reset
2274 :     - code tweaking
2275 :     + adv diamond search used intead of mainsearch
2276 :     + and some other stuff
2277 :     - thresholds tuned.
2278 :    
2279 :     modified files:
2280 :     src/motion/estimation.h src/motion/estimation_bvop.c
2281 :     src/motion/estimation_pvop.c
2282 :    
2283 :    
2284 :     2003-12-01 11:17:20 GMT patch-115
2285 :    
2286 :     Summary:
2287 :     Small changes and interlacing bugfix.
2288 :     Revision:
2289 :     xvidcore--devapi4--1.0--patch-115
2290 :    
2291 :     * Interlacing bugfix, code got swapped in a very old patch
2292 :     (back in March)
2293 :     * xvid_encraw forces VOSH writing.
2294 :     * VFW GUI fixes.
2295 :    
2296 :     modified files:
2297 :     examples/Makefile examples/xvid_encraw.c
2298 :     src/utils/mbtransquant.c vfw/src/config.c vfw/src/resource.rc
2299 :    
2300 :    
2301 :     2003-11-30 15:47:41 GMT patch-114
2302 :    
2303 :     Summary:
2304 :     Thread safe MPEG4 quantization functions + xvid_bench update
2305 :     Revision:
2306 :     xvidcore--devapi4--1.0--patch-114
2307 :    
2308 :     * Thread safe MPEG4 quantization functions.
2309 :     Cleaned up version of patch provided by Michael
2310 :     - fixed compiling problems on gcc
2311 :     - added const qualifiers every where it was possible to help C compiler
2312 :     optimization.
2313 :     - added the mpeg_quant_matrices param to all ASM function prototype
2314 :     in comments (even if it's not used, that shows we do it deliberatly)
2315 :     - forces m[intra][0][0] = 8, otherwise XviD could write invalid streams.
2316 :     * Added real CRC computing in xvid_bench.c
2317 :    
2318 :     modified files:
2319 :     TODO examples/xvid_bench.c src/bitstream/bitstream.c
2320 :     src/decoder.c src/decoder.h src/encoder.c src/encoder.h
2321 :     src/motion/estimation.h src/motion/estimation_pvop.c
2322 :     src/motion/estimation_rd_based.c src/quant/quant.h
2323 :     src/quant/quant_h263.c src/quant/quant_matrix.c
2324 :     src/quant/quant_matrix.h src/quant/quant_mpeg.c
2325 :     src/quant/x86_asm/quantize_h263_3dne.asm
2326 :     src/quant/x86_asm/quantize_h263_mmx.asm
2327 :     src/quant/x86_asm/quantize_mpeg_mmx.asm
2328 :     src/quant/x86_asm/quantize_mpeg_xmm.asm
2329 :     src/utils/mbtransquant.c src/xvid.c
2330 :    
2331 :    
2332 :     2003-11-29 18:10:25 GMT patch-113
2333 :    
2334 :     Summary:
2335 :     Fixed csp asm rules for real?
2336 :     Revision:
2337 :     xvidcore--devapi4--1.0--patch-113
2338 :    
2339 :     Fixed csp asm rules for real?
2340 :    
2341 :    
2342 :     modified files:
2343 :     build/win32/libxvidcore.dsp
2344 :    
2345 :    
2346 :     2003-11-29 17:58:09 GMT patch-112
2347 :    
2348 :     Summary:
2349 :     TODO/ChangeLog updated
2350 :     Revision:
2351 :     xvidcore--devapi4--1.0--patch-112
2352 :    
2353 :     TODO/ChangeLog updated
2354 :    
2355 :    
2356 :     modified files:
2357 :     ChangeLog TODO
2358 :    
2359 :    
2360 :     #########################################################################
2361 :     # 1.0.0 beta1 (Bitstream Version 21)
2362 :     #########################################################################
2363 :    
2364 :     2003-11-29 17:21:08 GMT patch-111
2365 :    
2366 :     Summary:
2367 :     First beta marking
2368 :     Revision:
2369 :     xvidcore--devapi4--1.0--patch-111
2370 :    
2371 :     First beta marking
2372 :    
2373 :    
2374 :     modified files:
2375 :     build/generic/configure.in src/xvid.c src/xvid.h
2376 :    
2377 :    
2378 :     2003-11-29 16:59:14 GMT patch-110
2379 :    
2380 :     Summary:
2381 :     Catching up with CVS.
2382 :     Revision:
2383 :     xvidcore--devapi4--1.0--patch-110
2384 :    
2385 :     Changes from sysKin:
2386 :     * dquant optimization.
2387 :     * CBR fix
2388 :    
2389 :     modified files:
2390 :     src/encoder.c src/plugins/plugin_single.c
2391 :    
2392 :    
2393 :     2003-11-24 22:05:38 GMT patch-109
2394 :    
2395 :     Summary:
2396 :     Big level handling in trellis.
2397 :     Revision:
2398 :     xvidcore--devapi4--1.0--patch-109
2399 :    
2400 :     Trellis was treating big levels exactly the same way as lower ones.
2401 :     In some cases, trellis was doing wild optimizations favoring a 0
2402 :     because the distortion introduced by that big coeff change was acceptable.
2403 :     But visually this could result in some nasty blocks with wrong chroma
2404 :     information or similar brutal changes in other planes as well.
2405 :    
2406 :     Skal added big levels handling where trellis just tries to minimize
2407 :     the cost varying the run value only. No level modification is done
2408 :     anymore.
2409 :    
2410 :     modified files:
2411 :     TODO src/utils/mbtransquant.c
2412 :    
2413 :    
2414 :     2003-11-23 16:42:55 GMT patch-108
2415 :    
2416 :     Summary:
2417 :     Trellis for MPEG.
2418 :     Revision:
2419 :     xvidcore--devapi4--1.0--patch-108
2420 :    
2421 :     * Added trellis support for MPEg quantization type.
2422 :     * Changed RD fixed point precision, should help avoiding overflow
2423 :     (see the constant TL_SHIFT)
2424 :    
2425 :     NB: we still have some problems when trellis optimizes DC for big DC
2426 :     values.
2427 :    
2428 :     modified files:
2429 :     src/utils/mbtransquant.c
2430 :    
2431 :    
2432 :     2003-11-22 00:53:59 GMT patch-107
2433 :    
2434 :     Summary:
2435 :     Win32 lib project fix (bis)
2436 :     Revision:
2437 :     xvidcore--devapi4--1.0--patch-107
2438 :    
2439 :     * nasm >= 0.98.37 support in project file got reverted in a previous
2440 :     patch, push it back. Nota bene /O3 changed to /O2 for proper
2441 :     compilation with msvc compiler (everyone is not supposed to compile
2442 :     stuff with icc)
2443 :     * TODO update.
2444 :    
2445 :     modified files:
2446 :     TODO build/win32/libxvidcore.dsp
2447 :    
2448 :    
2449 :     2003-11-19 21:26:34 GMT patch-106
2450 :    
2451 :     Summary:
2452 :     updated bench crc
2453 :     Revision:
2454 :     xvidcore--devapi4--1.0--patch-106
2455 :    
2456 :     updated bench crc
2457 :    
2458 :    
2459 :     modified files:
2460 :     examples/xvid_bench.c
2461 :    
2462 :    
2463 :     2003-11-19 16:00:00 GMT patch-105
2464 :    
2465 :     Summary:
2466 :     Lumimasking fixes.
2467 :     Revision:
2468 :     xvidcore--devapi4--1.0--patch-105
2469 :    
2470 :     from sysKin:
2471 :     * New plugin hook entry XVID_PLG_FRAME that happens inside FrameCodeIPB
2472 :     when both type and quant are known. Added hook handling in all plugins.
2473 :     * Fixed lumimasking.
2474 :    
2475 :     from me:
2476 :     * small reverse commit in pvop estimation fixed.
2477 :    
2478 :     modified files:
2479 :     src/bitstream/bitstream.c src/bitstream/bitstream.h
2480 :     src/encoder.c src/motion/estimation_pvop.c
2481 :     src/plugins/plugin_2pass1.c src/plugins/plugin_2pass2.c
2482 :     src/plugins/plugin_dump.c src/plugins/plugin_lumimasking.c
2483 :     src/plugins/plugin_psnr.c src/plugins/plugin_single.c
2484 :     src/xvid.h
2485 :    
2486 :    
2487 :     2003-11-19 15:37:16 GMT patch-104
2488 :    
2489 :     Summary:
2490 :     Removed indirections from SearchData structure.
2491 :     Revision:
2492 :     xvidcore--devapi4--1.0--patch-104
2493 :    
2494 :     Patch from sysKin:
2495 :     * removed indirections in SearchData structure. CheckCandidate functions
2496 :     don't use a const SearchData pointer anymore, but they should be a bit
2497 :     faster because of the less numerous indirections.
2498 :    
2499 :     modified files:
2500 :     src/motion/estimation.h src/motion/estimation_bvop.c
2501 :     src/motion/estimation_common.c src/motion/estimation_gmc.c
2502 :     src/motion/estimation_pvop.c src/motion/estimation_rd_based.c
2503 :     src/motion/vop_type_decision.c
2504 :    
2505 :    
2506 :     2003-11-19 15:33:55 GMT patch-103
2507 :    
2508 :     Summary:
2509 :     Formula error in twopass code.
2510 :     Revision:
2511 :     xvidcore--devapi4--1.0--patch-103
2512 :    
2513 :     The reversing bframe formula in 2pass 2 was not right. This was in fact
2514 :     a test code i used when i was maintaining the code on its own branch.
2515 :     I should not have commited it :\
2516 :    
2517 :     Fixed :-)
2518 :    
2519 :     modified files:
2520 :     src/plugins/plugin_2pass2.c
2521 :    
2522 :    
2523 :     2003-11-18 21:41:08 GMT patch-102
2524 :    
2525 :     Summary:
2526 :     Another problem with mis/unitialized reads.
2527 :     Revision:
2528 :     xvidcore--devapi4--1.0--patch-102
2529 :    
2530 :     Michael introduced a fast subpel refine that uses a (iMinSAD2, currentQMV2)
2531 :     couple of data. The problem is that he plugged this in CheckCandidate16_qpel
2532 :     that is used outside this context, thus a if statement was traversed with
2533 :     garbage data in the standard subpel case. For perfection sake, using a
2534 :     iMinSAD=256*4096 value collects correct data even if it will not be used in
2535 :     the normal subpel case.
2536 :    
2537 :     modified files:
2538 :     src/motion/estimation_pvop.c
2539 :    
2540 :    
2541 :     2003-11-16 17:29:39 GMT patch-101
2542 :    
2543 :     Summary:
2544 :     The MEanalysis patch assumed bvops were always used
2545 :     Revision:
2546 :     xvidcore--devapi4--1.0--patch-101
2547 :    
2548 :     The MEanalysis patch assumed bvops were always used
2549 :    
2550 :    
2551 :     modified files:
2552 :     src/encoder.c
2553 :    
2554 :    
2555 :     2003-11-16 15:12:15 GMT patch-100
2556 :    
2557 :     Summary:
2558 :     MEanalysis using wrong mvs + bframe search using wrong mvs
2559 :     Revision:
2560 :     xvidcore--devapi4--1.0--patch-100
2561 :    
2562 :     Valgrind reported lot of unitialized reads. These unitialized reads
2563 :     helped sysKin finding three bugs:
2564 :     - ZeroMacroblock did not reset the cbp field. So for some skipped
2565 :     blocks, a test was done on the cbp value...
2566 :     - MEanalysis was using wrong mvs from the current bvop (unitialized
2567 :     or just wrong in current context). That's because in devapi3, bframes
2568 :     used to share the same mvs array wheras now, it's one array a bvop.
2569 :     - Collocated skipped MBs for a bvop didn't reset mvs[0] and b_mvs[0].
2570 :    
2571 :     modified files:
2572 :     src/encoder.c src/motion/estimation_bvop.c src/motion/motion.h
2573 :     src/motion/motion_inlines.h src/motion/vop_type_decision.c
2574 :    
2575 :    
2576 :     2003-11-15 15:21:09 GMT patch-99
2577 :    
2578 :     Summary:
2579 :     Small fixes
2580 :     Revision:
2581 :     xvidcore--devapi4--1.0--patch-99
2582 :    
2583 :     Small fixes
2584 :    
2585 :    
2586 :     modified files:
2587 :     src/encoder.c src/motion/vop_type_decision.c
2588 :    
2589 :    
2590 :     2003-11-15 15:02:47 GMT patch-98
2591 :    
2592 :     Summary:
2593 :     DShow update + libxvidcore project file update
2594 :     Revision:
2595 :     xvidcore--devapi4--1.0--patch-98
2596 :    
2597 :     From peter:
2598 :     * DShow now links against libxvidcore.lib
2599 :     * Some updates to the libxvidcore project file
2600 :    
2601 :     modified files:
2602 :     TODO build/win32/libxvidcore.dsp dshow/dshow.dsp
2603 :     dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
2604 :    
2605 :    
2606 :     2003-11-15 01:51:28 GMT patch-97
2607 :    
2608 :     Summary:
2609 :     Small updates to doc files
2610 :     Revision:
2611 :     xvidcore--devapi4--1.0--patch-97
2612 :    
2613 :     Small updates to doc files
2614 :    
2615 :    
2616 :     modified files:
2617 :     AUTHORS CodingStyle TODO doc/INSTALL doc/README
2618 :    
2619 :     renamed files:
2620 :     .arch-ids/authors.txt.id
2621 :     ==> .arch-ids/AUTHORS.id
2622 :     .arch-ids/todo.txt.id
2623 :     ==> .arch-ids/TODO.id
2624 :     authors.txt
2625 :     ==> AUTHORS
2626 :     todo.txt
2627 :     ==> TODO
2628 :    
2629 :    
2630 :     2003-11-14 11:23:55 GMT patch-96
2631 :    
2632 :     Summary:
2633 :     Updated ChangeLog
2634 :     Revision:
2635 :     xvidcore--devapi4--1.0--patch-96
2636 :    
2637 :     Updated ChangeLog
2638 :    
2639 :    
2640 :     modified files:
2641 :     ChangeLog
2642 :    
2643 :    
2644 :     2003-11-13 23:09:34 GMT patch-95
2645 :    
2646 :     Summary:
2647 :     8x8 16bit Block SSE optimization.
2648 :     Revision:
2649 :     xvidcore--devapi4--1.0--patch-95
2650 :    
2651 :     MMXed the calculation of SSE for 8x8 16bit blocks. This helps quite
2652 :     a lot VHQ=4 mode.
2653 :    
2654 :     My tests show with trellis:chroma_me:
2655 :     - ~20% speed improvement for vhq=4.
2656 :     - at least 5% when using vhq=1.
2657 :    
2658 :     Of course this speedup vanishes if more CPU intensive features are used.
2659 :     CruNcher who used gmc/qpel, noticed "only" a ~5% speed improvement.
2660 :    
2661 :     NB: i'm of course talking about overall speed improvement. Such a small
2662 :     patch for such a big improvement :-)
2663 :    
2664 :     modified files:
2665 :     src/motion/estimation_rd_based.c src/motion/sad.c
2666 :     src/motion/sad.h src/motion/x86_asm/sad_mmx.asm src/xvid.c
2667 :    
2668 :    
2669 :     2003-11-13 22:34:33 GMT patch-94
2670 :    
2671 :     Summary:
2672 :     Various small bug fixes.
2673 :     Revision:
2674 :     xvidcore--devapi4--1.0--patch-94
2675 :    
2676 :     * encoder.c: GMC code fix in encoder.c. Now gmcval is initialized correctly
2677 :     when using GME.
2678 :     * xvid_decraw.c: Fix elementary stream output.
2679 :     * plugin_2pass2.c: Small parsing bug in stats reading in 2pass2.
2680 :     * decoder.c: Read resync markers in bframes.
2681 :    
2682 :     modified files:
2683 :     examples/xvid_decraw.c src/decoder.c src/encoder.c
2684 :     src/plugins/plugin_2pass2.c
2685 :    
2686 :    
2687 :     2003-11-11 16:24:05 GMT patch-93
2688 :    
2689 :     Summary:
2690 :     VFW update for overflow control
2691 :     Revision:
2692 :     xvidcore--devapi4--1.0--patch-93
2693 :    
2694 :     From Koepi.
2695 :     * Added widget and code for overflow control strength.
2696 :     * Removed widgets for payback options and kfthresholds.
2697 :     * Activated frame stats in DebugOutputView all the time.
2698 :    
2699 :     From me:
2700 :     * Activated static motion detection in cartoon mode.
2701 :    
2702 :     modified files:
2703 :     vfw/src/codec.c vfw/src/config.c vfw/src/resource.h
2704 :     vfw/src/resource.rc
2705 :    
2706 :    
2707 :     2003-11-09 20:47:47 GMT patch-92
2708 :    
2709 :     Summary:
2710 :     New two pass code.
2711 :     Revision:
2712 :     xvidcore--devapi4--1.0--patch-92
2713 :    
2714 :     New two pass code. I may say it's just a fixed version, though it looks
2715 :     more like a "take all the ideas and write it again" version. It performs
2716 :     better with all natural sequences i have and a bit worse with anime.
2717 :    
2718 :     Including it now, allow me improving the code during the beta releases.
2719 :    
2720 :     modified files:
2721 :     src/encoder.c src/plugins/plugin_2pass1.c
2722 :     src/plugins/plugin_2pass2.c src/xvid.h vfw/src/codec.c
2723 :     vfw/src/config.c vfw/src/config.h
2724 :    
2725 :    
2726 :     2003-11-09 17:07:16 GMT patch-91
2727 :    
2728 :     Summary:
2729 :     Fixes for bframe compensation (used in psnr tests).
2730 :     Revision:
2731 :     xvidcore--devapi4--1.0--patch-91
2732 :    
2733 :     * transfer_8to16_sub2_(c|mmx|xmm|3dne) write back the compensated
2734 :     result to current frame pointer.
2735 :     * transfer_8to16_sub2_mmx uses proper rounding (a+b+1)/2. The +1
2736 :     operation was missing.
2737 :     * Blocks skipped in bframes must be compensated for psnr computing.
2738 :    
2739 :     modified files:
2740 :     src/encoder.c src/motion/estimation_bvop.c
2741 :     src/utils/mem_transfer.c
2742 :     src/utils/x86_asm/mem_transfer_3dne.asm
2743 :     src/utils/x86_asm/mem_transfer_mmx.asm
2744 :    
2745 :    
2746 :     2003-11-05 16:05:44 GMT patch-90
2747 :    
2748 :     Summary:
2749 :     Speed improvement not wasting setedges and interpolate calls.
2750 :     Revision:
2751 :     xvidcore--devapi4--1.0--patch-90
2752 :    
2753 :     Patch from syskin.
2754 :    
2755 :     * This patch avoids calling setedges and interpolate for uneeded cases:
2756 :     - setedges is only called once per frame.
2757 :     - interpolate is called only when the previous rounding
2758 :     was different from the one needed.
2759 :     * Interpolation has been optimized a bit for qpel case, we do the
2760 :     hv pass down to top to use the cache more efficiently (hope so).
2761 :    
2762 :     modified files:
2763 :     src/encoder.c src/encoder.h src/image/image.c
2764 :    
2765 :    
2766 :     2003-11-03 19:51:12 GMT patch-89
2767 :    
2768 :     Summary:
2769 :     SSE2 dev16 fix + xvid_bench DCT block alignments.
2770 :     Revision:
2771 :     xvidcore--devapi4--1.0--patch-89
2772 :    
2773 :     * Small error fixed by Skal in his dev16 code (missing pshufd).
2774 :     * Blocks used by DCT tests are now aligned with DECLARE_ALIGNED_MATRIX
2775 :     this avoids the well know segfaults when using SSE2 instructions that
2776 :     suppose data alignment.
2777 :    
2778 :     modified files:
2779 :     examples/xvid_bench.c src/motion/x86_asm/sad_sse2.asm
2780 :    
2781 :    
2782 :     2003-11-03 15:42:23 GMT patch-88
2783 :    
2784 :     Summary:
2785 :     Align .rodata section for non coff objects
2786 :     Revision:
2787 :     xvidcore--devapi4--1.0--patch-88
2788 :    
2789 :     Align .rodata section for non coff objects
2790 :    
2791 :    
2792 :     modified files:
2793 :     src/bitstream/x86_asm/cbp_mmx.asm
2794 :     src/bitstream/x86_asm/cbp_sse2.asm
2795 :     src/dct/x86_asm/fdct_mmx_ffmpeg.asm
2796 :     src/dct/x86_asm/fdct_mmx_skal.asm
2797 :     src/dct/x86_asm/fdct_sse2_skal.asm
2798 :     src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
2799 :     src/dct/x86_asm/idct_sse2_dmitry.asm
2800 :     src/dct/x86_asm/simple_idct_mmx.asm
2801 :     src/image/x86_asm/colorspace_rgb_mmx.asm
2802 :     src/image/x86_asm/colorspace_yuyv_mmx.asm
2803 :     src/image/x86_asm/interpolate8x8_3dn.asm
2804 :     src/image/x86_asm/interpolate8x8_3dne.asm
2805 :     src/image/x86_asm/interpolate8x8_mmx.asm
2806 :     src/image/x86_asm/interpolate8x8_xmm.asm
2807 :     src/image/x86_asm/qpel_mmx.asm
2808 :     src/image/x86_asm/reduced_mmx.asm
2809 :     src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
2810 :     src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
2811 :     src/motion/x86_asm/sad_xmm.asm
2812 :     src/quant/x86_asm/quantize_h263_3dne.asm
2813 :     src/quant/x86_asm/quantize_h263_mmx.asm
2814 :     src/quant/x86_asm/quantize_mpeg_mmx.asm
2815 :     src/quant/x86_asm/quantize_mpeg_xmm.asm
2816 :     src/utils/x86_asm/cpuid.asm
2817 :     src/utils/x86_asm/interlacing_mmx.asm
2818 :     src/utils/x86_asm/mem_transfer_3dne.asm
2819 :    
2820 :    
2821 :     2003-11-02 23:01:43 GMT patch-87
2822 :    
2823 :     Summary:
2824 :     SSE2 update
2825 :     Revision:
2826 :     xvidcore--devapi4--1.0--patch-87
2827 :    
2828 :     * Added Dmitry SSE2 iDCT code back.
2829 :     * Plugged Dmitry iDCT as default for SSE2
2830 :     * Fixed a bug in xvid_bench that was making it would test some CPU
2831 :     instruction set w/o host CPU support. xvidcore init was simply
2832 :     discarding irrelevant cpu flags.
2833 :    
2834 :     new files:
2835 :     src/dct/x86_asm/.arch-ids/idct_sse2_dmitry.asm.id
2836 :     src/dct/x86_asm/idct_sse2_dmitry.asm
2837 :    
2838 :     modified files:
2839 :     build/generic/sources.inc build/win32/libxvidcore.dsp
2840 :     examples/xvid_bench.c src/dct/fdct.h src/dct/idct.h src/xvid.c
2841 :    
2842 :    
2843 :     2003-10-31 14:53:26 GMT patch-86
2844 :    
2845 :     Summary:
2846 :     Better handling of old windres versions + GNU make dependency.
2847 :     Revision:
2848 :     xvidcore--devapi4--1.0--patch-86
2849 :    
2850 :     Old versions of GNU windres (<2.14) don't have the same short options.
2851 :     But long options remain the same so it's better to use long option names
2852 :     to have ful compatibility with older versions.
2853 :    
2854 :     The Makefile appears to be dependent on GNU make because shell expansion
2855 :     for retrieving the path of the Makefile is wrong when using `` even with
2856 :     a single expansion assignment :=. It keeps being expanded when used.
2857 :    
2858 :     modified files:
2859 :     doc/INSTALL vfw/bin/Makefile
2860 :    
2861 :    
2862 :     2003-10-29 11:31:28 GMT patch-85
2863 :    
2864 :     Summary:
2865 :     Added sse2 f/iDCT code from skal
2866 :     Revision:
2867 :     xvidcore--devapi4--1.0--patch-85
2868 :    
2869 :     * Added sse2 f/iDCT code from skal
2870 :     * Added hooking in xvid.c
2871 :    
2872 :     new files:
2873 :     src/dct/x86_asm/.arch-ids/fdct_sse2_skal.asm.id
2874 :     src/dct/x86_asm/fdct_sse2_skal.asm
2875 :    
2876 :     modified files:
2877 :     build/generic/sources.inc build/win32/libxvidcore.dsp
2878 :     src/xvid.c
2879 :    
2880 :    
2881 :     2003-10-29 00:19:10 GMT patch-84
2882 :    
2883 :     Summary:
2884 :     Fix the static motion detection
2885 :     Revision:
2886 :     xvidcore--devapi4--1.0--patch-84
2887 :    
2888 :     Fix the static motion detection
2889 :    
2890 :    
2891 :     modified files:
2892 :     src/motion/estimation_pvop.c
2893 :    
2894 :    
2895 :     2003-10-28 23:39:46 GMT patch-83
2896 :    
2897 :     Summary:
2898 :     Added cartoon option handling.
2899 :     Revision:
2900 :     xvidcore--devapi4--1.0--patch-83
2901 :    
2902 :     Added cartoon widgets + handling code.
2903 :    
2904 :     NB: static motion detection is disabled because of crashes on P4
2905 :     cpus.
2906 :    
2907 :     modified files:
2908 :     vfw/src/codec.c vfw/src/config.c vfw/src/config.h
2909 :     vfw/src/resource.h vfw/src/resource.rc
2910 :    
2911 :    
2912 :     2003-10-28 17:44:09 GMT patch-82
2913 :    
2914 :     Summary:
2915 :     ASM cleanups;
2916 :     Revision:
2917 :     xvidcore--devapi4--1.0--patch-82
2918 :    
2919 :     * Applied same style to all asm files
2920 :     * Replaced current sad sse2 operators with skal's ones
2921 :     * Removed old and unused colorspace asm files
2922 :    
2923 :     removed files:
2924 :     src/image/x86_asm/.arch-ids/rgb_to_yv12_mmx.asm.id
2925 :     src/image/x86_asm/.arch-ids/yuv_to_yv12_mmx.asm.id
2926 :     src/image/x86_asm/.arch-ids/yuyv_to_yv12_mmx.asm.id
2927 :     src/image/x86_asm/.arch-ids/yv12_to_rgb24_mmx.asm.id
2928 :     src/image/x86_asm/.arch-ids/yv12_to_rgb32_mmx.asm.id
2929 :     src/image/x86_asm/.arch-ids/yv12_to_yuyv_mmx.asm.id
2930 :     src/image/x86_asm/rgb_to_yv12_mmx.asm
2931 :     src/image/x86_asm/yuv_to_yv12_mmx.asm
2932 :     src/image/x86_asm/yuyv_to_yv12_mmx.asm
2933 :     src/image/x86_asm/yv12_to_rgb24_mmx.asm
2934 :     src/image/x86_asm/yv12_to_rgb32_mmx.asm
2935 :     src/image/x86_asm/yv12_to_yuyv_mmx.asm
2936 :    
2937 :     modified files:
2938 :     build/generic/sources.inc src/bitstream/x86_asm/cbp_3dne.asm
2939 :     src/bitstream/x86_asm/cbp_mmx.asm
2940 :     src/bitstream/x86_asm/cbp_sse2.asm
2941 :     src/dct/x86_asm/fdct_mmx_ffmpeg.asm
2942 :     src/dct/x86_asm/fdct_mmx_skal.asm
2943 :     src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
2944 :     src/dct/x86_asm/simple_idct_mmx.asm
2945 :     src/image/x86_asm/colorspace_mmx.inc
2946 :     src/image/x86_asm/colorspace_rgb_mmx.asm
2947 :     src/image/x86_asm/colorspace_yuv_mmx.asm
2948 :     src/image/x86_asm/colorspace_yuyv_mmx.asm
2949 :     src/image/x86_asm/interpolate8x8_3dn.asm
2950 :     src/image/x86_asm/interpolate8x8_3dne.asm
2951 :     src/image/x86_asm/interpolate8x8_mmx.asm
2952 :     src/image/x86_asm/interpolate8x8_xmm.asm
2953 :     src/image/x86_asm/qpel_mmx.asm
2954 :     src/image/x86_asm/reduced_mmx.asm
2955 :     src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
2956 :     src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
2957 :     src/motion/x86_asm/sad_xmm.asm
2958 :     src/quant/x86_asm/quantize_h263_3dne.asm
2959 :     src/quant/x86_asm/quantize_h263_mmx.asm
2960 :     src/quant/x86_asm/quantize_mpeg_mmx.asm
2961 :     src/quant/x86_asm/quantize_mpeg_xmm.asm
2962 :     src/utils/x86_asm/cpuid.asm
2963 :     src/utils/x86_asm/interlacing_mmx.asm
2964 :     src/utils/x86_asm/mem_transfer_3dne.asm
2965 :     src/utils/x86_asm/mem_transfer_mmx.asm
2966 :    
2967 :    
2968 :     2003-10-27 01:13:47 GMT patch-81
2969 :    
2970 :     Summary:
2971 :     d_mv_bits speedup from sysKin
2972 :     Revision:
2973 :     xvidcore--devapi4--1.0--patch-81
2974 :    
2975 :     d_mv_bits speedup from sysKin
2976 :    
2977 :    
2978 :     modified files:
2979 :     src/motion/motion_inlines.h
2980 :    
2981 :    
2982 :     2003-10-27 00:55:51 GMT patch-80
2983 :    
2984 :     Summary:
2985 :     fDCT changes, new asm CodingStyle applied to dct dir
2986 :     Revision:
2987 :     xvidcore--devapi4--1.0--patch-80
2988 :    
2989 :     * Ported the ffmpeg fDCT functions (mmx and xmm).
2990 :     * Modified the skal's versions a bit to allow rolling loops.
2991 :     * Activated Skal's fDCTs (unrolled versions) for mmx _and_ xmm
2992 :     (old code was ignoring xmm versions)
2993 :     * Removed the SSE2 versions (they'll be back later)
2994 :     * .data -> .rodata
2995 :     * Applied announced asm CodingStyle to the dct dir
2996 :     (I'll have to add a section with the said CodingStyle)
2997 :    
2998 :     modified files:
2999 :     build/generic/sources.inc build/win32/libxvidcore.dsp
3000 :     src/dct/fdct.h src/dct/idct.h
3001 :     src/dct/x86_asm/fdct_mmx_ffmpeg.asm
3002 :     src/dct/x86_asm/fdct_mmx_skal.asm
3003 :     src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
3004 :     src/dct/x86_asm/simple_idct_mmx.asm src/xvid.c
3005 :    
3006 :     renamed files:
3007 :     src/dct/x86_asm/.arch-ids/fdct_mmx.asm.id
3008 :     ==> src/dct/x86_asm/.arch-ids/fdct_mmx_ffmpeg.asm.id
3009 :     src/dct/x86_asm/.arch-ids/fdct_xmm.asm.id
3010 :     ==> src/dct/x86_asm/.arch-ids/fdct_mmx_skal.asm.id
3011 :     src/dct/x86_asm/fdct_mmx.asm
3012 :     ==> src/dct/x86_asm/fdct_mmx_ffmpeg.asm
3013 :     src/dct/x86_asm/fdct_xmm.asm
3014 :     ==> src/dct/x86_asm/fdct_mmx_skal.asm
3015 :    
3016 :    
3017 :     2003-10-25 13:48:42 GMT patch-79
3018 :    
3019 :     Summary:
3020 :     BQuant->PQuant fix.
3021 :     Revision:
3022 :     xvidcore--devapi4--1.0--patch-79
3023 :    
3024 :     When using closed_gop, a BFrame before an IFrame is turned into a PFrame.
3025 :     Thus is original quant has to be computed back, a rounding was causing these
3026 :     frames to be orig_quant-1. As a consequence we had very big frames before
3027 :     the IFrame, loosing many bits for nearly no visual benefit.
3028 :    
3029 :     modified files:
3030 :     src/encoder.c
3031 :    
3032 :    
3033 :     2003-10-25 10:26:48 GMT patch-78
3034 :    
3035 :     Summary:
3036 :     Added closed gop option to xvid_encraw
3037 :     Revision:
3038 :     xvidcore--devapi4--1.0--patch-78
3039 :    
3040 :     Added closed gop option to xvid_encraw
3041 :    
3042 :    
3043 :     modified files:
3044 :     examples/xvid_encraw.c
3045 :    
3046 :    
3047 :     2003-10-24 17:39:53 GMT patch-77
3048 :    
3049 :     Summary:
3050 :     RD fixes.
3051 :     Revision:
3052 :     xvidcore--devapi4--1.0--patch-77
3053 :    
3054 :     Inter RD optimization relied on buggy functions to predict bitsize.
3055 :    
3056 :     modified files:
3057 :     src/motion/estimation_pvop.c src/motion/motion_inlines.h
3058 :    
3059 :    
3060 :     2003-10-22 15:48:01 GMT patch-76
3061 :    
3062 :     Summary:
3063 :     Small INSTALL update due to previous build patches.
3064 :     Revision:
3065 :     xvidcore--devapi4--1.0--patch-76
3066 :    
3067 :     Small INSTALL update due to previous build patches.
3068 :    
3069 :     modified files:
3070 :     doc/INSTALL
3071 :    
3072 :    
3073 :     2003-10-21 21:27:46 GMT patch-75
3074 :    
3075 :     Summary:
3076 :     Removed unused next_block vars.
3077 :     Revision:
3078 :     xvidcore--devapi4--1.0--patch-75
3079 :    
3080 :     Removed unused next_block vars.
3081 :    
3082 :     modified files:
3083 :     src/decoder.c
3084 :    
3085 :    
3086 :     2003-10-21 21:24:15 GMT patch-74
3087 :    
3088 :     Summary:
3089 :     VFW build changes.
3090 :     Revision:
3091 :     xvidcore--devapi4--1.0--patch-74
3092 :    
3093 :     The build system has been modified to look like the core lib one
3094 :     minus the configure system.
3095 :    
3096 :     modified files:
3097 :     vfw/bin/Makefile vfw/bin/sources.inc vfw/src/config.c
3098 :     vfw/vfw.dsp
3099 :    
3100 :     renamed files:
3101 :     vfw/bin/.arch-ids/Makefile.cygwin.id
3102 :     ==> vfw/bin/.arch-ids/Makefile.id
3103 :     vfw/bin/.arch-ids/Makefile.inc.id
3104 :     ==> vfw/bin/.arch-ids/sources.inc.id
3105 :     vfw/bin/Makefile.cygwin
3106 :     ==> vfw/bin/Makefile
3107 :     vfw/bin/Makefile.inc
3108 :     ==> vfw/bin/sources.inc
3109 :     vfw/src/.arch-ids/config.rc.id
3110 :     ==> vfw/src/.arch-ids/resource.rc.id
3111 :     vfw/src/config.rc
3112 :     ==> vfw/src/resource.rc
3113 :    
3114 :    
3115 :     2003-10-21 17:00:09 GMT patch-73
3116 :    
3117 :     Summary:
3118 :     Decoder cleanups and speedup
3119 :     Revision:
3120 :     xvidcore--devapi4--1.0--patch-73
3121 :    
3122 :     cleanups, speedups from sysKin
3123 :    
3124 :     modified files:
3125 :     src/decoder.c
3126 :    
3127 :    
3128 :     2003-10-21 16:22:15 GMT patch-72
3129 :    
3130 :     Summary:
3131 :     Build fixes for newer nasm versions.
3132 :     Revision:
3133 :     xvidcore--devapi4--1.0--patch-72
3134 :    
3135 :     nasm does not take care of adding trailing slashes to include paths.
3136 :     A patch to upstream authors has been refused because "the backslash()
3137 :     feature has been abandoned to get back to old nasm behavior"
3138 :    
3139 :     Their choice is kinda stupid as nasm is now open to user mistakes... :\
3140 :     So we fix that on ou side.
3141 :    
3142 :     modified files:
3143 :     build/generic/configure.in build/win32/libxvidcore.dsp
3144 :    
3145 :    
3146 :     2003-10-17 15:13:12 GMT patch-71
3147 :    
3148 :     Summary:
3149 :     Updated docs.
3150 :     Revision:
3151 :     xvidcore--devapi4--1.0--patch-71
3152 :    
3153 :     The doc of devapi4 is mostly out dated, i t is much better not to
3154 :     keep it in the repository at the moment. We'll add new docs later.
3155 :    
3156 :     Added a INSTALL doc that explains the build/install process for
3157 :     supported platforms. It's a first try, things may be added later.
3158 :    
3159 :     new files:
3160 :     doc/.arch-ids/INSTALL.id doc/INSTALL
3161 :    
3162 :     removed files:
3163 :     doc/.arch-ids/API.dox.id doc/.arch-ids/Makefile.id
3164 :     doc/.arch-ids/foot.inc.in.id doc/.arch-ids/header.tex.in.id
3165 :     doc/.arch-ids/xvid-decoding.txt.id
3166 :     doc/.arch-ids/xvid-encoder.txt.id doc/API.dox doc/Makefile
3167 :     doc/foot.inc.in doc/header.tex.in doc/xvid-decoding.txt
3168 :     doc/xvid-encoder.txt
3169 :    
3170 :     modified files:
3171 :     CodingStyle README doc/README
3172 :    
3173 :     renamed files:
3174 :     .arch-ids/README.txt.id
3175 :     ==> .arch-ids/README.id
3176 :     .arch-ids/changelog.txt.id
3177 :     ==> .arch-ids/ChangeLog.id
3178 :     README.txt
3179 :     ==> README
3180 :     changelog.txt
3181 :     ==> ChangeLog
3182 :    
3183 :    
3184 :     2003-10-15 13:53:11 GMT patch-70
3185 :    
3186 :     Summary:
3187 :     Better cross compilation handling.
3188 :     Revision:
3189 :     xvidcore--devapi4--1.0--patch-70
3190 :    
3191 :     With this patch it is now possible to cross compile xvid
3192 :     quite easily for win32 platform on a build linux host.
3193 :    
3194 :     Recipe for debian system:
3195 :     $ apt-get install mingw32
3196 :     (or create your own cross compiler/binutils suite and install mingw32
3197 :     header files -- sorry i don't have a recipe for this, this is let as
3198 :     an exercice for the reader)
3199 :     $ cd ${xvidcore}
3200 :     $ cd build/generic
3201 :     $ ./bootstrap.sh
3202 :     $ ./configure --host=i586-mingw32msvc
3203 :     (all occurences of i586-mingw32msvc may be replaced with the right
3204 :     prefix you've choosen for your cross compiler and cross binutils)
3205 :     $ make
3206 :     $ cd ../../vfw/bin
3207 :     $ make -f Makefile.cygwin \
3208 :     CC=i586-mingw32msvc-gcc WINDRES=i586-mingw32msvc-windres
3209 :    
3210 :     Enjoy your win32 xvid.dll build by free software, on a free OS, for a devil
3211 :     OS target.
3212 :    
3213 :     modified files:
3214 :     build/generic/configure.in vfw/bin/Makefile.cygwin
3215 :    
3216 :    
3217 :     2003-10-14 15:17:28 GMT patch-69
3218 :    
3219 :     Summary:
3220 :     Fixed Qpel+Interpolation decoding. Cleaned up mb->mode usage.
3221 :     Revision:
3222 :     xvidcore--devapi4--1.0--patch-69
3223 :    
3224 :     * Fixed interpolate mode + qpel decoding.
3225 :     * MB->mb_type completely replaced by MB->mode
3226 :    
3227 :     modified files:
3228 :     src/decoder.c
3229 :    
3230 :    
3231 :     2003-10-12 21:57:24 GMT patch-68
3232 :    
3233 :     Summary:
3234 :     ac/dc prediction for intra RD search.
3235 :     Revision:
3236 :     xvidcore--devapi4--1.0--patch-68
3237 :    
3238 :     From syskin, added real ac/dc prediction for INTRA's bitcount.
3239 :    
3240 :     modified files:
3241 :     src/motion/estimation_rd_based.c
3242 :    
3243 :    
3244 :     2003-10-09 18:15:50 GMT patch-67
3245 :    
3246 :     Summary:
3247 :     Pigrated asm code to new quant API.
3248 :     Revision:
3249 :     xvidcore--devapi4--1.0--patch-67
3250 :    
3251 :     Many changes that are mostly cosmetic in the asm files.
3252 :     * indent
3253 :     * added xor eax, eax in quant_(h263|mpeg)_intra_.* functions
3254 :     (just to make sure the returned value isn't random)
3255 :     * added xor eax, eax in dequant_(h263|mpeg)_.* functions
3256 :     (just to make sure the returned value isn't random)
3257 :     * synced cpuid.asm XVID_CPU_feature constants with the one
3258 :     defined in the C code (xvid.h)
3259 :     * enabled all cpu tests in xvid_bench.c
3260 :    
3261 :     modified files:
3262 :     examples/xvid_bench.c src/quant/quant_h263.c
3263 :     src/quant/quant_mpeg.c
3264 :     src/quant/x86_asm/quantize_h263_3dne.asm
3265 :     src/quant/x86_asm/quantize_h263_mmx.asm
3266 :     src/quant/x86_asm/quantize_mpeg_mmx.asm
3267 :     src/quant/x86_asm/quantize_mpeg_xmm.asm
3268 :     src/utils/x86_asm/cpuid.asm src/xvid.h
3269 :    
3270 :    
3271 :     2003-10-08 21:05:47 GMT patch-66
3272 :    
3273 :     Summary:
3274 :     Updated xvid_bench for quant API changes
3275 :     Revision:
3276 :     xvidcore--devapi4--1.0--patch-66
3277 :    
3278 :     Updated xvid_bench for quant API changes
3279 :    
3280 :    
3281 :     modified files:
3282 :     examples/xvid_bench.c
3283 :    
3284 :    
3285 :     2003-10-07 13:03:51 GMT patch-65
3286 :    
3287 :     Summary:
3288 :     Quant functions API changes (first step)
3289 :     Revision:
3290 :     xvidcore--devapi4--1.0--patch-65
3291 :    
3292 :     In the road to instance safe mpeg quantization, a small cleanup
3293 :     to the quant API was needed. It consists in changing the way we
3294 :     name the functions quant_{mpeg|h263}_{inter|intra}_{arch} and in
3295 :     a move to a more unified API (even intra functions return the sum
3296 :     of coefficients, it can be used as a complexity measure at a later
3297 :     time).
3298 :    
3299 :     This patch touch lot of files, but all changes are trivial.
3300 :    
3301 :     NB: we should check the IA64 asm validity, i changed things but
3302 :     i can't test them.
3303 :    
3304 :     new files:
3305 :     src/quant/.arch-ids/quant.h.id src/quant/quant.h
3306 :    
3307 :     removed files:
3308 :     src/quant/.arch-ids/quant_h263.h.id
3309 :     src/quant/.arch-ids/quant_mpeg4.h.id src/quant/quant_h263.h
3310 :     src/quant/quant_mpeg4.h
3311 :    
3312 :     modified files:
3313 :     build/generic/sources.inc build/win32/libxvidcore.dsp
3314 :     src/decoder.c src/encoder.c src/image/qpel.c
3315 :     src/motion/estimation_rd_based.c
3316 :     src/quant/ia64_asm/quant_h263_ia64.s src/quant/quant_h263.c
3317 :     src/quant/quant_matrix.c src/quant/quant_matrix.h
3318 :     src/quant/quant_mpeg.c
3319 :     src/quant/x86_asm/quantize_h263_3dne.asm
3320 :     src/quant/x86_asm/quantize_h263_mmx.asm
3321 :     src/quant/x86_asm/quantize_mpeg_mmx.asm
3322 :     src/quant/x86_asm/quantize_mpeg_xmm.asm
3323 :     src/utils/mbtransquant.c src/xvid.c src/xvid.h
3324 :    
3325 :     renamed files:
3326 :     src/quant/.arch-ids/quant_mpeg4.c.id
3327 :     ==> src/quant/.arch-ids/quant_mpeg.c.id
3328 :     src/quant/quant_mpeg4.c
3329 :     ==> src/quant/quant_mpeg.c
3330 :     src/quant/x86_asm/.arch-ids/quantize4_mmx.asm.id
3331 :     ==> src/quant/x86_asm/.arch-ids/quantize_mpeg_mmx.asm.id
3332 :     src/quant/x86_asm/.arch-ids/quantize4_xmm.asm.id
3333 :     ==> src/quant/x86_asm/.arch-ids/quantize_mpeg_xmm.asm.id
3334 :     src/quant/x86_asm/.arch-ids/quantize_3dne.asm.id
3335 :     ==> src/quant/x86_asm/.arch-ids/quantize_h263_3dne.asm.id
3336 :     src/quant/x86_asm/.arch-ids/quantize_mmx.asm.id
3337 :     ==> src/quant/x86_asm/.arch-ids/quantize_h263_mmx.asm.id
3338 :     src/quant/x86_asm/quantize4_mmx.asm
3339 :     ==> src/quant/x86_asm/quantize_mpeg_mmx.asm
3340 :     src/quant/x86_asm/quantize4_xmm.asm
3341 :     ==> src/quant/x86_asm/quantize_mpeg_xmm.asm
3342 :     src/quant/x86_asm/quantize_3dne.asm
3343 :     ==> src/quant/x86_asm/quantize_h263_3dne.asm
3344 :     src/quant/x86_asm/quantize_mmx.asm
3345 :     ==> src/quant/x86_asm/quantize_h263_mmx.asm
3346 :    
3347 :    
3348 :     2003-10-05 00:15:15 GMT patch-64
3349 :    
3350 :     Summary:
3351 :     Updated ChangeLog
3352 :     Revision:
3353 :     xvidcore--devapi4--1.0--patch-64
3354 :    
3355 :     Updated ChangeLog
3356 :    
3357 :    
3358 :     modified files:
3359 :     changelog.txt
3360 :    
3361 :    
3362 :     2003-10-04 16:04:30 GMT patch-63
3363 :    
3364 :     Summary:
3365 :     Removed legacy 2pass code from vfw
3366 :     Revision:
3367 :     xvidcore--devapi4--1.0--patch-63
3368 :    
3369 :     Removed legacy 2pass code from vfw
3370 :    
3371 :    
3372 :     removed files:
3373 :     vfw/src/.arch-ids/2pass.c.id vfw/src/.arch-ids/2pass.h.id
3374 :     vfw/src/2pass.c vfw/src/2pass.h
3375 :    
3376 :    
3377 :     2003-10-04 00:41:38 GMT patch-62
3378 :    
3379 :     Summary:
3380 :     Working VFW mingw/cygwin build system.
3381 :     Revision:
3382 :     xvidcore--devapi4--1.0--patch-62
3383 :    
3384 :     This patch fixes the VFW building process. Now it should work out
3385 :     of the box using these steps:
3386 :     # cd ${xvidcore}
3387 :     # cd build/generic
3388 :     # ./bootstrap.sh <-- only needed for CVS checkouts.
3389 :     # ./configure
3390 :     # make
3391 :     # cd ../../vfw/bin
3392 :     # make -f Makefile.cygwin
3393 :    
3394 :     Then install as usual clicking on the inf file or "make install"
3395 :     in the vfw/bin dir.
3396 :    
3397 :     modified files:
3398 :     vfw/bin/Makefile.cygwin vfw/src/config.rc vfw/src/debug.h
3399 :     vfw/src/driverproc.c
3400 :    
3401 :    
3402 :     2003-10-03 17:00:53 GMT patch-61
3403 :    
3404 :     Summary:
3405 :     Fixes for alternate scan and interlacing support.
3406 :     Revision:
3407 :     xvidcore--devapi4--1.0--patch-61
3408 :    
3409 :     Fixes from CVS (by sysKin) for:
3410 :     - added alternate scan support with VHQ
3411 :     - fixed interlacing support in s/b-frames. May fix a potential problem
3412 :     as field_pred struct field seemed not to be initialized anywhere.
3413 :     As it's not supported yet, write an hardcoded 0 bit.
3414 :    
3415 :     Fixes from me for the fixes from syKin:
3416 :     - scan_table effectively used in MBCodingBVOP
3417 :     - Block_CalcBits(Intra) fixes to data->scan_table (implies prototype
3418 :     change and code modification every where the functions were used)
3419 :    
3420 :     I also increased BS version as it might result in different bitstreams
3421 :     It's now at version 20.
3422 :    
3423 :     modified files:
3424 :     src/bitstream/mbcoding.c src/bitstream/mbcoding.h
3425 :     src/decoder.c src/encoder.c src/motion/estimation.h
3426 :     src/motion/estimation_rd_based.c src/xvid.h
3427 :    
3428 :    
3429 :     2003-10-03 15:41:37 GMT patch-60
3430 :    
3431 :     Summary:
3432 :     Removed BIGLUT support.
3433 :     Revision:
3434 :     xvidcore--devapi4--1.0--patch-60
3435 :    
3436 :     Remobed legacy code for BIGLUT support. It was unused and RD based
3437 :     Motion Estimation was not even compatible with this type of VLC coding.
3438 :    
3439 :     modified files:
3440 :     build/generic/configure.in src/bitstream/mbcoding.c
3441 :     src/bitstream/mbcoding.h src/prediction/mbprediction.c
3442 :    
3443 :    
3444 :     2003-10-03 13:25:17 GMT patch-59
3445 :    
3446 :     Summary:
3447 :     Bugfix for PFrames+ Ext Search.
3448 :     Revision:
3449 :     xvidcore--devapi4--1.0--patch-59
3450 :    
3451 :     In Qpel mode, the code was doing a diamond search for wrong predictors.
3452 :     This resulted in poor performance as the diamond search was sitting there
3453 :     for sometime.
3454 :    
3455 :     modified files:
3456 :     src/motion/estimation.h src/motion/estimation_pvop.c
3457 :    
3458 :    
3459 :     2003-10-02 16:50:51 GMT patch-58
3460 :    
3461 :     Summary:
3462 :     Added VFW makefile for cygwin/minsys
3463 :     Revision:
3464 :     xvidcore--devapi4--1.0--patch-58
3465 :    
3466 :     Added VFW makefile for cygwin/minsys. I can't test it so it is probably not
3467 :     right out of the box. Waiting for feedback in order to fix it.
3468 :    
3469 :     new files:
3470 :     vfw/bin/.arch-ids/Makefile.cygwin.id
3471 :     vfw/bin/.arch-ids/Makefile.inc.id vfw/bin/Makefile.cygwin
3472 :     vfw/bin/Makefile.inc vfw/src/w32api/.arch-ids/=id
3473 :     vfw/src/w32api/.arch-ids/vfw.h.id vfw/src/w32api/vfw.h
3474 :    
3475 :     new directories:
3476 :     vfw/src/w32api vfw/src/w32api/.arch-ids
3477 :    
3478 :    
3479 :     2003-10-02 13:35:15 GMT patch-57
3480 :    
3481 :     Summary:
3482 :     Cleaned up the lumimasking code.
3483 :     Revision:
3484 :     xvidcore--devapi4--1.0--patch-57
3485 :    
3486 :     The lumimasking code was not very plugin oriented as it has been ported
3487 :     from old XviD versions. This patch cleans up the code and integrates it
3488 :     better with plugin design. No changes done in teh functionnal code.
3489 :    
3490 :     modified files:
3491 :     src/plugins/plugin_lumimasking.c
3492 :    
3493 :    
3494 :     2003-10-01 23:07:07 GMT patch-56
3495 :    
3496 :     Summary:
3497 :     Cleaned up trailing space chars.
3498 :     Revision:
3499 :     xvidcore--devapi4--1.0--patch-56
3500 :    
3501 :     The kind of patch we would love to avoid as they make merging
3502 :     a nightmare while they're kind of useless patches.
3503 :    
3504 :     Applied sed 's/[ \t]*$//' to all c/h files.
3505 :    
3506 :     modified files:
3507 :     src/bitstream/bitstream.c src/bitstream/bitstream.h
3508 :     src/bitstream/cbp.c src/bitstream/mbcoding.c src/dct/idct.c
3509 :     src/dct/simple_idct.c src/decoder.c src/decoder.h
3510 :     src/encoder.c src/encoder.h src/global.h
3511 :     src/image/colorspace.c src/image/colorspace.h src/image/font.c
3512 :     src/image/image.c src/image/image.h src/image/interpolate8x8.c
3513 :     src/image/interpolate8x8.h src/image/qpel.c src/image/qpel.h
3514 :     src/image/reduced.c src/motion/estimation_rd_based.c
3515 :     src/motion/gmc.c src/motion/gmc.h src/motion/motion.h
3516 :     src/motion/sad.c src/plugins/plugin_2pass1.c
3517 :     src/plugins/plugin_2pass2.c src/plugins/plugin_fixed.c
3518 :     src/plugins/plugin_psnr.c src/plugins/plugin_single.c
3519 :     src/portab.h src/prediction/mbprediction.c
3520 :     src/utils/mbtransquant.c src/utils/timer.c src/xvid.c
3521 :     src/xvid.h
3522 :    
3523 :    
3524 :     2003-09-30 18:10:18 GMT patch-55
3525 :    
3526 :     Summary:
3527 :     Code cleanups.
3528 :     Revision:
3529 :     xvidcore--devapi4--1.0--patch-55
3530 :    
3531 :     It's been a while since the last ISOC89 conformance cleanup.
3532 :    
3533 :     Using the following switches help a lot :-)
3534 :     -Wall -Wsign-compare -Wredundant-decls -Wunreachable-code -Wnested-externs \
3535 :     -ansi
3536 :    
3537 :     Result: 0 warning/0 error
3538 :    
3539 :     modified files:
3540 :     src/bitstream/vlc_codes.h src/global.h src/image/qpel.h
3541 :     src/motion/estimation.h src/motion/estimation_bvop.c
3542 :     src/motion/estimation_gmc.c src/motion/estimation_pvop.c
3543 :     src/motion/estimation_rd_based.c src/motion/gmc.c
3544 :     src/motion/gmc.h src/motion/motion_inlines.h
3545 :     src/motion/vop_type_decision.c
3546 :    
3547 :    
3548 :     2003-09-29 00:31:32 GMT patch-54
3549 :    
3550 :     Summary:
3551 :     Memory leakage fixes.
3552 :     Revision:
3553 :     xvidcore--devapi4--1.0--patch-54
3554 :    
3555 :     The pEnc->queue was allocated but not freed when bframes == 0.
3556 :     And queue images were not freed as well.
3557 :    
3558 :     modified files:
3559 :     examples/Makefile src/encoder.c src/image/image.c
3560 :     src/utils/mem_align.c
3561 :    
3562 :    
3563 :     2003-09-28 16:45:02 GMT patch-53
3564 :    
3565 :     Summary:
3566 :     Fixes the unitialized mcsel bit in RD based ME
3567 :     Revision:
3568 :     xvidcore--devapi4--1.0--patch-53
3569 :    
3570 :     Fixes the unitialized mcsel bit in RD based ME
3571 :    
3572 :    
3573 :     modified files:
3574 :     src/motion/estimation_rd_based.c
3575 :    
3576 :    
3577 :     2003-09-28 01:00:06 GMT patch-52
3578 :    
3579 :     Summary:
3580 :     Fix the XviD constant version initialization
3581 :     Revision:
3582 :     xvidcore--devapi4--1.0--patch-52
3583 :    
3584 :     Fix the XviD constant version initialization
3585 :    
3586 :    
3587 :     modified files:
3588 :     src/xvid.h
3589 :    
3590 :    
3591 :     2003-09-28 00:47:05 GMT patch-51
3592 :    
3593 :     Summary:
3594 :     Fix to the build system (the come back).
3595 :     Revision:
3596 :     xvidcore--devapi4--1.0--patch-51
3597 :    
3598 :     Ok this one fixes the way we build the targets. The VPATH thingy really
3599 :     works with the library targets. My understanding of the VPATH mechanism
3600 :     was wrong. Now it should be ok (i promess).
3601 :    
3602 :     modified files:
3603 :     build/generic/Makefile
3604 :    
3605 :    
3606 :     2003-09-27 11:45:18 GMT patch-50
3607 :    
3608 :     Summary:
3609 :     Small fix to previous patch.
3610 :     Revision:
3611 :     xvidcore--devapi4--1.0--patch-50
3612 :    
3613 :     A pair ofdouble quotes prevented "make" to sort out the VPATH
3614 :     dependences in "=build". This resulted in compiling all the
3615 :     sources, all the time, whether a file changed or not.
3616 :    
3617 :     modified files:
3618 :     build/generic/Makefile
3619 :    
3620 :    
3621 :     2003-09-26 22:39:44 GMT patch-49
3622 :    
3623 :     Summary:
3624 :     Updated the build files for *nix.
3625 :     Revision:
3626 :     xvidcore--devapi4--1.0--patch-49
3627 :    
3628 :     - Fixed MacOSX build (w/o module option). The subversion was not right
3629 :     it was just minor version though it has to be major.minor.
3630 :     - Fixed bootstrap.sh for MacOSX environment, it now looks for
3631 :     glibtoolize if libtoolize is not found.
3632 :     - The unified Makefile now builds XviD out of source tree in the directory
3633 :     =build. It's cleaner, and clashes much less w/ arch/tla source linting.
3634 :     - Tuned the tagging regexps so:
3635 :     + autoconf files are ignored (considered backup => not erased, not copied
3636 :     and not commited/imported)
3637 :     + =build is also considered backup.
3638 :    
3639 :     modified files:
3640 :     build/generic/Makefile build/generic/bootstrap.sh
3641 :     build/generic/configure.in build/generic/platform.inc.in
3642 :     build/generic/sources.inc examples/Makefile
3643 :     {arch}/=tagging-method
3644 :    
3645 :    
3646 :     2003-09-24 01:38:03 GMT patch-48
3647 :    
3648 :     Summary:
3649 :     Bug fix to decoder (mcsel/acpred bits swapped)
3650 :     Revision:
3651 :     xvidcore--devapi4--1.0--patch-48
3652 :    
3653 :     As reported here:
3654 :     http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1513&highlight=
3655 :    
3656 :     <quote>
3657 :     in the spec, 'there is 'mcsel' before 'ac_pred_flag'.
3658 :     however, if you see the code, it's changed.
3659 :     </quote>
3660 :    
3661 :     We were doing the opposite, ac_pred before mcsel.
3662 :    
3663 :     modified files:
3664 :     src/decoder.c
3665 :    
3666 :    
3667 :     2003-09-11 17:19:35 GMT patch-47
3668 :    
3669 :     Summary:
3670 :     Small fix to GMC+QuarterPel -- BS version bumped to 19
3671 :     Revision:
3672 :     xvidcore--devapi4--1.0--patch-47
3673 :    
3674 :     During the split up, a line has been disabled that prevented good
3675 :     quartelpel+GMC. Fixed.
3676 :    
3677 :     This fix + patch-43 are a good reason to bump up the bitstream
3678 :     version to 19.
3679 :    
3680 :     modified files:
3681 :     src/motion/gmc.h src/xvid.h
3682 :    
3683 :    
3684 :     2003-09-11 17:11:28 GMT patch-46
3685 :    
3686 :     Summary:
3687 :     Build process fix for MacOSX+module option
3688 :     Revision:
3689 :     xvidcore--devapi4--1.0--patch-46
3690 :    
3691 :     This patch fixes the install rule of the MacOSX module style library.
3692 :     It adds a PRE_SHARED_LIB == SHARED_LIB for all platforms except
3693 :     MacOSX that uses it a different way, and exploits the fact
3694 :     $(SPECIFIC_LDFLAGS) is the last var of the build line to insert a
3695 :     command for post linking the right .so file.
3696 :    
3697 :     modified files:
3698 :     build/generic/Makefile build/generic/configure.in
3699 :     build/generic/platform.inc.in
3700 :    
3701 :    
3702 :     2003-09-11 13:56:40 GMT patch-45
3703 :    
3704 :     Summary:
3705 :     Tree cleanup and build files updated.
3706 :     Revision:
3707 :     xvidcore--devapi4--1.0--patch-45
3708 :    
3709 :     * Win32 files switched to Unix format.
3710 :     Ok, on IRC, we sorted out what was b0rking the project files each
3711 :     time I commit them in DOS format. In fact the Unix CVS does upload
3712 :     DOS format files if i commit them, and then Win32 CVS users get
3713 :     double \r\n files. So the best is to use unix format in CVS. This
3714 :     way, the checked out versions are right for Win32 users.
3715 :    
3716 :     NB: this imply a unix2dos conversion when doing a release from a
3717 :     Unix box. I think it's better than current policy, but automatic
3718 :     tarballs/zip of the tree should take care of that.
3719 :    
3720 :     * odivx and xvid_stat examples removed. Associated project files have
3721 :     been removed as well.
3722 :    
3723 :     * The divx4 compatibility layer has been removed. Associated options
3724 :     in the configure script removed. libxvidcore.def has no more need
3725 :     to be an autoconf generated file.
3726 :    
3727 :     * rawdec removed. It has never been used and will never be.
3728 :    
3729 :     * Added major api appending to the macosx module build.
3730 :    
3731 :     removed files:
3732 :     build/win32/.arch-ids/odivx_enc_dec.dsp.id
3733 :     build/win32/.arch-ids/xvid_stat.dsp.id
3734 :     build/win32/odivx_enc_dec.dsp build/win32/xvid_stat.dsp
3735 :     examples/.arch-ids/odivx_enc_dec.c.id
3736 :     examples/.arch-ids/xvid_stat.c.id examples/odivx_enc_dec.c
3737 :     examples/xvid_stat.c rawdec/.arch-ids/=id
3738 :     rawdec/.arch-ids/rawdec.c.id rawdec/.arch-ids/rawdec.dsp.id
3739 :     rawdec/rawdec.c rawdec/rawdec.dsp src/.arch-ids/divx4.c.id
3740 :     src/.arch-ids/divx4.h.id src/divx4.c src/divx4.h
3741 :    
3742 :     modified files:
3743 :     build/generic/Makefile build/generic/configure.in
3744 :     build/generic/libxvidcore.def build/win32/libxvidcore.dsp
3745 :     build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp
3746 :     build/win32/xvidcore.dsw
3747 :    
3748 :     renamed files:
3749 :     build/generic/.arch-ids/libxvidcore.def.in.id
3750 :     ==> build/generic/.arch-ids/libxvidcore.def.id
3751 :     build/generic/libxvidcore.def.in
3752 :     ==> build/generic/libxvidcore.def
3753 :    
3754 :     removed directories:
3755 :     rawdec rawdec/.arch-ids
3756 :    
3757 :    
3758 :     2003-09-11 12:59:19 GMT patch-44
3759 :    
3760 :     Summary:
3761 :     Replaced malloc.h header file with stdlib.h
3762 :     Revision:
3763 :     xvidcore--devapi4--1.0--patch-44
3764 :    
3765 :     Replaced malloc.h header file with stdlib.h
3766 :    
3767 :    
3768 :     modified files:
3769 :     src/plugins/plugin_lumimasking.c
3770 :    
3771 :    
3772 :     2003-09-10 22:33:04 GMT patch-43
3773 :    
3774 :     Summary:
3775 :     Fixed a problem for 'power of 2' framerates
3776 :     Revision:
3777 :     xvidcore--devapi4--1.0--patch-43
3778 :    
3779 :     Fixed a problem for 'power of 2' framerates
3780 :    
3781 :    
3782 :     modified files:
3783 :     src/bitstream/bitstream.c
3784 :    
3785 :    
3786 :     2003-09-10 21:57:12 GMT patch-42
3787 :    
3788 :     Summary:
3789 :     Motion Estimation module splitting.
3790 :     Revision:
3791 :     xvidcore--devapi4--1.0--patch-42
3792 :    
3793 :     The motion estimation module was the biggest file of the source
3794 :     tree. After some previous attempts, sysKin decided to split it
3795 :     up again. This time he's done it right.
3796 :    
3797 :     This split up just changes the organization of ME functions
3798 :     inside different files. This should help a bit in keeping the
3799 :     motion estimation being manageable by a normal human ;-)
3800 :    
3801 :     Here is the splitting logic quoted from sysKin's email to
3802 :     xvid-devel:
3803 :     - estimation.h: header files #included in all ME modules:
3804 :     + deftypes,
3805 :     + macros
3806 :     + constants
3807 :     NB: no code.
3808 :     - estimation_bvop.c: motion estimation for b-vops.
3809 :     everything in it :)
3810 :     - estimation_common.c: functions shared among all ME
3811 :     modules:
3812 :     + diamonds
3813 :     + subpel
3814 :     + refinement
3815 :     + picture
3816 :     + manipulation
3817 :     + tables
3818 :     + ... etc.
3819 :     - estimation_gmc.c: gruel's GME code
3820 :     - estimation_pvop.c: ME for p-vops. Also SAD-based mode
3821 :     decision
3822 :     - estimation_rd_based.c: everything R-D-based: mode
3823 :     decison (including _Fast) and ME.
3824 :     - gmc.c, gmc.h: no change.
3825 :    
3826 :     new files:
3827 :     src/motion/.arch-ids/estimation.h.id
3828 :     src/motion/.arch-ids/estimation_bvop.c.id
3829 :     src/motion/.arch-ids/estimation_common.c.id
3830 :     src/motion/.arch-ids/estimation_gmc.c.id
3831 :     src/motion/.arch-ids/estimation_pvop.c.id
3832 :     src/motion/.arch-ids/estimation_rd_based.c.id
3833 :     src/motion/.arch-ids/motion_inlines.h.id
3834 :     src/motion/.arch-ids/vop_type_decision.c.id
3835 :     src/motion/estimation.h src/motion/estimation_bvop.c
3836 :     src/motion/estimation_common.c src/motion/estimation_gmc.c
3837 :     src/motion/estimation_pvop.c src/motion/estimation_rd_based.c
3838 :     src/motion/motion_inlines.h src/motion/vop_type_decision.c
3839 :    
3840 :     removed files:
3841 :     src/motion/.arch-ids/motion_est.c.id
3842 :     src/motion/.arch-ids/motion_est.h.id
3843 :     src/motion/.arch-ids/smp_motion_est.c.id
3844 :     src/motion/.arch-ids/smp_motion_est.h.id
3845 :     src/motion/motion_est.c src/motion/motion_est.h
3846 :     src/motion/smp_motion_est.c src/motion/smp_motion_est.h
3847 :    
3848 :     modified files:
3849 :     build/generic/sources.inc build/win32/libxvidcore.dsp
3850 :     src/bitstream/mbcoding.h src/motion/gmc.c src/motion/gmc.h
3851 :     src/motion/motion.h src/motion/motion_comp.c src/motion/sad.c
3852 :     src/motion/sad.h src/prediction/mbprediction.c
3853 :     src/prediction/mbprediction.h src/utils/mbfunctions.h
3854 :    
3855 :    
3856 :     2003-09-10 00:40:44 GMT patch-41
3857 :    
3858 :     Summary:
3859 :     Cleanups and fix to (trellis+thresholding) logic
3860 :     Revision:
3861 :     xvidcore--devapi4--1.0--patch-41
3862 :    
3863 :     Cleanups to some functions (loop unrolling, call to functions
3864 :     through function array pointers)...
3865 :    
3866 :     Fix to the trellis+thresholding logic. It was comparing the
3867 :     return value of trellis with a threshold but the trellis function
3868 :     returns the last non zero coeff index... this was basically
3869 :     comparing apples with oranges... funny but wrong. Trellis now
3870 :     returns the sum of absolute coeffs, so the comparison is logical.
3871 :     Btw, as discussed on the devel ML, this is probably uneeded as
3872 :     trellis does an RD optimized coeff distribution.
3873 :    
3874 :     modified files:
3875 :     src/utils/mbtransquant.c
3876 :    
3877 :    
3878 :     2003-09-09 13:13:58 GMT patch-40
3879 :    
3880 :     Summary:
3881 :     Missing ressource for dshow frontend
3882 :     Revision:
3883 :     xvidcore--devapi4--1.0--patch-40
3884 :    
3885 :     Missing ressource for dshow frontend
3886 :    
3887 :    
3888 :     new files:
3889 :     dshow/src/.arch-ids/XviD_logo.bmp.id dshow/src/XviD_logo.bmp
3890 :    
3891 :    
3892 :     2003-09-08 11:02:10 GMT patch-39
3893 :    
3894 :     Summary:
3895 :     Small fixes for fast mode decision
3896 :     Revision:
3897 :     xvidcore--devapi4--1.0--patch-39
3898 :    
3899 :     Small fixes for fast mode decision
3900 :    
3901 :    
3902 :     modified files:
3903 :     src/motion/motion_est.c src/xvid.h
3904 :    
3905 :    
3906 :     2003-09-05 23:45:48 GMT patch-38
3907 :    
3908 :     Summary:
3909 :     New RD mode decision and subpel refinement.
3910 :     Revision:
3911 :     xvidcore--devapi4--1.0--patch-38
3912 :    
3913 :     New stuff from michael. It deals with mode decision and subpel
3914 :     refinement. Integration of these new flags are not settled.
3915 :    
3916 :     Wait and see. Further testing is needed.
3917 :    
3918 :     modified files:
3919 :     src/motion/motion_est.c src/motion/motion_est.h src/xvid.h
3920 :    
3921 :    
3922 :     2003-08-29 13:56:30 GMT patch-37
3923 :    
3924 :     Summary:
3925 :     Still more ME tuning
3926 :     Revision:
3927 :     xvidcore--devapi4--1.0--patch-37
3928 :    
3929 :     Still more ME tuning
3930 :    
3931 :    
3932 :     modified files:
3933 :     src/motion/motion_est.c
3934 :    
3935 :    
3936 :     2003-08-28 12:43:22 GMT patch-36
3937 :    
3938 :     Summary:
3939 :     Removed expanded the cvs Id field
3940 :     Revision:
3941 :     xvidcore--devapi4--1.0--patch-36
3942 :    
3943 :     Removed expanded the cvs Id field
3944 :    
3945 :    
3946 :     modified files:
3947 :     src/image/x86_asm/qpel_mmx.asm
3948 :    
3949 :    
3950 :     2003-08-28 12:39:44 GMT patch-35
3951 :    
3952 :     Summary:
3953 :     More motion est cleanup and bugfixes.
3954 :     Revision:
3955 :     xvidcore--devapi4--1.0--patch-35
3956 :    
3957 :     Still more bugfixes, cleanups and improvements to the Motion Est
3958 :     by sysKin
3959 :    
3960 :     modified files:
3961 :     src/motion/motion_est.c src/motion/motion_est.h
3962 :    
3963 :    
3964 :     2003-08-26 13:57:39 GMT patch-34
3965 :    
3966 :     Summary:
3967 :     Added final bits of Aspect Ratio flag.
3968 :     Revision:
3969 :     xvidcore--devapi4--1.0--patch-34
3970 :    
3971 :     Peter did think of the AR flag since the very beginning of devapi4.
3972 :     He just forgot to code the final bits to effectively write it to
3973 :     the bitstream. This patch adds these missing final bits so XviD now
3974 :     reads and writes AR flags.
3975 :    
3976 :     modified files:
3977 :     ./src/bitstream/bitstream.c ./src/encoder.c ./src/encoder.h
3978 :     ./src/xvid.h
3979 :    
3980 :    
3981 :     2003-08-25 16:41:09 GMT patch-33
3982 :    
3983 :     Summary:
3984 :     Small motion estimation cleanup.
3985 :     Revision:
3986 :     xvidcore--devapi4--1.0--patch-33
3987 :    
3988 :     Cleanups from sysKin.
3989 :    
3990 :     modified files:
3991 :     ./src/motion/motion_est.c ./src/motion/motion_est.h
3992 :    
3993 :    
3994 :     2003-08-25 14:59:28 GMT patch-32
3995 :    
3996 :     Summary:
3997 :     Frame padding bug.
3998 :     Revision:
3999 :     xvidcore--devapi4--1.0--patch-32
4000 :    
4001 :     We were edging the image repeating pixels from the image directly,
4002 :     but the standard says we must repeat from a 16 pixel boundary.
4003 :    
4004 :     See Chapter 7.6.4 of the standard.
4005 :    
4006 :     modified files:
4007 :     ./src/image/image.c
4008 :    
4009 :    
4010 :     2003-08-23 15:07:44 GMT patch-31
4011 :    
4012 :     Summary:
4013 :     New Qpel code.
4014 :     Revision:
4015 :     xvidcore--devapi4--1.0--patch-31
4016 :    
4017 :     Isibaar commited a new piece of QPel code that seems to be optimized
4018 :     for ia32(mmx) architectures. I had to clean it up a bit to make it
4019 :     respectful of architecture separations. This code is disabled for
4020 :     non ia32 arch, a comment mention it's only faster on ia32... i wonder
4021 :     if it's true, some tests have to be done on sourceforge compile farm
4022 :     in order to confirm that.
4023 :    
4024 :     Compared to the bared CVS commit, this patch includes:
4025 :     - fixes the unix build.
4026 :     - better architecture separation.
4027 :     - CodingStyle respected.
4028 :    
4029 :     new files:
4030 :     ./src/image/.arch-ids/qpel.c.id
4031 :     ./src/image/.arch-ids/qpel.h.id ./src/image/qpel.c
4032 :     ./src/image/qpel.h
4033 :     ./src/image/x86_asm/.arch-ids/qpel_mmx.asm.id
4034 :     ./src/image/x86_asm/qpel_mmx.asm
4035 :    
4036 :     modified files:
4037 :     ./build/generic/sources.inc ./build/win32/libxvidcore.dsp
4038 :     ./src/encoder.c ./src/motion/motion_comp.c ./src/xvid.c
4039 :    
4040 :    
4041 :     2003-08-22 13:20:36 GMT patch-30
4042 :    
4043 :     Summary:
4044 :     sad32v does really what it's expected (ie 32x32 SAD :-)
4045 :     Revision:
4046 :     xvidcore--devapi4--1.0--patch-30
4047 :    
4048 :     sad32v does really what it's expected (ie 32x32 SAD :-)
4049 :    
4050 :    
4051 :     modified files:
4052 :     ./src/motion/sad.c
4053 :    
4054 :    
4055 :     2003-08-18 19:00:49 GMT patch-29
4056 :    
4057 :     Summary:
4058 :     64bit fix.
4059 :     Revision:
4060 :     xvidcore--devapi4--1.0--patch-29
4061 :    
4062 :     The interpolation code was unsafe on 64bit platforms, the offset was
4063 :     badly sized, resulting in segfaults.
4064 :    
4065 :     modified files:
4066 :     ./src/image/interpolate8x8.h
4067 :    
4068 :    
4069 :     2003-08-17 14:08:48 GMT patch-28
4070 :    
4071 :     Summary:
4072 :     Greyscale mode fixes.
4073 :     Revision:
4074 :     xvidcore--devapi4--1.0--patch-28
4075 :    
4076 :     We were missing some greyscale tests in the encoder loop... noticeably
4077 :     in the PVOP function when coding an intra block, and in BVOP function
4078 :     when coding all types.
4079 :    
4080 :     I added the cbp trick in the cases discussed above.
4081 :    
4082 :     modified files:
4083 :     ./src/encoder.c
4084 :    
4085 :    
4086 :     2003-08-13 11:47:33 GMT patch-27
4087 :    
4088 :     Summary:
4089 :     Forgotten bit for IA64 separation
4090 :     Revision:
4091 :     xvidcore--devapi4--1.0--patch-27
4092 :    
4093 :     Forgotten bit for IA64 separation
4094 :    
4095 :    
4096 :     modified files:
4097 :     ./src/image/interpolate8x8.h
4098 :    
4099 :    
4100 :     2003-08-11 15:42:30 GMT patch-26
4101 :    
4102 :     Summary:
4103 :     Some qpel changes (sync with Isibaar)
4104 :     Revision:
4105 :     xvidcore--devapi4--1.0--patch-26
4106 :    
4107 :     Some qpel changes (sync with Isibaar)
4108 :    
4109 :    
4110 :     modified files:
4111 :     ./examples/xvid_encraw.c
4112 :    
4113 :    
4114 :     2003-08-11 15:30:04 GMT patch-25
4115 :    
4116 :     Summary:
4117 :     Better architecture separation.
4118 :     Revision:
4119 :     xvidcore--devapi4--1.0--patch-25
4120 :    
4121 :     Architecture depending functions were declared whatever arch you
4122 :     were compiling. This patch fixes that.
4123 :    
4124 :     I also removed the simple_idct hack in decoder.c as it was simply
4125 :     not used. Better not have ugly code in there.
4126 :    
4127 :     xvid_bench, should now compile and run on all archs. However I did
4128 :     not put the cpu definitions for each arch, i just separated
4129 :     ARCH_IS_IA32 so even ARCH_IS_GENERIC can compile
4130 :    
4131 :     modified files:
4132 :     ./examples/xvid_bench.c ./src/bitstream/cbp.h ./src/dct/fdct.h
4133 :     ./src/dct/idct.h ./src/decoder.c ./src/image/colorspace.h
4134 :     ./src/image/interpolate8x8.h ./src/image/reduced.h
4135 :     ./src/motion/sad.h ./src/quant/quant_h263.h
4136 :     ./src/quant/quant_mpeg4.h ./src/utils/emms.h
4137 :    
4138 :    
4139 :     2003-08-09 20:47:42 GMT patch-24
4140 :    
4141 :     Summary:
4142 :     Updated changelog
4143 :     Revision:
4144 :     xvidcore--devapi4--1.0--patch-24
4145 :    
4146 :     Updated changelog
4147 :    
4148 :    
4149 :     modified files:
4150 :     ./changelog.txt
4151 :    
4152 :    
4153 :     2003-08-09 20:31:17 GMT patch-23
4154 :    
4155 :     Summary:
4156 :     Workaround to a GMC bug due to a MS compiler bug.
4157 :     Revision:
4158 :     xvidcore--devapi4--1.0--patch-23
4159 :    
4160 :     Christoph did use a trick to speed up code that resulted in badly
4161 :     optimized code (teh compiler was missing a cast)
4162 :    
4163 :     modified files:
4164 :     ./src/motion/gmc.c
4165 :    
4166 :    
4167 :     2003-08-09 17:09:00 GMT patch-22
4168 :    
4169 :     Summary:
4170 :     Fixes to xvid_decraw
4171 :     Revision:
4172 :     xvidcore--devapi4--1.0--patch-22
4173 :    
4174 :     xvid_decraw has always been used on not so high bitrate sequences
4175 :     and not so big sequences neither.
4176 :    
4177 :     I've been doing lot of tests on the Matrix 2 trailer
4178 :     (1000x540 25fps ~5Mbits/s) and xvid_decraw was not able to handle that
4179 :     because of bugs in the buffer filling algorithm.
4180 :    
4181 :     This patch fixes the buffer filling and catches up with christoph changes
4182 :     in CVS (wrong help message and option parsing).
4183 :    
4184 :     modified files:
4185 :     ./examples/xvid_decraw.c
4186 :    
4187 :    
4188 :     2003-08-08 21:31:59 GMT patch-21
4189 :    
4190 :     Summary:
4191 :     Added QPel and GMC options.
4192 :     Revision:
4193 :     xvidcore--devapi4--1.0--patch-21
4194 :    
4195 :     XviD has so many options that we forget to propose them all on the
4196 :     CLI, here are two more: GMC and Qpel.
4197 :    
4198 :     modified files:
4199 :     ./examples/xvid_encraw.c
4200 :    
4201 :    
4202 :     2003-08-07 19:26:28 GMT patch-20
4203 :    
4204 :     Summary:
4205 :     SVOP handling in status window
4206 :     Revision:
4207 :     xvidcore--devapi4--1.0--patch-20
4208 :    
4209 :     SVOP handling in status window
4210 :    
4211 :    
4212 :     modified files:
4213 :     ./vfw/src/status.c
4214 :    
4215 :    
4216 :     2003-08-07 19:25:03 GMT patch-19
4217 :    
4218 :     Summary:
4219 :     Warning cleanups by chl
4220 :     Revision:
4221 :     xvidcore--devapi4--1.0--patch-19
4222 :    
4223 :     Warning cleanups by chl
4224 :    
4225 :    
4226 :     modified files:
4227 :     ./src/encoder.c ./src/encoder.h ./src/image/interpolate8x8.c
4228 :     ./src/motion/motion_est.c ./src/xvid.h
4229 :    
4230 :    
4231 :     2003-08-06 21:13:35 GMT patch-18
4232 :    
4233 :     Summary:
4234 :     Fix to GMC sprite trajectory code
4235 :     Revision:
4236 :     xvidcore--devapi4--1.0--patch-18
4237 :    
4238 :     Fix to GMC sprite trajectory code
4239 :    
4240 :    
4241 :     modified files:
4242 :     ./src/bitstream/mbcoding.c ./src/xvid.h
4243 :    
4244 :    
4245 :     2003-08-06 10:57:25 GMT patch-17
4246 :    
4247 :     Summary:
4248 :     Fixes a bug in BVOP block skipping thresholding
4249 :     Revision:
4250 :     xvidcore--devapi4--1.0--patch-17
4251 :    
4252 :     Fixes a bug in BVOP block skipping thresholding
4253 :    
4254 :    
4255 :     modified files:
4256 :     ./src/motion/motion_est.c
4257 :    
4258 :    
4259 :     2003-08-03 14:57:32 GMT patch-16
4260 :    
4261 :     Summary:
4262 :     Functions renaming + motion fixes.
4263 :     Revision:
4264 :     xvidcore--devapi4--1.0--patch-16
4265 :    
4266 :     BITS flags have been renamed to RD (Rate Distorsion) flags... however
4267 :     function names were still xxxBitsxxx.
4268 :    
4269 :     Improved frame type decision
4270 :    
4271 :     Fix for DQUANTS plugins, their quant was never checked against valid
4272 :     [1..31] range.
4273 :    
4274 :     modified files:
4275 :     ./src/encoder.c ./src/motion/motion_est.c
4276 :     ./src/motion/motion_est.h
4277 :    
4278 :    
4279 :     2003-08-02 15:00:49 GMT patch-15
4280 :    
4281 :     Summary:
4282 :     API cleanup.
4283 :     Revision:
4284 :     xvidcore--devapi4--1.0--patch-15
4285 :    
4286 :     Since we started devapi3 and then devapi4, feature names did not change
4287 :     because it was just convenient to keep them to minimize the change impact.
4288 :     But most of the flags were now not even suggesting what they do. So this
4289 :     patch cleans the API.
4290 :    
4291 :     This patch also change the way we describe flags, it's more compact and
4292 :     shows better flags are bit sets that must not overlap. This change fixes
4293 :     a plugin flag overlapping problem as well.
4294 :    
4295 :     modified files:
4296 :     ./examples/xvid_encraw.c ./src/decoder.c ./src/encoder.c
4297 :     ./src/encoder.h ./src/motion/motion_est.c
4298 :     ./src/motion/motion_est.h ./src/xvid.c ./src/xvid.h
4299 :     ./vfw/src/codec.c ./vfw/src/config.c
4300 :    
4301 :    
4302 :     2003-07-29 22:25:12 GMT patch-14
4303 :    
4304 :     Summary:
4305 :     Fixed bogus memory accesses
4306 :     Revision:
4307 :     xvidcore--devapi4--1.0--patch-14
4308 :    
4309 :     Fixed bogus memory accesses
4310 :    
4311 :    
4312 :     modified files:
4313 :     ./src/encoder.c ./src/plugins/plugin_2pass1.c
4314 :    
4315 :    
4316 :     2003-07-28 12:22:33 GMT patch-13
4317 :    
4318 :     Summary:
4319 :     Bitstream version increased to 16
4320 :     Revision:
4321 :     xvidcore--devapi4--1.0--patch-13
4322 :    
4323 :     Bitstream version increased to 16
4324 :    
4325 :    
4326 :     modified files:
4327 :     ./src/xvid.h
4328 :    
4329 :    
4330 :     2003-07-25 12:01:51 GMT patch-12
4331 :    
4332 :     Summary:
4333 :     Added gmc files to teh windows project file
4334 :     Revision:
4335 :     xvidcore--devapi4--1.0--patch-12
4336 :    
4337 :     Added gmc files to teh windows project file
4338 :    
4339 :    
4340 :     modified files:
4341 :     ./build/win32/libxvidcore.dsp ./vfw/src/codec.c
4342 :    
4343 :    
4344 :     2003-07-25 12:00:31 GMT patch-11
4345 :    
4346 :     Summary:
4347 :     Added cartoon mode from Isibaar
4348 :     Revision:
4349 :     xvidcore--devapi4--1.0--patch-11
4350 :    
4351 :     Added cartoon mode from Isibaar
4352 :    
4353 :    
4354 :     modified files:
4355 :     ./src/motion/motion_est.c ./src/plugins/plugin_single.c
4356 :     ./src/utils/mbtransquant.c ./src/xvid.h
4357 :    
4358 :    
4359 :     2003-07-25 10:30:41 GMT patch-10
4360 :    
4361 :     Summary:
4362 :     Bitstream syntax comments.
4363 :     Revision:
4364 :     xvidcore--devapi4--1.0--patch-10
4365 :    
4366 :     This patch does not change the bitstream but adds some comments that
4367 :     can help in order to understand (lack of) calls to BitstreamPadAlways.
4368 :    
4369 :     modified files:
4370 :     ./src/bitstream/bitstream.c ./src/encoder.c
4371 :    
4372 :    
4373 :     2003-07-22 16:34:25 GMT patch-9
4374 :    
4375 :     Summary:
4376 :     Fixes Bistream errors in VOL (+ forced stuffing)
4377 :     Revision:
4378 :     xvidcore--devapi4--1.0--patch-9
4379 :    
4380 :     After a detailed bugreport at:
4381 :     http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1387&highlight=
4382 :    
4383 :     I discovered that:
4384 :    
4385 :     1/ we did not write video_signal_type, but we were padding to the next
4386 :     byte, that's why we had video_signal_type=0 and then only 1s until the
4387 :     next byte boundary. This explains the 11 next_start_code();
4388 :    
4389 :     2/ video_object_type_indication = Reserved is right on my machine,
4390 :     please check again, but i doubt there is a bug there, we use 3 hard
4391 :     wired values and none of them is zero.
4392 :    
4393 :     3/ 01 : next_start_code() *** Was wrong in 24.02.2003; is correct in
4394 :     dev-api-4!!! *** was a bug in fact... when we write user data, we pad to
4395 :     the next byte boundary (if needed) like the standard says... by
4396 :     chancepadding was almost always done, thus the next_start_code() was
4397 :     respected.
4398 :    
4399 :     4/ The extra stuffing bits were caused by a forced padding between our
4400 :     VOL function writer and VOP header function writer.
4401 :    
4402 :     modified files:
4403 :     ./src/bitstream/bitstream.c ./src/encoder.c
4404 :    
4405 :    
4406 :     2003-07-16 22:57:44 GMT patch-8
4407 :    
4408 :     Summary:
4409 :     Fixed quant4_intra_xmm and quant_intra_3dne bug for DC<0.
4410 :     Revision:
4411 :     xvidcore--devapi4--1.0--patch-8
4412 :    
4413 :     These two functions were suffering the same error that consists in
4414 :     emulating idiv with some an inversed divisor array and an imul
4415 :     instruction followed by a right shift...
4416 :    
4417 :     That was always decreasing the ressult by 1 for negative DC values.
4418 :     A not so bad solution is simply to use a cmov instruction and choose
4419 :     the right value according to the DC value. As these function were
4420 :     for PIII and Athlon, we are sure we can use the cmov instruction.
4421 :    
4422 :     PS: the fix is somewhere in cosmetic changes... sorry but the code was
4423 :     too ugly to fix it like it was.
4424 :    
4425 :     modified files:
4426 :     ./src/quant/x86_asm/quantize4_xmm.asm
4427 :     ./src/quant/x86_asm/quantize_3dne.asm
4428 :    
4429 :    
4430 :     2003-07-16 12:58:21 GMT patch-7
4431 :    
4432 :     Summary:
4433 :     Fixed the build system (error caused by patch-5)
4434 :     Revision:
4435 :     xvidcore--devapi4--1.0--patch-7
4436 :    
4437 :     IA64 cahnges were wrong in the build system, they make all platforms
4438 :     try to compile a directory... That patch should fix the IA64 target
4439 :     build and get back to previous behavior for other architectures.
4440 :    
4441 :     modified files:
4442 :     ./build/generic/configure.in ./build/generic/platform.inc.in
4443 :     ./build/generic/sources.inc
4444 :    
4445 :    
4446 :     2003-07-13 12:16:55 GMT patch-6
4447 :    
4448 :     Summary:
4449 :     Updates for GME and some cleanups.
4450 :     Revision:
4451 :     xvidcore--devapi4--1.0--patch-6
4452 :    
4453 :     This is a all in one patch from syskin:
4454 :     * mcsel decision moved to ModeDecision() function. That makes motion
4455 :     loop completely aware of macroblock mode and vectors (amv in that case).
4456 :     A simple copy&paste was needed to make the the decision R-D based, to be
4457 :     compatible with MODEDECISION_BITS.
4458 :    
4459 :     * many bugs fixed. Most of them very small, the only big one was that
4460 :     BITS was misunderstanding a flag and was thinking that mpeg quant is
4461 :     used when h263 quant is used and vice versa :( Also, correct cbp with
4462 :     inter4v mode makes mode decision better. Two speedups - for BITS (no
4463 :     more dequantization when sum == 0) and for ChromaME (chroma sad not
4464 :     computed if total sad too big before that). Some GMC compiler warnings
4465 :     removed. Probably more, I don't remember ;) I haven't touched P/B/I
4466 :     decision for once.
4467 :    
4468 :     * compiler warnings removed, mostly "const mismatch" in get_amv() <-- or
4469 :     what was his name.
4470 :    
4471 :     * two functions made 2x smaller, shorter and faster.
4472 :    
4473 :     modified files:
4474 :     ./src/encoder.c ./src/global.h ./src/image/interpolate8x8.h
4475 :     ./src/motion/gmc.c ./src/motion/gmc.h
4476 :     ./src/motion/motion_est.c ./src/motion/motion_est.h
4477 :     ./vfw/src/codec.c
4478 :    
4479 :    
4480 :     2003-07-10 17:35:59 GMT patch-5
4481 :    
4482 :     Summary:
4483 :     IA64 updates.
4484 :     Revision:
4485 :     xvidcore--devapi4--1.0--patch-5
4486 :    
4487 :     Changes from Stephan Krause <s_kraste at ira.uka.de>
4488 :    
4489 :     Small updates so ia64 is supposed to work. Further testing is needed
4490 :     because tests have only been done with xvid_encraw.
4491 :    
4492 :     modified files:
4493 :     ./build/generic/platform.inc.in ./examples/xvid_encraw.c
4494 :     ./src/motion/motion_est.c ./src/xvid.c
4495 :    
4496 :    
4497 :     2003-07-10 17:27:01 GMT patch-4
4498 :    
4499 :     Summary:
4500 :     Removed remaining expanded $ lines from the arch repo
4501 :     Revision:
4502 :     xvidcore--devapi4--1.0--patch-4
4503 :    
4504 :     Removed remaining expanded $ lines from the arch repo
4505 :    
4506 :    
4507 :     modified files:
4508 :     ./CodingStyle ./build/generic/bootstrap.sh
4509 :     ./doc/xvid-encoder.txt ./src/bitstream/ppc_asm/cbp_altivec.s
4510 :     ./src/bitstream/ppc_asm/cbp_ppc.s
4511 :     ./src/dct/x86_asm/fdct_xmm.asm
4512 :     ./src/image/x86_asm/colorspace_yuv_mmx.asm
4513 :     ./src/image/x86_asm/reduced_mmx.asm
4514 :     ./src/image/x86_asm/yuv_to_yv12_mmx.asm
4515 :     ./src/image/x86_asm/yv12_to_rgb24_mmx.asm
4516 :     ./src/image/x86_asm/yv12_to_rgb32_mmx.asm
4517 :     ./src/motion/ppc_asm/sad_altivec.c ./todo.txt
4518 :    
4519 :    
4520 :     2003-07-02 23:20:39 GMT patch-3
4521 :    
4522 :     Summary:
4523 :     Reset the IFrame counter when an iframe is encoded
4524 :     Revision:
4525 :     xvidcore--devapi4--1.0--patch-3
4526 :    
4527 :     Reset the IFrame counter when an iframe is encoded
4528 :    
4529 :    
4530 :     modified files:
4531 :     ./src/encoder.c
4532 :    
4533 :    
4534 :     2003-06-29 21:58:24 GMT patch-2
4535 :    
4536 :     Summary:
4537 :     Added 3 warp point GMC.
4538 :     Revision:
4539 :     xvidcore--devapi4--1.0--patch-2
4540 :    
4541 :     Added 3 warp point GMC (first cvs commit + bitstream warp writing fix
4542 :     from cvs)
4543 :    
4544 :     new files:
4545 :     ./src/motion/.arch-ids/gmc.c.id
4546 :     ./src/motion/.arch-ids/gmc.h.id ./src/motion/gmc.c
4547 :     ./src/motion/gmc.h
4548 :    
4549 :     modified files:
4550 :     ./build/generic/sources.inc ./src/bitstream/bitstream.c
4551 :     ./src/decoder.c ./src/decoder.h ./src/encoder.c
4552 :     ./src/encoder.h ./src/global.h ./src/motion/motion.h
4553 :     ./src/motion/motion_comp.c ./src/motion/motion_est.c
4554 :     ./src/motion/motion_est.h ./src/utils/mbfunctions.h
4555 :     ./src/xvid.h
4556 :    
4557 :    
4558 :     2003-06-29 21:35:01 GMT patch-1
4559 :    
4560 :     Summary:
4561 :     Updated changelog
4562 :     Revision:
4563 :     xvidcore--devapi4--1.0--patch-1
4564 :    
4565 :     Updated changelog
4566 :    
4567 :    
4568 :     modified files:
4569 :     ./changelog.txt
4570 :    
4571 :    
4572 :     2003-06-27 17:01:46 GMT base-0
4573 :    
4574 :     Summary:
4575 :     tag of ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-80
4576 :     Revision:
4577 :     xvidcore--devapi4--1.0--base-0
4578 :    
4579 :     (automatically generated log message)
4580 :    
4581 :     new patches:
4582 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--base-0
4583 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-1
4584 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-2
4585 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-3
4586 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-4
4587 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-5
4588 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-6
4589 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-7
4590 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-8
4591 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-9
4592 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-10
4593 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-11
4594 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-12
4595 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-13
4596 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-14
4597 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-15
4598 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-16
4599 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-17
4600 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-18
4601 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-19
4602 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-20
4603 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-21
4604 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-22
4605 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-23
4606 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-24
4607 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-25
4608 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-26
4609 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-27
4610 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-28
4611 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-29
4612 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-30
4613 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-31
4614 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-32
4615 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-33
4616 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-34
4617 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-35
4618 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-36
4619 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-37
4620 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-38
4621 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-39
4622 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-40
4623 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-41
4624 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-42
4625 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-43
4626 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-44
4627 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-45
4628 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-46
4629 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-47
4630 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-48
4631 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-49
4632 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-50
4633 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-51
4634 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-52
4635 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-53
4636 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-54
4637 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-55
4638 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-56
4639 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-57
4640 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-58
4641 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-59
4642 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-60
4643 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-61
4644 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-62
4645 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-63
4646 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-64
4647 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-65
4648 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-66
4649 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-67
4650 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-68
4651 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-69
4652 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-70
4653 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-71
4654 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-72
4655 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-73
4656 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-74
4657 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-75
4658 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-76
4659 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-77
4660 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-78
4661 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-79
4662 :     ed.gomez@free.fr--main/xvidcore--devapi4--1.0--patch-80
4663 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--base-0
4664 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-1
4665 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-2
4666 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-3
4667 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-4
4668 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-5
4669 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-6
4670 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-7
4671 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-8
4672 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-9
4673 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-10
4674 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-11
4675 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-12
4676 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-13
4677 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-14
4678 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-15
4679 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-16
4680 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-17
4681 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-18
4682 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-19
4683 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--patch-20
4684 :     ed.gomez@free.fr--main/xvidcore--stable--0.9--version-0
4685 :     ed.gomez@free.fr--main/xvidcore--stable--1.0--base-0
4686 :     ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-1
4687 :     ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-2
4688 :     ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-3
4689 :     ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-4
4690 :     ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-5
4691 :     ed.gomez@free.fr--main/xvidcore--stable--1.0--patch-6
4692 :    
4693 :    
4694 :     2003-06-27 13:42:52 GMT patch-80
4695 :    
4696 :     Summary:
4697 :     Still fixes and improvements to motion estimation
4698 :     Revision:
4699 :     xvidcore--devapi4--1.0--patch-80
4700 :    
4701 :     Still fixes and improvements to motion estimation.
4702 :    
4703 :     modified files:
4704 :     src/motion/motion_est.c src/motion/motion_est.h
4705 :    
4706 :    
4707 :     2003-06-27 13:35:20 GMT patch-79
4708 :    
4709 :     Summary:
4710 :     Added compile time PNM reading
4711 :     Revision:
4712 :     xvidcore--devapi4--1.0--patch-79
4713 :    
4714 :     Added compile time PNM reading. It can be useful to test RGB<->YV12
4715 :     conversions inside XviD.
4716 :    
4717 :     modified files:
4718 :     examples/xvid_encraw.c
4719 :    
4720 :    
4721 :     2003-06-24 12:19:01 GMT patch-78
4722 :    
4723 :     Summary:
4724 :     Fixes to the RD ME
4725 :     Revision:
4726 :     xvidcore--devapi4--1.0--patch-78
4727 :    
4728 :     Fixes to the RD ME.
4729 :    
4730 :     modified files:
4731 :     src/motion/motion_est.c src/motion/motion_est.h
4732 :    
4733 :    
4734 :     2003-06-14 09:14:11 GMT patch-77
4735 :    
4736 :     Summary:
4737 :     Zone update.
4738 :     Revision:
4739 :     xvidcore--devapi4--1.0--patch-77
4740 :    
4741 :     Removed zone warning boxes (they are counter productive)
4742 :     Added zone-based force key frame option.
4743 :    
4744 :     modified files:
4745 :     vfw/src/codec.c vfw/src/config.c vfw/src/config.h
4746 :     vfw/src/config.rc vfw/src/resource.h
4747 :    
4748 :    
4749 :     2003-06-14 09:06:37 GMT patch-76
4750 :    
4751 :     Summary:
4752 :     Fixes a bug where type was not respected in a BEFORE plugin.
4753 :     Revision:
4754 :     xvidcore--devapi4--1.0--patch-76
4755 :    
4756 :     Fixes a bug where type was not respected in a BEFORE plugin.
4757 :    
4758 :     The plugin framework was not copying what was passed to the
4759 :     call_plugins function.
4760 :    
4761 :     modified files:
4762 :     src/encoder.c
4763 :    
4764 :    
4765 :     2003-06-12 23:03:38 GMT patch-75
4766 :