Xvid-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Original]

[XviD-devel] [fix bug for decode with intra_dc_threshold]


To: xvid-devel@xxxxxxxx
Subject: [XviD-devel] [fix bug for decode with intra_dc_threshold]
From: "陈敏" <chenm002@xxxxxxx>
Date: Tue, 29 Nov 2005 16:26:47 +0800 (CST)
Delivered-to: itdp@localhost
Delivered-to: xvid-devel@edu.bnhof.de

Hi,
    I fix some bug for decoder.

Index: decoder.c
===================================================================
RCS file: /xvid/xvidcore/src/decoder.c,v
retrieving revision 1.75
diff -r1.75 decoder.c
243a244
>         const uint32_t prev_quant, /* use for intra_dc_threshold */
277c278
<     if (quant < intra_dc_threshold) {
---
>     if (prev_quant < intra_dc_threshold) {
725a727
>   int prev_quant;
760a763
>       prev_quant = quant;
780c783
<       decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant,
---
>       decoder_mbintra(dec, mb, x, y, acpred_flag, cbp, bs, quant, prev_quant,
939a943
>   int prev_quant;
1003a1008
>         prev_quant = quant;
1060c1065
<                   intra_dc_threshold, bound);
---
>                   prev_quant, intra_dc_threshold, bound);

        chen
        chenm001@xxxxxxx
          2005-11-29
_______________________________________________
XviD-devel mailing list
XviD-devel@xxxxxxxx
http://list.xvid.org/mailman/listinfo/xvid-devel

[Prev in Thread] Current Thread [Next in Thread]