~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/fmtconvert.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include "avcodec.h"
24
24
#include "fmtconvert.h"
 
25
#include "libavutil/common.h"
25
26
 
26
27
static void int32_to_float_fmul_scalar_c(float *dst, const int *src, float mul, int len){
27
28
    int i;
84
85
 
85
86
    if (ARCH_ARM) ff_fmt_convert_init_arm(c, avctx);
86
87
    if (HAVE_ALTIVEC) ff_fmt_convert_init_altivec(c, avctx);
87
 
    if (HAVE_MMX) ff_fmt_convert_init_x86(c, avctx);
 
88
    if (ARCH_X86) ff_fmt_convert_init_x86(c, avctx);
88
89
}