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

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/ra144.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:
22
22
#include <stdint.h>
23
23
#include "avcodec.h"
24
24
#include "celp_filters.h"
 
25
#include "mathops.h"
25
26
#include "ra144.h"
26
27
 
27
28
const int16_t ff_gain_val_tab[256][3] = {
1715
1716
           LPC_ORDER*sizeof(*ractx->curr_sblock));
1716
1717
 
1717
1718
    if (ff_celp_lp_synthesis_filter(ractx->curr_sblock + LPC_ORDER, lpc_coefs,
1718
 
                                    block, BLOCKSIZE, LPC_ORDER, 1, 0xfff))
 
1719
                                    block, BLOCKSIZE, LPC_ORDER, 1, 0, 0xfff))
1719
1720
        memset(ractx->curr_sblock, 0, (LPC_ORDER+BLOCKSIZE)*sizeof(*ractx->curr_sblock));
1720
1721
}