~siretart/libav/merge.raring.libav-0.8.6

« back to all changes in this revision

Viewing changes to libavcodec/mpegaudiodsp.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:30:00 UTC
  • mfrom: (1.4.1)
  • mto: (1.3.11 sid) (26.1.1 quantal-security)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: package-import@ubuntu.com-20120112223000-s1reiy1e28hnix42
Tags: upstream-0.8~beta2
ImportĀ upstreamĀ versionĀ 0.8~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    DCTContext dct;
29
29
 
30
30
    ff_dct_init(&dct, 5, DCT_II);
 
31
    ff_init_mpadsp_tabs_float();
 
32
    ff_init_mpadsp_tabs_fixed();
31
33
 
32
34
    s->apply_window_float = ff_mpadsp_apply_window_float;
33
35
    s->apply_window_fixed = ff_mpadsp_apply_window_fixed;
35
37
    s->dct32_float = dct.dct32;
36
38
    s->dct32_fixed = ff_dct32_fixed;
37
39
 
 
40
    s->imdct36_blocks_float = ff_imdct36_blocks_float;
 
41
    s->imdct36_blocks_fixed = ff_imdct36_blocks_fixed;
 
42
 
38
43
    if (ARCH_ARM)     ff_mpadsp_init_arm(s);
39
44
    if (HAVE_MMX)     ff_mpadsp_init_mmx(s);
40
45
    if (HAVE_ALTIVEC) ff_mpadsp_init_altivec(s);