~ppsspp/ppsspp/ffmpeg

« back to all changes in this revision

Viewing changes to libavcodec/ac3enc_fixed.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:
71
71
 
72
72
 
73
73
/*
74
 
 * Apply KBD window to input samples prior to MDCT.
75
 
 */
76
 
static void apply_window(void *dsp, int16_t *output, const int16_t *input,
77
 
                         const int16_t *window, unsigned int len)
78
 
{
79
 
    DSPContext *dsp0 = dsp;
80
 
    dsp0->apply_window_int16(output, input, window, len);
81
 
}
82
 
 
83
 
 
84
 
/*
85
74
 * Normalize the input samples to use the maximum available precision.
86
75
 * This assumes signed 16-bit input samples.
87
76
 */