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

Kostya kostya.shishkov at gmail.com
Wed Nov 14 08:38:16 CET 2007


On Tue, Nov 13, 2007 at 10:12:51PM +0100, Aurelien Jacobs wrote:
> 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.

When I resolve which tables are needed by what filters I'll move it.
 
> Aurel



More information about the FFmpeg-soc mailing list