[cvs] / xvidcore / ChangeLog Repository:
ViewVC logotype

Diff of /xvidcore/ChangeLog

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

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

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.14.2.1

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