~ubuntu-branches/ubuntu/utopic/libav/utopic

« back to all changes in this revision

Viewing changes to libavcodec/x86/sbrdsp_init.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-12-21 15:32:13 UTC
  • mto: (1.2.18)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: package-import@ubuntu.com-20121221153213-fudzrugjzivtv0wp
Tags: upstream-9~beta3
ImportĀ upstreamĀ versionĀ 9~beta3

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
float ff_sbr_sum_square_sse(float (*x)[2], int n);
28
28
void ff_sbr_hf_g_filt_sse(float (*Y)[2], const float (*X_high)[40][2],
29
29
                          const float *g_filt, int m_max, intptr_t ixh);
 
30
void ff_sbr_hf_gen_sse(float (*X_high)[2], const float (*X_low)[2],
 
31
                       const float alpha0[2], const float alpha1[2],
 
32
                       float bw, int start, int end);
30
33
 
31
34
void ff_sbrdsp_init_x86(SBRDSPContext *s)
32
35
{
35
38
    if (EXTERNAL_SSE(mm_flags)) {
36
39
        s->sum_square = ff_sbr_sum_square_sse;
37
40
        s->hf_g_filt  = ff_sbr_hf_g_filt_sse;
 
41
        s->hf_gen     = ff_sbr_hf_gen_sse;
38
42
    }
39
43
}