~ubuntu-branches/ubuntu/precise/ffmpeg-debian/precise

« back to all changes in this revision

Viewing changes to libavcodec/dsputil.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-11-15 19:44:29 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20081115194429-zwlw86ht1rctd8z9
Tags: 3:0.svn20081115-1ubuntu1
* merge from debian.
* keep myself in the maintainer field. If you are touching this or the
  'ffmpeg' package in multiverse, please get in touch with me. Both
  source packages come from the same packaging branch.
* drop dependency on faad.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
/* pngdec.c */
51
51
void ff_add_png_paeth_prediction(uint8_t *dst, uint8_t *src, uint8_t *top, int w, int bpp);
52
52
 
 
53
/* eaidct.c */
 
54
void ff_ea_idct_put_c(uint8_t *dest, int linesize, DCTELEM *block);
 
55
 
53
56
uint8_t ff_cropTbl[256 + 2 * MAX_NEG_CROP] = {0, };
54
57
uint32_t ff_squareTbl[512] = {0, };
55
58
 
4240
4243
            c->idct_add= ff_faanidct_add;
4241
4244
            c->idct    = ff_faanidct;
4242
4245
            c->idct_permutation_type= FF_NO_IDCT_PERM;
 
4246
        }else if(ENABLE_EATGQ_DECODER && avctx->idct_algo==FF_IDCT_EA) {
 
4247
            c->idct_put= ff_ea_idct_put_c;
 
4248
            c->idct_permutation_type= FF_NO_IDCT_PERM;
4243
4249
        }else{ //accurate/default
4244
4250
            c->idct_put= ff_simple_idct_put;
4245
4251
            c->idct_add= ff_simple_idct_add;