~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/x86/mlpdsp.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "libavcodec/dsputil.h"
24
24
#include "libavcodec/mlp.h"
25
25
 
26
 
#if HAVE_7REGS && HAVE_TEN_OPERANDS
 
26
#if HAVE_7REGS
27
27
 
28
28
extern void ff_mlp_firorder_8;
29
29
extern void ff_mlp_firorder_7;
171
171
    );
172
172
}
173
173
 
174
 
#endif /* HAVE_7REGS && HAVE_TEN_OPERANDS */
 
174
#endif /* HAVE_7REGS */
175
175
 
176
176
void ff_mlp_init_x86(DSPContext* c, AVCodecContext *avctx)
177
177
{
178
 
#if HAVE_7REGS && HAVE_TEN_OPERANDS
 
178
#if HAVE_7REGS
179
179
    c->mlp_filter_channel = mlp_filter_channel_x86;
180
180
#endif
181
181
}