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

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavcodec/atrac.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:
27
27
#include <math.h>
28
28
#include <stddef.h>
29
29
#include <stdio.h>
 
30
#include <string.h>
30
31
 
31
32
#include "avcodec.h"
32
33
#include "dsputil.h"
48
49
 * Generate common tables
49
50
 */
50
51
 
51
 
void atrac_generate_tables(void)
 
52
void ff_atrac_generate_tables(void)
52
53
{
53
54
    int i;
54
55
    float s;
79
80
 */
80
81
 
81
82
 
82
 
void atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp)
 
83
void ff_atrac_iqmf (float *inlo, float *inhi, unsigned int nIn, float *pOut, float *delayBuf, float *temp)
83
84
{
84
85
    int   i, j;
85
86
    float   *p1, *p3;
117
118
    /* Update the delay buffer. */
118
119
    memcpy(delayBuf, temp + nIn*2, 46*sizeof(float));
119
120
}
120