-
Notifications
You must be signed in to change notification settings - Fork 20
/
ChangeLog-1.0
7412 lines (5208 loc) · 213 KB
/
ChangeLog-1.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Ed.Gomez: This ChangeLog is generated from a personal tree maintained
# under the arch revision control tool. That's why dates may be skewed. I
# also removed all my email adresses from the output because they are not
# relevant.
#########################################################################
# 1.0.3 (Bitstream Version 37)
#########################################################################
2004-12-19 11:25:10 GMT patch-63
Summary:
Trellis overflow for quant<=2
Revision:
xvidcore--stable--1.0--patch-63
From skal:
* Don't call trellis optimization if quant <= 2 as the code
overflows
modified files:
src/utils/mbtransquant.c
2004-11-24 21:25:35 GMT patch-62
Summary:
Fixed stride in vfw frontend.
Revision:
xvidcore--stable--1.0--patch-62
From pete:
* Fixed the way stride is computed in the VFW frontend.
(Same cure as for the DShow frontend)
modified files:
vfw/src/codec.c
2004-11-24 21:09:45 GMT patch-61
Summary:
Fixed stride in DShow decoder.
Revision:
xvidcore--stable--1.0--patch-61
From pete:
* Fixed the way stride is computed in DShow filter
modified files:
dshow/src/CXvidDecoder.cpp
2004-11-24 21:05:54 GMT patch-60
Summary:
Fixed DiamondSearch
Revision:
xvidcore--stable--1.0--patch-60
From sysKin:
* Fixed DiamondSearch, wrong directions were used in two cases.
modified files:
src/motion/estimation_common.c
2004-10-12 20:59:17 GMT patch-59
Summary:
Don't read too short streams.
Revision:
xvidcore--stable--1.0--patch-59
From sysKin:
* Dont even try to read bitstreams shorter than 4 bytes
(nb: 4 bytes == size of startcodes).
modified files:
src/bitstream/bitstream.c
2004-10-12 20:33:59 GMT patch-58
Summary:
64bit fixes
Revision:
xvidcore--stable--1.0--patch-58
From Andre Werthmann (wertmann at aei dot mpg dot de):
- uint vs int cleanups for addresses. This fixes various problems
for 64bit platforms.
modified files:
src/image/interpolate8x8.h src/image/qpel.h
src/motion/estimation_bvop.c src/motion/motion_comp.c
2004-10-12 19:22:53 GMT patch-57
Summary:
ME fix.
Revision:
xvidcore--stable--1.0--patch-57
From gruel:
* Diamond search sets iDirection to 0 preventing further searches.
modified files:
src/motion/estimation_common.c
#########################################################################
# 1.0.2 (Bitstream Version 36)
#########################################################################
2004-08-29 11:35:02 GMT patch-56
Summary:
ChangeLog update
Revision:
xvidcore--stable--1.0--patch-56
ChangeLog update
modified files:
ChangeLog
2004-08-29 11:24:26 GMT patch-55
Summary:
Merged one important forgotten bugfix from head
Revision:
xvidcore--stable--1.0--patch-55
Merged one important forgotten bugfix from head
Patches applied:
* ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-70
Out of bounds MVs clipping
* ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-71
Decoder optimization (fixing regression)
modified files:
src/decoder.c
new patches:
ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-70
ed.gomez@free.fr--2004-1/xvidcore--head--0.0--patch-71
2004-08-29 10:51:58 GMT patch-54
Summary:
Marking 1.0.2
Revision:
xvidcore--stable--1.0--patch-54
From ed.gomez:
* Marking 1.0.2
modified files:
ChangeLog build/generic/configure.in src/xvid.c src/xvid.h
2004-08-22 13:08:44 GMT patch-53
Summary:
Thread safety problem in idct C version
Revision:
xvidcore--stable--1.0--patch-53
From ed.gomez:
* Fixed a thread safety problem in C version of the
idct function. Added some comments on some static
data not marked as RO.
modified files:
src/bitstream/mbcoding.c src/dct/idct.c
2004-08-21 11:45:55 GMT patch-52
Summary:
Stupid typo+error in fdct_xxx_skal macro generator.
Revision:
xvidcore--stable--1.0--patch-52
From Nicolas Boulay:
* Found a typo mistake (ecx->eax) and an error in the same line
But as we're lucky, the unrolled version was bugfree, and that
is that one which is used.
modified files:
src/dct/x86_asm/fdct_mmx_skal.asm
2004-07-26 20:21:24 GMT patch-51
Summary:
ChangeLog Update
Revision:
xvidcore--stable--1.0--patch-51
ChangeLog Update
modified files:
ChangeLog
2004-07-24 11:33:57 GMT patch-50
Summary:
BVOP direct/interpolated ref block rounding fix.
Revision:
xvidcore--stable--1.0--patch-50
From ed.gomez:
* BVOP direct/interpolated ref block rounding fix.
It's been using rounding=1 for averaging stage since ever.
The standard says it's rounding=0.
See standard clause 7.6.9.4 for explicit code and Section 6.3.5
that says "rounding=0" in bframes as they don't set the
vop_rounding_type in VOP header. Both sections match, xvid was
wrong
modified files:
src/decoder.c
2004-07-23 20:37:09 GMT patch-49
Summary:
Removed data qualifer in .rodata
Revision:
xvidcore--stable--1.0--patch-49
From ed.gomez:
* long standing warning by yasm... data isn't a keyword for
.(ro)data sections.
modified files:
src/bitstream/x86_asm/cbp_mmx.asm
src/bitstream/x86_asm/cbp_sse2.asm
src/dct/x86_asm/fdct_mmx_ffmpeg.asm
src/dct/x86_asm/fdct_mmx_skal.asm
src/dct/x86_asm/fdct_sse2_skal.asm
src/dct/x86_asm/idct_3dne.asm src/dct/x86_asm/idct_mmx.asm
src/dct/x86_asm/idct_sse2_dmitry.asm
src/dct/x86_asm/simple_idct_mmx.asm
src/image/x86_asm/colorspace_rgb_mmx.asm
src/image/x86_asm/colorspace_yuyv_mmx.asm
src/image/x86_asm/interpolate8x8_3dn.asm
src/image/x86_asm/interpolate8x8_3dne.asm
src/image/x86_asm/interpolate8x8_mmx.asm
src/image/x86_asm/interpolate8x8_xmm.asm
src/image/x86_asm/qpel_mmx.asm
src/image/x86_asm/reduced_mmx.asm
src/motion/x86_asm/sad_3dn.asm src/motion/x86_asm/sad_3dne.asm
src/motion/x86_asm/sad_mmx.asm src/motion/x86_asm/sad_sse2.asm
src/motion/x86_asm/sad_xmm.asm
src/quant/x86_asm/quantize_h263_3dne.asm
src/quant/x86_asm/quantize_h263_mmx.asm
src/quant/x86_asm/quantize_mpeg_mmx.asm
src/quant/x86_asm/quantize_mpeg_xmm.asm
src/utils/x86_asm/cpuid.asm
src/utils/x86_asm/interlacing_mmx.asm
src/utils/x86_asm/mem_transfer_3dne.asm
src/utils/x86_asm/mem_transfer_mmx.asm
2004-07-19 18:45:14 GMT patch-48
Summary:
Complete previous xvid_decraw patch
Revision:
xvidcore--stable--1.0--patch-48
Complete previous xvid_decraw patch
modified files:
examples/xvid_decraw.c
2004-07-18 11:58:48 GMT patch-47
Summary:
ISO C99'ism fix
Revision:
xvidcore--stable--1.0--patch-47
ISO C99'ism fix
modified files:
src/encoder.c
2004-07-17 11:32:42 GMT patch-46
Summary:
Make sure time incr is never larger than 16bit.
Revision:
xvidcore--stable--1.0--patch-46
From ed.gomez:
* Keep both fbase and fincr under 16bit limit.
modified files:
src/encoder.c
2004-07-17 10:00:42 GMT patch-45
Summary:
Future version interoperability
Revision:
xvidcore--stable--1.0--patch-45
From ed.gomez:
* Zeroing the structures is the best way not to pass
wrong data when dealing with slightly new XviD (like
head). If we don't zero here, then brightness is not
initialized in HEAD leading to crash.
modified files:
examples/xvid_decraw.c
2004-07-10 17:30:40 GMT patch-44
Summary:
ChangeLog update
Revision:
xvidcore--stable--1.0--patch-44
ChangeLog update
modified files:
ChangeLog
2004-07-10 17:27:06 GMT patch-43
Summary:
Small mem leak in vfw.
Revision:
xvidcore--stable--1.0--patch-43
From sysKin:
* Free zones.
modified files:
vfw/src/codec.c
2004-07-10 16:55:53 GMT patch-42
Summary:
Fix wrong matrix reading logic.
Revision:
xvidcore--stable--1.0--patch-42
From sysKin:
* Fix a problem reading quantization matrix.
modified files:
src/bitstream/bitstream.c
2004-06-26 21:26:35 GMT patch-41
Summary:
low delay guessing (il)logic fix.
Revision:
xvidcore--stable--1.0--patch-41
From sysKin:
* bframes were decoded wrong when trying to guess low_delay flag
as specified in the standard when vol_control_parameters aren't
available.
modified files:
src/decoder.c
2004-06-13 19:15:05 GMT patch-40
Summary:
Small memory error in ia32 cpuid function.
Revision:
xvidcore--stable--1.0--patch-40
From ed.gomez:
* Valgrind detected a write to suspicious stack space. To avoid
any false reporting, added an explicit stack space allocation.
modified files:
src/utils/x86_asm/cpuid.asm
#########################################################################
# 1.0.1 (Bitstream Version 35)
#########################################################################
2004-06-05 22:55:56 GMT patch-39
Summary:
Marking 1.0.1 release
Revision:
xvidcore--stable--1.0--patch-39
Marking 1.0.1 release
modified files:
ChangeLog TODO build/generic/configure.in src/xvid.c
src/xvid.h
2004-06-02 20:58:38 GMT patch-38
Summary:
DC clipping bug for real
Revision:
xvidcore--stable--1.0--patch-38
From ed.gomez:
* patch-25 was supposed to fix a DC clipping bug. However i
added the additional clipping code in the wrong place. But
at least, my fix didn't cause any trouble, it was just noop.
This patch should really fix this very "unlikely bug" (i just
want to remind the reader that this bug isn't easy to trigger,
and eg: my test sequences don't trigger it at all)
BS version incremented: 35
modified files:
src/decoder.c src/motion/estimation_rd_based.c
src/prediction/mbprediction.c src/prediction/mbprediction.h
src/xvid.h
2004-05-31 21:11:49 GMT patch-37
Summary:
time fixes to decoder.
Revision:
xvidcore--stable--1.0--patch-37
From ed.gomez:
* timestamps were badly computed by teh decoder in some corner cases
(1fps). This bug revealed that, timestamps were indeed wrong as
expected, but that bvop blocks in direct mode (vectors interpolated)
were somewhat compensated with wrong vectors in these same corner
cases.
modified files:
src/bitstream/bitstream.c src/decoder.c src/decoder.h
2004-05-30 09:36:13 GMT patch-36
Summary:
Wrong license header.
Revision:
xvidcore--stable--1.0--patch-36
From ed.gomez:
* Pascal did agree a plain GPL migration long ago, but this file
remained GPL+location restriction.
modified files:
src/image/reduced.c
2004-05-29 09:02:25 GMT patch-35
Summary:
More missing va_end() calls.
Revision:
xvidcore--stable--1.0--patch-35
From pete:
* portab.h is plenty of missing calls to va_end().
modified files:
src/portab.h
2004-05-28 21:28:21 GMT patch-34
Summary:
FPS=1 problem in decoder.
Revision:
xvidcore--stable--1.0--patch-34
From ed.gomez:
* patch-24 did fix bad behavior in encoder, so at least, compliant
streams were generated but the decoder was still doing the maths
a wrong way. Apply same logic to decoder.
Thanks to the patch-24 bug reporter for this followup.
modified files:
src/bitstream/bitstream.c
2004-05-27 20:04:01 GMT patch-33
Summary:
Nasty typo in pvop vector lambdas.
Revision:
xvidcore--stable--1.0--patch-33
From sysKin:
* s/+/*/ in the lambda value array for vectors in the pvop
estimation module.
modified files:
src/motion/estimation_pvop.c
2004-05-26 13:23:38 GMT patch-32
Summary:
Bits/Bytes confusion in the VFW frontend.
Revision:
xvidcore--stable--1.0--patch-32
From sysKin:
* confusion between the kilo, in kilobits (1000) and
the kilo in kilobytes (1024, should be named KiB anyway)
* biSizeImage is in bytes, not bits according to the Win32
API.
modified files:
vfw/src/codec.c vfw/src/config.c
2004-05-26 09:28:31 GMT patch-31
Summary:
Close variable argument list.
Revision:
xvidcore--stable--1.0--patch-31
From ed.gomez:
* Close the variable argument list as specified by the ANSI C
standard. Reported by Carsten <list4darav at gmx dot de> on
xvid-devel.
modified files:
src/image/font.c
2004-05-26 09:00:26 GMT patch-30
Summary:
ICM compatibility for VFW
Revision:
xvidcore--stable--1.0--patch-30
From sysKin:
* Makes the VFW frontend compatible with ICM applications
(Ooo, MS Office... etc). Reported on IRC.
modified files:
vfw/src/config.c vfw/src/driverproc.c
2004-05-26 08:58:56 GMT patch-29
Summary:
Small trellis bug
Revision:
xvidcore--stable--1.0--patch-29
From sysKin:
* Last coeff wasn't summed.
Reported by Jean Marc.
modified files:
src/utils/mbtransquant.c
2004-05-26 08:46:45 GMT patch-28
Summary:
Small bug in bframe ME.
Revision:
xvidcore--stable--1.0--patch-28
From sysKin:
* Small bug in bframe ME.
modified files:
src/motion/estimation_bvop.c
#########################################################################
# 1.0.0 final (Bitstream Version 34)
#########################################################################
2004-05-08 22:26:06 GMT patch-27
Summary:
Marking 1.0.0 final
Revision:
xvidcore--stable--1.0--patch-27
From ed.gomez:
* Marking 1.0.0 final \o/
modified files:
ChangeLog build/generic/configure.in src/xvid.h
2004-05-06 17:56:52 GMT patch-26
Summary:
Small mismatch in hint<->widget in VFW
Revision:
xvidcore--stable--1.0--patch-26
From sysKin:
* Small mismatch in hint<->widget.
modified files:
vfw/src/resource.rc
2004-05-02 22:40:50 GMT patch-25
Summary:
DC prediction fix.
Revision:
xvidcore--stable--1.0--patch-25
From ed.gomez:
* DC predictors weren't clipped to the [-2048, 2047] range.
BS version increased to 33
Thanks to jnorish on our forums to point out the problem.
modified files:
src/bitstream/bitstream.c src/decoder.c
src/motion/estimation_rd_based.c src/prediction/mbprediction.c
src/prediction/mbprediction.h src/xvid.h
2004-05-02 10:30:29 GMT patch-24
Summary:
Possible VOL header corruption.
Revision:
xvidcore--stable--1.0--patch-24
From ed.gomez:
* The VOL header could be corrupted when passing fincr=fbase=1 which
happens for fps=1 sequences.
BS version bumped up to 32
Original report:
http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=2026&highlight=
modified files:
src/bitstream/bitstream.c src/xvid.h
2004-04-30 23:10:19 GMT patch-23
Summary:
Some very light Unix build system changes
Revision:
xvidcore--stable--1.0--patch-23
To prepare testing framework merging.
From ed.gomez:
* Some typos
* Copyright updates (it's 2004 since a few months ;-)
* Added some checking to bootstrap.sh
* Added m4 AC_PREREQ macro to configure.in
modified files:
build/generic/Makefile build/generic/bootstrap.sh
build/generic/configure.in
2004-04-20 19:40:29 GMT patch-22
Summary:
Small visual fix.
Revision:
xvidcore--stable--1.0--patch-22
From sysKin:
* Small visual fix
modified files:
vfw/src/config.c
2004-04-20 19:38:24 GMT patch-21
Summary:
Fix crash in decoder for non IFrame 1st frame.
Revision:
xvidcore--stable--1.0--patch-21
From sysKin:
* Fixed the crash caused by non IFrame 1st frame.
modified files:
src/decoder.c
2004-04-18 16:21:50 GMT patch-20
Summary:
Typo
Revision:
xvidcore--stable--1.0--patch-20
Typo
modified files:
vfw/src/resource.rc
2004-04-17 17:04:20 GMT patch-19
Summary:
vfw opens audio file in shared access mode
Revision:
xvidcore--stable--1.0--patch-19
vfw opens audio file in shared access mode
modified files:
vfw/src/config.c
2004-04-15 22:39:12 GMT patch-18
Summary:
Tiny xvid_decraw cleaning
Revision:
xvidcore--stable--1.0--patch-18
Tiny xvid_decraw cleaning
modified files:
examples/xvid_decraw.c
2004-04-15 19:14:31 GMT patch-17
Summary:
Tiny minor fixes for msvc.
Revision:
xvidcore--stable--1.0--patch-17
From pete:
* Missing arch endianness define in project files.
* Add a textual warning about win32 console EOF misreading.
* Prevent a SIGFPE when no frames were decoded.
modified files:
build/win32/xvid_decraw.dsp build/win32/xvid_encraw.dsp
examples/xvid_decraw.c
2004-04-14 22:41:07 GMT patch-16
Summary:
Fixed missing 1st frame in dshow output.
Revision:
xvidcore--stable--1.0--patch-16
From sysKin:
* decoder flags were overwritten, this was preventing from outputing
the first frame immediatly.
modified files:
dshow/src/CXvidDecoder.cpp
2004-04-14 22:39:17 GMT patch-15
Summary:
Ressource leaking in dshow.
Revision:
xvidcore--stable--1.0--patch-15
From sysKin:
* Same kind of ressource leaking as in vfw. Same cure.
modified files:
dshow/src/CXvidDecoder.cpp dshow/src/CXvidDecoder.h
2004-04-14 19:45:23 GMT patch-14
Summary:
Fixed small bug in trellis code.
Revision:
xvidcore--stable--1.0--patch-14
From ed.gomez (spotted by jean marc):
* Trellis optimization was computing the sum |coeffs| wrongly
because the Compute_sum function wasn't doing zigzag scanning
and stopped at last non zero coeffs in linear scanning...
The trivial fix could have been to pass the zigzag to the compute
sum function so it could have done its job right.
But... Why computing stuff that is already known in the upper layer ?
I removed the compute sum function, and just pass the original sum
value in trellis function parameters, just in case we have to return
it again because trellis failed optimizing the block coeffs.
This fix the bug and saves cycles :-) (but should not be noticeable)
modified files:
src/utils/mbtransquant.c src/xvid.h
2004-04-12 12:06:12 GMT patch-13
Summary:
Don't do SAD and RD based searches for qp.
Revision:
xvidcore--stable--1.0--patch-13
From sysKin:
* MakeGoodFlags function wasn't disabling SAD based search when
using RD. This was causing slowdown for no gain at all. This
patch should speed up encoding in qp mode.
modified files:
src/motion/estimation_pvop.c
2004-04-12 12:01:19 GMT patch-12
Summary:
3dnow functions proper separation.
Revision:
xvidcore--stable--1.0--patch-12
From pete (thx to a forum report):
* Separate correctly pure 3dnow functions and 3dnow+mmxext functions.
This fix "Illegal instruction" crash on old k6-2 CPUs.
modified files:
src/xvid.c
2004-04-12 11:57:20 GMT patch-11
Summary:
Better MV clipping code.
Revision:
xvidcore--stable--1.0--patch-11
From sysKin:
* Better MV clipping. DivX 5 generates out of range vectors and clipping
them directly borks the decoding of other MVs for which out of range
MVs were predictors. So it's just better to clip them for the block
decoding and keep an unclipped version for predictions.
modified files:
src/decoder.c
2004-04-08 20:34:54 GMT patch-10
Summary:
PGM support back in xvid_decraw.
Revision:
xvidcore--stable--1.0--patch-10
From ed.gomez:
* pgm/pnm format added back to xvid_decraw
+ pgm/pnm formats are now default for yv12/i420/rgb24 pixel format.
+ tga is default for rgb16/32
+ use option -f to choose tga, or pnm/pgm
modified files:
examples/xvid_decraw.c
2004-04-07 22:30:15 GMT patch-9
Summary:
3DNow Ext functions use MMXEXT opcodes.
Revision:
xvidcore--stable--1.0--patch-9
From Soltius (XviD Forum):
* Most of 3dnow extension functions do use MMXEXT opcodes, so
classify these functions as 3dnowext+mmxext. Avoids K6-2
boxes to crash with an invalid instruction error reported
by the host OS.
PS: original bug report
http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1656
modified files:
src/xvid.c
2004-04-07 22:01:54 GMT patch-8
Summary:
RGB 16bit output fix.
Revision:
xvidcore--stable--1.0--patch-8
From ScarletteTout (XviD Forum):
* Fix RGB 16bit output in C functions.
From ed.gomez:
* Replaced PGM output by TGA output so it's easy to implement
RGB 16/24/32 and greyscale bitmaps support in a single format.
(pgm could have supported RGB 24 and Greyscale only)
* Added colorspace choice to xvid_decraw
Use option -c csp, where csp is either rgb16, rgb24, rgb32, yv12 or i420
Defaults to i420.
PS: original bug report
http://www.xvid.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=1960&highlight=
modified files:
examples/xvid_decraw.c src/image/colorspace.c
#########################################################################
# 1.0.0 RC4 (Bitstream Version 30)
#########################################################################
2004-04-04 20:21:38 GMT patch-7
Summary:
DShow widget hiding.
Revision:
xvidcore--stable--1.0--patch-7
From Michael:
* No need to keep widget visibles if they won't be in 1.0.0.
modified files:
dshow/src/xvid.ax.rc
2004-04-04 20:17:52 GMT patch-6
Summary:
Compiler quirk in portab.h
Revision:
xvidcore--stable--1.0--patch-6
From Michael:
* The VC.NET workaround was causing trouble. Inversed the test.
modified files:
src/portab.h
2004-04-04 14:19:10 GMT patch-5
Summary:
Marking RC4
Revision:
xvidcore--stable--1.0--patch-5
Marking RC4
modified files:
ChangeLog build/generic/configure.in src/xvid.h
2004-04-04 14:07:00 GMT patch-4