~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/arm/dsputil_init_neon.c

  • Committer: Henrik Rydgård
  • Date: 2014-01-03 10:44:32 UTC
  • Revision ID: git-v1:87c6c126784b1718bfa448ecf2e6a9fef781eb4e
Update our ffmpeg snapshot to a clone of the official repository.

This is because Maxim's at3plus support has been officially merged!

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
int32_t ff_scalarproduct_and_madd_int16_neon(int16_t *v1, const int16_t *v2,
46
46
                                             const int16_t *v3, int len, int mul);
47
47
 
48
 
void ff_apply_window_int16_neon(int16_t *dst, const int16_t *src,
49
 
                                const int16_t *window, unsigned n);
50
 
 
51
48
av_cold void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx)
52
49
{
53
50
    const int high_bit_depth = avctx->bits_per_raw_sample > 8;
76
73
 
77
74
    c->scalarproduct_int16 = ff_scalarproduct_int16_neon;
78
75
    c->scalarproduct_and_madd_int16 = ff_scalarproduct_and_madd_int16_neon;
79
 
 
80
 
    c->apply_window_int16 = ff_apply_window_int16_neon;
81
76
}