[cvs] / xvidcore / ChangeLog Repository:
ViewVC logotype

Diff of /xvidcore/ChangeLog

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

revision 1.14, Sun Oct 9 07:38:33 2005 UTC revision 1.14.2.2, Thu Jun 28 15:16:37 2007 UTC
# Line 3  Line 3 
3  # also removed all my email adresses from the output because they are not  # also removed all my email adresses from the output because they are not
4  # relevant.  # relevant.
5    
6  2005/10/8 0:58:2, 'suxen_drol'  user:   Isibaar
7          compatibility with haali media splitter:  date:           Thu Jun 27 14:38:05 2007 +0100
8          - FORMAT_MPEG2Video support  files:  src/bitstream/mbcoding.c
9          - handle uppercase MP4V fourcc/clsid  description:
10    - patch for a potential vulnerability reported by Secunia
 2005/10/7 15:2:28, 'suxen_drol'  
         minor xvid_{enc,dec}_raw fixes:  
         - fix clock resolution (thanks yuri khan)  
         - link vfw32.lib for win32 avifile support  
         - honour avifile stream length  
   
 2005/10/6 18:28:31, 'Isibaar'  
         - added avi/avs input support  
         - various new options  
   
 2005/10/6 10:46:42, 'Isibaar'  
         - Wiped the remainders of RRV encoding support  
         - Marked the RRV flags as obsolete in xvid.h API  
   
 2005/10/5 11:20:22, 'suxen_drol'  
         vfw: replace "Picture Aspect Ratio" with "Display Aspect Ratio"  
   
 2005/9/24 3:10:37, 'suxen_drol'  
         bugfix: calc_cbp_mmx was ignoring negative coeff case. have replaced "coeff_sum>0" evaluation with "coeff_sum != 0"  
         see http://forum.doom9.org/showthread.php?t=100275 for description of bug.  
   
 2005/9/23 12:53:35, 'suxen_drol'  
         +ve/-ve cbp test (to demonstrate fault with current calc_cbp_mmx function  
   
 2005/9/20 11:54:11, 'suxen_drol'  
         > > -      uint32_t intra_dc_threshold; /* fake variable */  
         > > +      int intra_dc_threshold; /* fake variable */  
         This patch fixes a warning spotted by gcc 4.0.1, because &intra_dc_threshold  
         is passed to some function which expects a int*, not a uint32_t* (on 64bit this  
         is important, even if this is fake data, the callee could corrupt the stack  
         writing 64bit to a 32bit allocated destination)  
   
 2005/9/20 11:51:40, 'suxen_drol'  
         msvc fails on void* arithmetic in xvid_bench.c  
   
 2005/9/20 11:19:34, 'suxen_drol'  
         update example documentation to "newer" commandline arguments for encraw/decraw (the arguments were changed ~2003).  
         bugfix: prevent endless loop when useful_bytes==1 within xvid_decraw.c  
11    
 2005/9/18 1:34:13, 'suxen_drol'  
         renamed dshow "Aspect_Ratio" registry key to "Decoder_Aspect_Ratio", in order to prevent conflict with vfw encoder registry key.  
12    
13  2005/9/15 10:52:28, 'suxen_drol'  user:
14          bugfix: support for aspect ratio when decoding unpacked b-frames  date:        Tue Nov 22 21:08:50 2005 +0100
15    files:       examples/xvid_bench.c
16    description:
17    Typos in xvid_bench
18    
19    
20    date:        Tue Nov 15 00:01:06 2005 +0100
21    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
22    description:
23    Pointer type mismatchs
24    
25    From ed.gomez:
26     * Pointer type mismatchs, correct casts do the trick.
27       Spotted by sparse.
28    
29    
30    date:        Wed Nov  2 01:28:25 2005 +0100
31    files:       src/bitstream/bitstream.c src/decoder.c src/image/colorspace.c src/image/font.c src/image/qpel.c src/prediction/mbprediction.c
32    description:
33    Fixed symbols scope
34    
35    From ed.gomez:
36     * Some symbols were defined with too wide scopes. These have
37       been narrowed to help the compiler. Spotted by sparse.
38    
39    
40    date:        Tue Nov  1 19:29:03 2005 +0100
41    files:       src/dct/idct.c src/image/qpel.c src/utils/emms.c src/xvid.c
42    description:
43    Fixed non ANSI C prototypes (bis)
44    
45    From ed.gomez:
46     * ANSI C requires explicit void arg. Spotted by sparse.
47    
48    
49    date:        Tue Nov  1 19:21:55 2005 +0100
50    files:       src/utils/timer.h
51    description:
52    Fixed non ANSI C prototypes
53    
54    From ed.gomez:
55     * ANSI C requires explicit void arg. Spotted by sparse.
56    
57    
58    date:        Tue Nov  1 19:14:46 2005 +0100
59    files:       src/encoder.c src/image/qpel.c src/prediction/mbprediction.c src/xvid.c
60    description:
61    Fixed using plain 0 instead of NULL
62    
63    From ed.gomez:
64     * Removed all occurences of plain 0 when dealing with pointers.
65       Use of NULL is the way to do this. Spotted by sparse.
66    
67    
68    date:        Wed Oct 26 21:04:18 2005 +0200
69    files:       examples/xvid_bench.c src/image/qpel.h
70    description:
71    Micro optimization in qpel code
72    
73    From skal:
74     * removed the x_Ref%4 in qpel.h, in favor of x_Ref>>2.
75       As suggested by Gruel, there might be a compiler problem for
76       some very very exotic platform. Hence, i've added a test_compiler()
77       in xvid_bench.c, to be sure everything are ok. Hope the test is
78       correct.
79    
80     * added benches for interlaced decoding, as supplied by Christoph
81       Kühnel (info at intek-darmstadt dot de).
82       Thanks a lot.
83    
84    
85    date:        Wed Oct 26 20:57:58 2005 +0200
86    files:       vfw/src/codec.c vfw/src/config.c vfw/src/config.h
87    description:
88    Renamed/extended VFW profiles
89    
90    From michael:
91     * Renamed and extended profiles declared in VFW GUI
92    
93    
94    date:        Sun Oct 16 12:41:34 2005 +0200
95    files:       vfw/src/codec.c vfw/src/config.c vfw/src/config.h vfw/src/resource.h vfw/src/resource.rc
96    description:
97    Added quality presets to VFW GUI
98    
99    From pete:
100     * Added quality presets to VFW GUI. Should help the beginner
101       users.
102    
103    
104    date:        Fri Oct 14 22:35:38 2005 +0200
105    files:       TODO
106    description:
107    Updated TODO
108    
109    
110    date:        Fri Oct 14 22:33:25 2005 +0200
111    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
112    description:
113    Added debian build directory.
114    
115    From ed.gomez:
116     * Added the debian build directory i used to maintain for 2 years now as
117       a separate source project.
118    
119    
120    date:        Fri Oct 14 22:25:17 2005 +0200
121    files:       dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
122    description:
123    Two updates to the DShow frontend
124    
125    From pete:
126     * Compatibility with haali media splitter:
127       + FORMAT_MPEG2Video support
128       + handle uppercase MP4V fourcc/clsid
129    
130    
131    date:        Fri Oct 14 22:21:52 2005 +0200
132    files:       vfw/src/resource.rc
133    description:
134    Label changers in vfw GUI
135    
136    From pete:
137     * Changed some labels in VFW GUI
138    
139    
140    date:        Fri Oct 14 22:19:29 2005 +0200
141    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
142    description:
143    Updates to the example apps
144    
145    From pete:
146     * update example documentation to "newer" commandline arguments for
147       encraw/decraw (the arguments were changed ~2003).
148     * Added AVI/AVS input in xvid_encraw
149     * prevent endless loop when useful_bytes==1 within xvid_decraw.c
150     * fix clock resolution in xvid_enc/decraw (thanks yuri khan)
151     * link vfw32.lib for win32 avifile support in xvid_encraw
152     * honour avifile stream length
153    
154    
155    date:        Fri Oct 14 22:08:43 2005 +0200
156    files:       src/bitstream/x86_asm/cbp_mmx.asm
157    description:
158    Fixed calc_cbp_mmx
159    
160    From pete:
161    * calc_cbp_mmx was ignoring negative coeff case. have replaced "coeff_sum>0"
162      evaluation with "coeff_sum != 0"
163    
164    See:
165    http://forum.doom9.org/showthread.php?t=100275 for description of bug.
166    
167    
168    date:        Fri Oct 14 22:03:29 2005 +0200
169    files:       src/bitstream/bitstream.c src/xvid.h
170    description:
171    Removed last traces of reduced resolution code
172    
173    From michael:
174     * Removed last traces of reduced resolution support in thebitstream code
175       Marked the reduced flags as deprecated in the xvid.h header
176    
177    
178    date:        Mon Sep 19 18:08:35 2005 +0000
179    files:       ChangeLog build/generic/configure.in src/xvid.c src/xvid.h
180    description:
181    Marked release 1.1.0-beta3
182    
183    From ed.gomez:
184     * Marked release 1.1.0-beta3
185    
186    
187    date:        Mon Sep 19 17:47:45 2005 +0000
188    files:       src/decoder.c
189    description:
190    GCC 4.0.1 warning in decoder.c
191    
192    From ed.gomez:
193     * Fixed a gcc 4.0.1 warning
194    
195    
196    #########################################################################
197    # 1.1.0-beta3 (Bitstream Version 40)
198    #########################################################################
199    
200    2005-09-19 19:47:45 GMT                                         patch-39
201    
202        Summary:
203          GCC 4.0.1 warning in decoder.c
204        Revision:
205          xvidcore--head--0.0--patch-39
206    
207        From ed.gomez:
208         * Fixed a gcc 4.0.1 warning
209    
210        modified files:
211         src/decoder.c
212    
 2005/9/15 10:55:29, 'suxen_drol'  
         OutputDebugString cleanup  
213    
214  2005-09-19 19:37:45 GMT                                         patch-38  2005-09-19 19:37:45 GMT                                         patch-38
215    
# Line 558  Line 713 
713  # 1.1.0-beta2 (Bitstream Version 39)  # 1.1.0-beta2 (Bitstream Version 39)
714  #########################################################################  #########################################################################
715    
716    2005-04-03 20:16:22 GMT                                         patch-8
717    
718        Summary:
719          Marking 1.1.0-beta2
720        Revision:
721          xvidcore--head--0.0--patch-8
722    
723        Marking 1.1.0-beta2
724    
725    
726        modified files:
727         AUTHORS ChangeLog build/generic/configure.in
728         src/bitstream/mbcoding.c src/xvid.c src/xvid.h
729    
730    
731  2005-04-03 20:15:00 GMT                                         patch-7  2005-04-03 20:15:00 GMT                                         patch-7
732    
733      Summary:      Summary:

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

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