[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.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  2005/10/8 0:58:2, 'suxen_drol'  user:
7          compatibility with haali media splitter:  date:        Tue Nov 22 21:08:50 2005 +0100
8          - FORMAT_MPEG2Video support  files:       examples/xvid_bench.c
9          - handle uppercase MP4V fourcc/clsid  description:
10    Typos in xvid_bench
 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'  date:        Tue Nov 15 00:01:06 2005 +0100
14          bugfix: support for aspect ratio when decoding unpacked b-frames  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    
 2005/9/15 10:55:29, 'suxen_drol'  
         OutputDebugString cleanup  
206    
207  2005-09-19 19:37:45 GMT                                         patch-38  2005-09-19 19:37:45 GMT                                         patch-38
208    
# Line 558  Line 706 
706  # 1.1.0-beta2 (Bitstream Version 39)  # 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  2005-04-03 20:15:00 GMT                                         patch-7
725    
726      Summary:      Summary:

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

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