* qatar/master: vc1dec: Remove separate scaling function for interlaced field MVs vc1dec: Invoke edge_emulation regardless of MV precision x86: Use consistent 3dnowext function and macro name suffixes g723_1: scale output as supposed for the case with postfilter disabled g723_1: increase excitation storage by 4 g723_1: fix upper bound parameter from inverse maximum autocorrelation g723_1: make scale_vector() behave like the reference g723_1: fix off-by-one error in normalize_bits() g723_1: save/restore excitation with offset to store LPC history wmapro: prevent division by zero when sample rate is unspecified x86: proresdsp: improve SIGNEXTEND macro comments x86: h264dsp: K&R formatting cosmetics LICENSE: Document all GPL files Conflicts: libavcodec/g723_1.c libavcodec/wmaprodec.c libavcodec/x86/h264dsp_mmx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * This file is part of FFmpeg.
 | |
|  *
 | |
|  * FFmpeg is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Lesser General Public
 | |
|  * License as published by the Free Software Foundation; either
 | |
|  * version 2.1 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * FFmpeg is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
|  * Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public
 | |
|  * License along with FFmpeg; if not, write to the Free Software
 | |
|  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | |
|  */
 | |
| 
 | |
| #ifndef AVCODEC_X86_FFT_H
 | |
| #define AVCODEC_X86_FFT_H
 | |
| 
 | |
| #include "libavcodec/fft.h"
 | |
| 
 | |
| void ff_fft_permute_sse(FFTContext *s, FFTComplex *z);
 | |
| void ff_fft_calc_avx(FFTContext *s, FFTComplex *z);
 | |
| void ff_fft_calc_sse(FFTContext *s, FFTComplex *z);
 | |
| void ff_fft_calc_3dnow(FFTContext *s, FFTComplex *z);
 | |
| void ff_fft_calc_3dnowext(FFTContext *s, FFTComplex *z);
 | |
| 
 | |
| void ff_imdct_calc_3dnow(FFTContext *s, FFTSample *output, const FFTSample *input);
 | |
| void ff_imdct_half_3dnow(FFTContext *s, FFTSample *output, const FFTSample *input);
 | |
| void ff_imdct_calc_3dnowext(FFTContext *s, FFTSample *output, const FFTSample *input);
 | |
| void ff_imdct_half_3dnowext(FFTContext *s, FFTSample *output, const FFTSample *input);
 | |
| void ff_imdct_calc_sse(FFTContext *s, FFTSample *output, const FFTSample *input);
 | |
| void ff_imdct_half_sse(FFTContext *s, FFTSample *output, const FFTSample *input);
 | |
| void ff_imdct_half_avx(FFTContext *s, FFTSample *output, const FFTSample *input);
 | |
| void ff_dct32_float_sse(FFTSample *out, const FFTSample *in);
 | |
| void ff_dct32_float_sse2(FFTSample *out, const FFTSample *in);
 | |
| void ff_dct32_float_avx(FFTSample *out, const FFTSample *in);
 | |
| 
 | |
| #endif /* AVCODEC_X86_FFT_H */
 |