[svn] / branches / release-1_0-branch / xvidcore / ChangeLog Repository:
ViewVC logotype

Diff of /branches/release-1_0-branch/xvidcore/ChangeLog

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

revision 1449, Sun May 9 21:21:30 2004 UTC revision 1482, Sat Jul 10 17:37:16 2004 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    
7    2004-07-10 17:27:06 GMT                                         patch-43
8    
9        Summary:
10          Small mem leak in vfw.
11        Revision:
12          xvidcore--stable--1.0--patch-43
13    
14        From sysKin:
15         * Free zones.
16    
17        modified files:
18         vfw/src/codec.c
19    
20    
21    2004-07-10 16:55:53 GMT                                         patch-42
22    
23        Summary:
24          Fix wrong matrix reading logic.
25        Revision:
26          xvidcore--stable--1.0--patch-42
27    
28        From sysKin:
29         * Fix a problem reading quantization matrix.
30    
31        modified files:
32         src/bitstream/bitstream.c
33    
34    
35    2004-06-26 21:26:35 GMT                                         patch-41
36    
37        Summary:
38          low delay guessing (il)logic fix.
39        Revision:
40          xvidcore--stable--1.0--patch-41
41    
42        From sysKin:
43         * bframes were decoded wrong when trying to guess low_delay flag
44           as specified in the standard when vol_control_parameters aren't
45           available.
46    
47        modified files:
48         src/decoder.c
49    
50    
51    2004-06-13 19:15:05 GMT                                         patch-40
52    
53        Summary:
54          Small memory error in ia32 cpuid function.
55        Revision:
56          xvidcore--stable--1.0--patch-40
57    
58        From ed.gomez:
59         * Valgrind detected a write to suspicious stack space. To avoid
60           any false reporting, added an explicit stack space allocation.
61    
62        modified files:
63         src/utils/x86_asm/cpuid.asm
64    
65    #########################################################################
66    # 1.0.1 (Bitstream Version 35)
67    #########################################################################
68    
69    2004-06-05 22:55:56 GMT                                         patch-39
70    
71        Summary:
72          Marking 1.0.1 release
73        Revision:
74          xvidcore--stable--1.0--patch-39
75    
76        Marking 1.0.1 release
77    
78    
79        modified files:
80         ChangeLog TODO build/generic/configure.in src/xvid.c
81         src/xvid.h
82    
83    
84    2004-06-02 20:58:38 GMT                                         patch-38
85    
86        Summary:
87          DC clipping bug for real
88        Revision:
89          xvidcore--stable--1.0--patch-38
90    
91        From ed.gomez:
92         * patch-25  was  supposed to fix a DC clipping  bug. However  i
93           added the additional  clipping  code in the  wrong place. But
94           at least, my fix  didn't cause any trouble, it was just noop.
95           This patch should really fix this very "unlikely bug" (i  just
96           want to remind the reader that this bug isn't easy to  trigger,
97           and eg: my test sequences don't trigger it at all)
98    
99        BS version incremented: 35
100    
101        modified files:
102         src/decoder.c src/motion/estimation_rd_based.c
103         src/prediction/mbprediction.c src/prediction/mbprediction.h
104         src/xvid.h
105    
106    
107    2004-05-31 21:11:49 GMT                                         patch-37
108    
109        Summary:
110          time fixes to decoder.
111        Revision:
112          xvidcore--stable--1.0--patch-37
113    
114        From ed.gomez:
115         * timestamps were badly computed by teh decoder in some corner cases
116           (1fps). This bug revealed that, timestamps were indeed wrong as
117           expected, but that bvop blocks in direct mode (vectors interpolated)
118           were somewhat compensated with wrong vectors in these same corner
119           cases.
120    
121        modified files:
122         src/bitstream/bitstream.c src/decoder.c src/decoder.h
123    
124    
125    2004-05-30 09:36:13 GMT                                         patch-36
126    
127        Summary:
128          Wrong license header.
129        Revision:
130          xvidcore--stable--1.0--patch-36
131    
132        From ed.gomez:
133         * Pascal did agree a plain GPL migration long ago, but this file
134           remained GPL+location restriction.
135    
136        modified files:
137         src/image/reduced.c
138    
139    
140    2004-05-29 09:02:25 GMT                                         patch-35
141    
142        Summary:
143          More missing va_end() calls.
144        Revision:
145          xvidcore--stable--1.0--patch-35
146    
147        From pete:
148         * portab.h is plenty of missing calls to va_end().
149    
150        modified files:
151         src/portab.h
152    
153    
154    2004-05-28 21:28:21 GMT                                         patch-34
155    
156        Summary:
157          FPS=1 problem in decoder.
158        Revision:
159          xvidcore--stable--1.0--patch-34
160    
161        From ed.gomez:
162         * patch-24 did fix bad behavior in encoder, so at least, compliant
163           streams were generated but the decoder was still doing the maths
164           a wrong way. Apply same logic to decoder.
165    
166        Thanks to the patch-24 bug reporter for this followup.
167    
168        modified files:
169         src/bitstream/bitstream.c
170    
171    
172    2004-05-27 20:04:01 GMT                                         patch-33
173    
174        Summary:
175          Nasty typo in pvop vector lambdas.
176        Revision:
177          xvidcore--stable--1.0--patch-33
178    
179        From sysKin:
180         * s/+/*/ in the lambda value array for vectors in the pvop
181           estimation module.
182    
183        modified files:
184         src/motion/estimation_pvop.c
185    
186    
187    2004-05-26 13:23:38 GMT                                         patch-32
188    
189        Summary:
190          Bits/Bytes confusion in the VFW frontend.
191        Revision:
192          xvidcore--stable--1.0--patch-32
193    
194        From sysKin:
195         * confusion between the kilo, in kilobits (1000) and
196           the kilo in kilobytes (1024, should be named KiB anyway)
197         * biSizeImage is in bytes, not bits according to the Win32
198           API.
199    
200        modified files:
201         vfw/src/codec.c vfw/src/config.c
202    
203    
204    2004-05-26 09:28:31 GMT                                         patch-31
205    
206        Summary:
207          Close variable argument list.
208        Revision:
209          xvidcore--stable--1.0--patch-31
210    
211        From ed.gomez:
212         * Close the variable argument list as specified by the ANSI C
213           standard. Reported by Carsten <list4darav at gmx dot de> on
214           xvid-devel.
215    
216        modified files:
217         src/image/font.c
218    
219    
220    2004-05-26 09:00:26 GMT                                         patch-30
221    
222        Summary:
223          ICM compatibility for VFW
224        Revision:
225          xvidcore--stable--1.0--patch-30
226    
227        From sysKin:
228         * Makes the VFW frontend compatible with ICM applications
229           (Ooo, MS Office... etc). Reported on IRC.
230    
231        modified files:
232         vfw/src/config.c vfw/src/driverproc.c
233    
234    
235    2004-05-26 08:58:56 GMT                                         patch-29
236    
237        Summary:
238          Small trellis bug
239        Revision:
240          xvidcore--stable--1.0--patch-29
241    
242        From sysKin:
243         * Last coeff wasn't summed.
244    
245        Reported by Jean Marc.
246    
247        modified files:
248         src/utils/mbtransquant.c
249    
250    
251    2004-05-26 08:46:45 GMT                                         patch-28
252    
253        Summary:
254          Small bug in bframe ME.
255        Revision:
256          xvidcore--stable--1.0--patch-28
257    
258        From sysKin:
259         * Small bug in bframe ME.
260    
261        modified files:
262         src/motion/estimation_bvop.c
263    
264  #########################################################################  #########################################################################
265  # 1.0.0 final (Bitstream Version 34)  # 1.0.0 final (Bitstream Version 34)
266  #########################################################################  #########################################################################
267    
268    2004-05-08 22:26:06 GMT                                         patch-27
269    
270        Summary:
271          Marking 1.0.0 final
272        Revision:
273          xvidcore--stable--1.0--patch-27
274    
275        From ed.gomez:
276         * Marking 1.0.0 final \o/
277    
278        modified files:
279         ChangeLog build/generic/configure.in src/xvid.h
280    
281    
282  2004-05-06 17:56:52 GMT                                         patch-26  2004-05-06 17:56:52 GMT                                         patch-26
283    
284      Summary:      Summary:
# Line 1842  Line 2114 
2114         the bvop lag frame (black with error message).         the bvop lag frame (black with error message).
2115    
2116      Fixing previous patch a bit:      Fixing previous patch a bit:
2117       * added $Id: ChangeLog,v 1.2.2.2 2004-05-09 21:21:30 edgomez Exp $ fields       * added $Id: ChangeLog,v 1.2.2.4 2004-07-10 17:37:16 edgomez Exp $ fields
2118       * Fixed copyright       * Fixed copyright
2119    
2120      modified files:      modified files:

Legend:
Removed from v.1449  
changed lines
  Added in v.1482

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