~ubuntu-branches/ubuntu/wily/x264/wily-proposed

« back to all changes in this revision

Viewing changes to common/x86/quant.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-19 07:28:39 UTC
  • mfrom: (12.1.11 experimental)
  • Revision ID: package-import@ubuntu.com-20120119072839-0vj6g40ky09d9nru
Tags: 2:0.120.2127+gitf33c8cb-2ubuntu1
* Merge from Debian, remaining changes:
  - build against libgpac-dev to enable .mp4 output

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
void x264_dequant_4x4_avx( dctcoef dct[16], int dequant_mf[6][16], int i_qp );
54
54
void x264_dequant_4x4dc_avx( dctcoef dct[16], int dequant_mf[6][16], int i_qp );
55
55
void x264_dequant_8x8_avx( dctcoef dct[64], int dequant_mf[6][64], int i_qp );
 
56
void x264_dequant_4x4_xop( dctcoef dct[16], int dequant_mf[6][16], int i_qp );
 
57
void x264_dequant_4x4dc_xop( dctcoef dct[16], int dequant_mf[6][16], int i_qp );
 
58
void x264_dequant_8x8_xop( dctcoef dct[64], int dequant_mf[6][64], int i_qp );
56
59
void x264_dequant_4x4_flat16_mmx( int16_t dct[16], int dequant_mf[6][16], int i_qp );
57
60
void x264_dequant_8x8_flat16_mmx( int16_t dct[64], int dequant_mf[6][64], int i_qp );
58
61
void x264_dequant_4x4_flat16_sse2( int16_t dct[16], int dequant_mf[6][16], int i_qp );
81
84
int x264_decimate_score64_sse2( dctcoef *dct );
82
85
int x264_decimate_score64_ssse3( dctcoef *dct );
83
86
int x264_coeff_last4_mmx2( dctcoef *dct );
 
87
int x264_coeff_last8_mmx2( dctcoef *dct );
84
88
int x264_coeff_last15_mmx2( dctcoef *dct );
85
89
int x264_coeff_last16_mmx2( dctcoef *dct );
86
90
int x264_coeff_last64_mmx2( dctcoef *dct );
 
91
int x264_coeff_last8_sse2( dctcoef *dct );
87
92
int x264_coeff_last15_sse2( dctcoef *dct );
88
93
int x264_coeff_last16_sse2( dctcoef *dct );
89
94
int x264_coeff_last64_sse2( dctcoef *dct );
90
95
int x264_coeff_last4_mmx2_lzcnt( dctcoef *dct );
 
96
int x264_coeff_last8_mmx2_lzcnt( dctcoef *dct );
 
97
int x264_coeff_last8_sse2_lzcnt( dctcoef *dct );
91
98
int x264_coeff_last15_sse2_lzcnt( dctcoef *dct );
92
99
int x264_coeff_last16_sse2_lzcnt( dctcoef *dct );
93
100
int x264_coeff_last64_sse2_lzcnt( dctcoef *dct );
99
106
int x264_coeff_level_run15_sse2_lzcnt( dctcoef *dct, x264_run_level_t *runlevel );
100
107
int x264_coeff_level_run4_mmx2( dctcoef *dct, x264_run_level_t *runlevel );
101
108
int x264_coeff_level_run4_mmx2_lzcnt( dctcoef *dct, x264_run_level_t *runlevel );
 
109
int x264_coeff_level_run8_mmx2( dctcoef *dct, x264_run_level_t *runlevel );
 
110
int x264_coeff_level_run8_mmx2_lzcnt( dctcoef *dct, x264_run_level_t *runlevel );
 
111
int x264_coeff_level_run8_sse2( dctcoef *dct, x264_run_level_t *runlevel );
 
112
int x264_coeff_level_run8_sse2_lzcnt( dctcoef *dct, x264_run_level_t *runlevel );
102
113
 
103
114
#endif