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

« back to all changes in this revision

Viewing changes to libavcodec/mpc.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 mpc.c Musepack decoder core
 
23
 * @file libavcodec/mpc.c Musepack decoder core
24
24
 * MPEG Audio Layer 1/2 -like codec with frames of 1152 samples
25
25
 * divided into 32 subbands.
26
26
 */
36
36
 
37
37
static DECLARE_ALIGNED_16(MPA_INT, mpa_window[512]);
38
38
 
39
 
void ff_mpc_init()
 
39
void ff_mpc_init(void)
40
40
{
41
41
    ff_mpa_synth_init(mpa_window);
42
42
}