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

« back to all changes in this revision

Viewing changes to libavcodec/dct-test.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-02-05 21:45:05 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090205214505-fvn0jkiv3lrkaaq4
Tags: 3:0.svn20090204-2ubuntu1+unstripped1
rebuild using a clean, uncrippled ffmpeg tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 */
21
21
 
22
22
/**
23
 
 * @file dct-test.c
24
 
 * DCT test. (c) 2001 Fabrice Bellard.
 
23
 * @file libavcodec/dct-test.c
 
24
 * DCT test (c) 2001 Fabrice Bellard
25
25
 * Started from sample code by Juan J. Sierralta P.
26
26
 */
27
27
 
48
48
/* reference fdct/idct */
49
49
void fdct(DCTELEM *block);
50
50
void idct(DCTELEM *block);
51
 
void init_fdct();
 
51
void init_fdct(void);
52
52
 
53
53
void ff_mmx_idct(DCTELEM *data);
54
54
void ff_mmxext_idct(DCTELEM *data);