FFmpeg
mpegvideo_altivec.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2002 Dieter Shirley
3  *
4  * dct_unquantize_h263_altivec:
5  * Copyright (c) 2003 Romain Dolbeau <romain@dolbeau.org>
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 #include <stdlib.h>
25 #include <stdio.h>
26 
27 #include "config.h"
28 
29 #include "libavutil/attributes.h"
30 #include "libavutil/cpu.h"
31 #include "libavutil/mem_internal.h"
32 #include "libavutil/ppc/cpu.h"
34 
35 #include "libavcodec/mpegvideo.h"
37 
38 #if HAVE_ALTIVEC
39 
40 /* AltiVec version of dct_unquantize_h263
41  this code assumes `block' is 16 bytes-aligned */
42 static void dct_unquantize_h263_altivec(MpegEncContext *s,
43  int16_t *block, int n, int qscale)
44 {
45  int i, qmul, qadd;
46  int nCoeffs;
47 
48  qadd = (qscale - 1) | 1;
49  qmul = qscale << 1;
50 
51  if (s->mb_intra) {
52  if (!s->h263_aic) {
53  if (n < 4)
54  block[0] = block[0] * s->y_dc_scale;
55  else
56  block[0] = block[0] * s->c_dc_scale;
57  }else
58  qadd = 0;
59  i = 1;
60  if (s->ac_pred)
61  nCoeffs = 63;
62  else
63  nCoeffs = s->intra_scantable.raster_end[s->block_last_index[n]];
64  } else {
65  i = 0;
66  av_assert2(s->block_last_index[n]>=0);
67  nCoeffs = s->inter_scantable.raster_end[s->block_last_index[n]];
68  }
69 
70  {
71  register const vector signed short vczero = (const vector signed short)vec_splat_s16(0);
72  DECLARE_ALIGNED(16, short, qmul8) = qmul;
73  DECLARE_ALIGNED(16, short, qadd8) = qadd;
74  register vector signed short blockv, qmulv, qaddv, nqaddv, temp1;
75  register vector bool short blockv_null, blockv_neg;
76  register short backup_0 = block[0];
77 
78  qmulv = vec_splat((vec_s16)vec_lde(0, &qmul8), 0);
79  qaddv = vec_splat((vec_s16)vec_lde(0, &qadd8), 0);
80  nqaddv = vec_sub(vczero, qaddv);
81 
82  // vectorize all the 16 bytes-aligned blocks
83  // of 8 elements
84  for (register int j = 0; j <= nCoeffs ; j += 8) {
85  blockv = vec_ld(j << 1, block);
86  blockv_neg = vec_cmplt(blockv, vczero);
87  blockv_null = vec_cmpeq(blockv, vczero);
88  // choose between +qadd or -qadd as the third operand
89  temp1 = vec_sel(qaddv, nqaddv, blockv_neg);
90  // multiply & add (block{i,i+7} * qmul [+-] qadd)
91  temp1 = vec_mladd(blockv, qmulv, temp1);
92  // put 0 where block[{i,i+7} used to have 0
93  blockv = vec_sel(temp1, blockv, blockv_null);
94  vec_st(blockv, j << 1, block);
95  }
96 
97  if (i == 1) {
98  // cheat. this avoid special-casing the first iteration
99  block[0] = backup_0;
100  }
101  }
102 }
103 
104 #endif /* HAVE_ALTIVEC */
105 
107 {
108 #if HAVE_ALTIVEC
110  return;
111 
112  s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec;
113  s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec;
114 #endif /* HAVE_ALTIVEC */
115 }
mpegvideo_unquantize.h
mem_internal.h
mpegvideo.h
av_get_cpu_flags
int av_get_cpu_flags(void)
Return the flags which specify extensions supported by the CPU.
Definition: cpu.c:109
vec_s16
#define vec_s16
Definition: util_altivec.h:37
av_cold
#define av_cold
Definition: attributes.h:90
s
#define s(width, name)
Definition: cbs_vp9.c:198
ff_mpv_unquantize_init_ppc
av_cold void ff_mpv_unquantize_init_ppc(MPVUnquantDSPContext *s, int bitexact)
Definition: mpegvideo_altivec.c:106
PPC_ALTIVEC
#define PPC_ALTIVEC(flags)
Definition: cpu.h:25
DECLARE_ALIGNED
#define DECLARE_ALIGNED(n, t, v)
Definition: mem_internal.h:104
cpu.h
attributes.h
av_assert2
#define av_assert2(cond)
assert() equivalent, that does lie in speed critical code.
Definition: avassert.h:67
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
util_altivec.h
cpu.h
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207
MPVUnquantDSPContext
Definition: mpegvideo_unquantize.h:34
MpegEncContext
MpegEncContext.
Definition: mpegvideo.h:64
short
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option keep it simple and lowercase description are short
Definition: writing_filters.txt:89