41 int16_t *
block,
int n,
int qscale)
43 int i,
level, qmul, qadd;
46 qadd = (qscale - 1) | 1;
66 register const vector
signed short vczero = (
const vector
signed short)vec_splat_s16(0);
69 register vector
signed short blockv, qmulv, qaddv, nqaddv, temp1;
70 register vector
bool short blockv_null, blockv_neg;
71 register short backup_0 = block[0];
74 qmulv = vec_splat((
vec_s16)vec_lde(0, &qmul8), 0);
75 qaddv = vec_splat((
vec_s16)vec_lde(0, &qadd8), 0);
76 nqaddv = vec_sub(vczero, qaddv);
80 for(; (j + 7) <= nCoeffs ; j+=8) {
81 blockv = vec_ld(j << 1, block);
82 blockv_neg = vec_cmplt(blockv, vczero);
83 blockv_null = vec_cmpeq(blockv, vczero);
85 temp1 = vec_sel(qaddv, nqaddv, blockv_neg);
87 temp1 = vec_mladd(blockv, qmulv, temp1);
89 blockv = vec_sel(temp1, blockv, blockv_null);
90 vec_st(blockv, j << 1, block);
97 for(; j <= nCoeffs ; j++) {
101 level = level * qmul - qadd;
103 level = level * qmul + qadd;
int dct_algo
DCT algorithm, see FF_DCT_* below.
int h263_aic
Advanced INTRA Coding (AIC)
void(* dct_unquantize_h263_intra)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
Macro definitions for various function/variable attributes.
void(* dct_unquantize_h263_inter)(struct MpegEncContext *s, int16_t *block, int n, int qscale)
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
av_cold void ff_mpv_common_init_ppc(MpegEncContext *s)
#define DECLARE_ALIGNED(n, t, v)
Declare a variable that is aligned in memory.
#define PPC_ALTIVEC(flags)
int block_last_index[12]
last non zero coefficient in block
ScanTable intra_scantable
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Contains misc utility macros and inline functions.
struct AVCodecContext * avctx