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

« back to all changes in this revision

Viewing changes to libavcodec/mpc.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 17:51:19 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120175119-gu6kw1arv5tmf1vr
Tags: 3:0.svn20090119-1ubuntu1+unstripped1
* merge with the ubuntu.jaunty branch
* reenable x264 LP: #303537
* build against vdpau
* enable xvmc support

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include "avcodec.h"
33
33
#include "bitstream.h"
34
34
#include "dsputil.h"
35
 
 
36
 
#ifdef CONFIG_MPEGAUDIO_HP
37
 
#define USE_HIGHPRECISION
38
 
#endif
39
35
#include "mpegaudio.h"
40
36
 
41
37
#include "mpcdata.h"
74
70
    DECLARE_ALIGNED_16(int32_t, sb_samples[MPA_MAX_CHANNELS][36][SBLIMIT]);
75
71
} MPCContext;
76
72
 
77
 
extern void ff_mpc_init();
78
 
extern void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
 
73
void ff_mpc_init();
 
74
void ff_mpc_dequantize_and_synth(MPCContext *c, int maxband, void *dst);
79
75
 
80
76
#endif /* AVCODEC_MPC_H */