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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-09-24 17:07:00 UTC
  • mfrom: (1.1.17) (7.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130924170700-4dg62s3pwl0pdakz
Tags: 1.2.0-1
* New upstream stable release:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.2.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <stdio.h>
26
26
#include "dsputil.h"
27
27
#include "cavsdsp.h"
 
28
#include "libavutil/common.h"
28
29
 
29
30
/*****************************************************************************
30
31
 *
543
544
    c->cavs_filter_cv = cavs_filter_cv_c;
544
545
    c->cavs_filter_ch = cavs_filter_ch_c;
545
546
    c->cavs_idct8_add = cavs_idct8_add_c;
 
547
    c->idct_perm = FF_NO_IDCT_PERM;
546
548
 
547
 
    if (HAVE_MMX) ff_cavsdsp_init_mmx(c, avctx);
 
549
    if (ARCH_X86)
 
550
        ff_cavsdsp_init_x86(c, avctx);
548
551
}