[FFmpeg-soc] [soc]: r1443 - in rv40: rv34.c rv34.h rv34data.h rv40.c

Aurelien Jacobs aurel at gnuage.org
Tue Nov 13 22:12:51 CET 2007


kostya wrote:

> Author: kostya
> Date: Tue Nov 13 19:21:57 2007
> New Revision: 1443
> 
> Log:
> Loop filter is executed once per frame, not per slice and is codec-dependent.
> 
> 
> Modified:
>    rv40/rv34.c
>    rv40/rv34.h
>    rv40/rv34data.h
>    rv40/rv40.c
> 
> [...]
> 
> Modified: rv40/rv34data.h
> ==============================================================================
> --- rv40/rv34data.h	(original)
> +++ rv40/rv34data.h	Tue Nov 13 19:21:57 2007
> @@ -146,14 +146,14 @@ static const uint8_t rv34_mb_bits_sizes[
>  /**
>   * Dither values for deblocking filter - left/top values
>   */
> -static const uint8_t rv34_dither_l[16] = {
> +const uint8_t ff_rv34_dither_l[16] = {
>      0x40, 0x50, 0x20, 0x60, 0x30, 0x50, 0x40, 0x30,
>      0x50, 0x40, 0x50, 0x30, 0x60, 0x20, 0x50, 0x40
>  };

For now, those tables are only used by rv40.c. So unless you plan to
use them in rv30.c, those tables should be moved into rv40data.h as
static.

Aurel



More information about the FFmpeg-soc mailing list