~ubuntu-branches/ubuntu/lucid/ffmpeg/lucid-updates

« back to all changes in this revision

Viewing changes to libavcodec/alpha/simple_idct_alpha.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 17:51:19 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120175119-gu6kw1arv5tmf1vr
Tags: 3:0.svn20090119-1ubuntu1+unstripped1
* merge with the ubuntu.jaunty branch
* reenable x264 LP: #303537
* build against vdpau
* enable xvmc support

Show diffs side-by-side

added added

removed removed

Lines of Context:
255
255
    stq(l, col + 14 * 4); stq(r, col + 15 * 4);
256
256
}
257
257
 
258
 
void simple_idct_axp(DCTELEM *block)
 
258
void ff_simple_idct_axp(DCTELEM *block)
259
259
{
260
260
 
261
261
    int i;
295
295
    }
296
296
}
297
297
 
298
 
void simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block)
 
298
void ff_simple_idct_put_axp(uint8_t *dest, int line_size, DCTELEM *block)
299
299
{
300
 
    simple_idct_axp(block);
 
300
    ff_simple_idct_axp(block);
301
301
    put_pixels_clamped_axp_p(block, dest, line_size);
302
302
}
303
303
 
304
 
void simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block)
 
304
void ff_simple_idct_add_axp(uint8_t *dest, int line_size, DCTELEM *block)
305
305
{
306
 
    simple_idct_axp(block);
 
306
    ff_simple_idct_axp(block);
307
307
    add_pixels_clamped_axp_p(block, dest, line_size);
308
308
}