[cvs] / xvidcore / ChangeLog Repository:
ViewVC logotype

Diff of /xvidcore/ChangeLog

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

revision 1.2.2.3, Sat Jun 5 23:08:01 2004 UTC revision 1.2.2.6, Sun Aug 29 10:56:56 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    #########################################################################
8    # 1.0.2 (Bitstream Version 36)
9    #########################################################################
10    
11    2004-08-22 13:08:44 GMT                                         patch-53
12    
13        Summary:
14          Thread safety problem in idct C version
15        Revision:
16          xvidcore--stable--1.0--patch-53
17    
18        From ed.gomez:
19         * Fixed a thread safety problem in C version of the
20           idct function. Added some comments on some static
21           data not marked as RO.
22    
23        modified files:
24         src/bitstream/mbcoding.c src/dct/idct.c
25    
26    
27    2004-08-21 11:45:55 GMT                                         patch-52
28    
29        Summary:
30          Stupid typo+error in fdct_xxx_skal macro generator.
31        Revision:
32          xvidcore--stable--1.0--patch-52
33    
34        From Nicolas Boulay:
35         * Found a typo mistake (ecx->eax) and an error in the same line
36           But as we're lucky, the unrolled version was bugfree, and that
37           is that one which is used.
38    
39        modified files:
40         src/dct/x86_asm/fdct_mmx_skal.asm
41    
42    
43    2004-07-26 20:21:24 GMT                                         patch-51
44    
45        Summary:
46          ChangeLog Update
47        Revision:
48          xvidcore--stable--1.0--patch-51
49    
50        ChangeLog Update
51    
52    
53        modified files:
54         ChangeLog
55    
56    
57    2004-07-24 11:33:57 GMT                                         patch-50
58    
59        Summary:
60          BVOP direct/interpolated ref block rounding fix.
61        Revision:
62          xvidcore--stable--1.0--patch-50
63    
64        From ed.gomez:
65         * BVOP direct/interpolated ref block rounding fix.
66           It's been using rounding=1 for averaging stage since ever.
67           The standard says it's rounding=0.
68    
69           See standard clause 7.6.9.4 for explicit code and Section 6.3.5
70           that says "rounding=0" in bframes as they don't set the
71           vop_rounding_type in VOP header. Both sections match, xvid was
72           wrong
73    
74        modified files:
75         src/decoder.c
76    
77    
78    2004-07-23 20:37:09 GMT                                         patch-49
79    
80        Summary:
81          Removed data qualifer in .rodata
82        Revision:
83          xvidcore--stable--1.0--patch-49
84    
85        From ed.gomez:
86         * long standing warning by yasm... data isn't a keyword for
87           .(ro)data sections.
88    
89        modified files:
90         src/bitstream/x86_asm/cbp_mmx.asm
91         src/bitstream/x86_asm/cbp_sse2.asm
92         src/dct/x86_asm/fdct_mmx_ffmpeg.asm
93         src/dct/x86_asm/fdct_mmx_skal.asm
94         src/dct/x86_asm/fdct_sse2_skal.asm
95         src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
96         src/dct/x86_asm/idct_sse2_dmitry.asm
97         src/dct/x86_asm/simple_idct_mmx.asm
98         src/image/x86_asm/colorspace_rgb_mmx.asm
99         src/image/x86_asm/colorspace_yuyv_mmx.asm
100         src/image/x86_asm/interpolate8x8_3dn.asm
101         src/image/x86_asm/interpolate8x8_3dne.asm
102         src/image/x86_asm/interpolate8x8_mmx.asm
103         src/image/x86_asm/interpolate8x8_xmm.asm
104         src/image/x86_asm/qpel_mmx.asm
105         src/image/x86_asm/reduced_mmx.asm
106         src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
107         src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
108         src/motion/x86_asm/sad_xmm.asm
109         src/quant/x86_asm/quantize_h263_3dne.asm
110         src/quant/x86_asm/quantize_h263_mmx.asm
111         src/quant/x86_asm/quantize_mpeg_mmx.asm
112         src/quant/x86_asm/quantize_mpeg_xmm.asm
113         src/utils/x86_asm/cpuid.asm
114         src/utils/x86_asm/interlacing_mmx.asm
115         src/utils/x86_asm/mem_transfer_3dne.asm
116         src/utils/x86_asm/mem_transfer_mmx.asm
117    
118    
119    2004-07-19 18:45:14 GMT                                         patch-48
120    
121        Summary:
122          Complete previous xvid_decraw patch
123        Revision:
124          xvidcore--stable--1.0--patch-48
125    
126        Complete previous xvid_decraw patch
127    
128    
129        modified files:
130         examples/xvid_decraw.c
131    
132    
133    2004-07-18 11:58:48 GMT                                         patch-47
134    
135        Summary:
136          ISO C99'ism fix
137        Revision:
138          xvidcore--stable--1.0--patch-47
139    
140        ISO C99'ism fix
141    
142    
143        modified files:
144         src/encoder.c
145    
146    
147    2004-07-17 11:32:42 GMT                                         patch-46
148    
149        Summary:
150          Make sure time incr is never larger than 16bit.
151        Revision:
152          xvidcore--stable--1.0--patch-46
153    
154        From ed.gomez:
155         * Keep both fbase and fincr under 16bit limit.
156    
157        modified files:
158         src/encoder.c
159    
160    
161    2004-07-17 10:00:42 GMT                                         patch-45
162    
163        Summary:
164          Future version interoperability
165        Revision:
166          xvidcore--stable--1.0--patch-45
167    
168        From ed.gomez:
169         * Zeroing the structures is the best way not to pass
170           wrong data when dealing with slightly new XviD (like
171           head). If we don't zero here, then brightness is not
172           initialized in HEAD leading to crash.
173    
174        modified files:
175         examples/xvid_decraw.c
176    
177    
178    2004-07-10 17:30:40 GMT                                         patch-44
179    
180        Summary:
181          ChangeLog update
182        Revision:
183          xvidcore--stable--1.0--patch-44
184    
185        ChangeLog update
186    
187    
188        modified files:
189         ChangeLog
190    
191    
192    2004-07-10 17:27:06 GMT                                         patch-43
193    
194        Summary:
195          Small mem leak in vfw.
196        Revision:
197          xvidcore--stable--1.0--patch-43
198    
199        From sysKin:
200         * Free zones.
201    
202        modified files:
203         vfw/src/codec.c
204    
205    
206    2004-07-10 16:55:53 GMT                                         patch-42
207    
208        Summary:
209          Fix wrong matrix reading logic.
210        Revision:
211          xvidcore--stable--1.0--patch-42
212    
213        From sysKin:
214         * Fix a problem reading quantization matrix.
215    
216        modified files:
217         src/bitstream/bitstream.c
218    
219    
220    2004-06-26 21:26:35 GMT                                         patch-41
221    
222        Summary:
223          low delay guessing (il)logic fix.
224        Revision:
225          xvidcore--stable--1.0--patch-41
226    
227        From sysKin:
228         * bframes were decoded wrong when trying to guess low_delay flag
229           as specified in the standard when vol_control_parameters aren't
230           available.
231    
232        modified files:
233         src/decoder.c
234    
235    
236    2004-06-13 19:15:05 GMT                                         patch-40
237    
238        Summary:
239          Small memory error in ia32 cpuid function.
240        Revision:
241          xvidcore--stable--1.0--patch-40
242    
243        From ed.gomez:
244         * Valgrind detected a write to suspicious stack space. To avoid
245           any false reporting, added an explicit stack space allocation.
246    
247        modified files:
248         src/utils/x86_asm/cpuid.asm
249    
250  #########################################################################  #########################################################################
251  # 1.0.1 (Bitstream Version 35)  # 1.0.1 (Bitstream Version 35)
252  #########################################################################  #########################################################################
253    
254    2004-06-05 22:55:56 GMT                                         patch-39
255    
256        Summary:
257          Marking 1.0.1 release
258        Revision:
259          xvidcore--stable--1.0--patch-39
260    
261        Marking 1.0.1 release
262    
263    
264        modified files:
265         ChangeLog TODO build/generic/configure.in src/xvid.c
266         src/xvid.h
267    
268    
269  2004-06-02 20:58:38 GMT                                         patch-38  2004-06-02 20:58:38 GMT                                         patch-38
270    
271      Summary:      Summary:

Legend:
Removed from v.1.2.2.3  
changed lines
  Added in v.1.2.2.6

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