• Main Page
  • Related Pages
  • Modules
  • Data Structures
  • Files
  • File List
  • Globals

libavcodec/mpegaudiodsp.h

Go to the documentation of this file.
00001 /*
00002  * This file is part of Libav.
00003  *
00004  * Libav is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU Lesser General Public
00006  * License as published by the Free Software Foundation; either
00007  * version 2.1 of the License, or (at your option) any later version.
00008  *
00009  * Libav is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012  * Lesser General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU Lesser General Public
00015  * License along with Libav; if not, write to the Free Software
00016  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
00017  */
00018 
00019 #ifndef AVCODEC_MPEGAUDIODSP_H
00020 #define AVCODEC_MPEGAUDIODSP_H
00021 
00022 #include <stdint.h>
00023 #include "libavutil/common.h"
00024 
00025 typedef struct MPADSPContext {
00026     void (*apply_window_float)(float *synth_buf, float *window,
00027                                int *dither_state, float *samples, int incr);
00028     void (*apply_window_fixed)(int32_t *synth_buf, int32_t *window,
00029                                int *dither_state, int16_t *samples, int incr);
00030     void (*dct32_float)(float *dst, const float *src);
00031     void (*dct32_fixed)(int *dst, const int *src);
00032 
00033     void (*imdct36_blocks_float)(float *out, float *buf, float *in,
00034                                  int count, int switch_point, int block_type);
00035     void (*imdct36_blocks_fixed)(int *out, int *buf, int *in,
00036                                  int count, int switch_point, int block_type);
00037 } MPADSPContext;
00038 
00039 void ff_mpadsp_init(MPADSPContext *s);
00040 
00041 extern int32_t ff_mpa_synth_window_fixed[];
00042 extern float   ff_mpa_synth_window_float[];
00043 
00044 void ff_mpa_synth_filter_fixed(MPADSPContext *s,
00045                                int32_t *synth_buf_ptr, int *synth_buf_offset,
00046                                int32_t *window, int *dither_state,
00047                                int16_t *samples, int incr,
00048                                int32_t *sb_samples);
00049 
00050 void ff_mpa_synth_filter_float(MPADSPContext *s,
00051                                float *synth_buf_ptr, int *synth_buf_offset,
00052                                float *window, int *dither_state,
00053                                float *samples, int incr,
00054                                float *sb_samples);
00055 
00056 void ff_mpadsp_init_arm(MPADSPContext *s);
00057 void ff_mpadsp_init_mmx(MPADSPContext *s);
00058 void ff_mpadsp_init_altivec(MPADSPContext *s);
00059 
00060 void ff_mpa_synth_init_float(float *window);
00061 void ff_mpa_synth_init_fixed(int32_t *window);
00062 
00063 void ff_mpadsp_apply_window_float(float *synth_buf, float *window,
00064                                   int *dither_state, float *samples,
00065                                   int incr);
00066 void ff_mpadsp_apply_window_fixed(int32_t *synth_buf, int32_t *window,
00067                                   int *dither_state, int16_t *samples,
00068                                   int incr);
00069 
00070 void ff_imdct36_blocks_float(float *out, float *buf, float *in,
00071                              int count, int switch_point, int block_type);
00072 
00073 void ff_imdct36_blocks_fixed(int *out, int *buf, int *in,
00074                              int count, int switch_point, int block_type);
00075 
00076 void ff_init_mpadsp_tabs_float(void);
00077 void ff_init_mpadsp_tabs_fixed(void);
00078 
00080 #define MDCT_BUF_SIZE FFALIGN(36, 2*4)
00081 
00082 extern int ff_mdct_win_fixed[8][MDCT_BUF_SIZE];
00083 extern float ff_mdct_win_float[8][MDCT_BUF_SIZE];
00084 
00085 #endif /* AVCODEC_MPEGAUDIODSP_H */
Generated on Fri Feb 1 2013 14:34:40 for FFmpeg by doxygen 1.7.1