FFmpeg
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
mpegvideo_unquantize.c
Go to the documentation of this file.
1 /*
2  * Unquantize functions for mpegvideo
3  * Copyright (c) 2000,2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * 4MV & hq & B-frame encoding stuff by Michael Niedermayer <michaelni@gmx.at>
7  *
8  * This file is part of FFmpeg.
9  *
10  * FFmpeg is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public
12  * License as published by the Free Software Foundation; either
13  * version 2.1 of the License, or (at your option) any later version.
14  *
15  * FFmpeg is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Lesser General Public License for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public
21  * License along with FFmpeg; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23  */
24 
25 #include <stdint.h>
26 
27 #include "config.h"
28 
29 #include "libavutil/attributes.h"
30 #include "libavutil/avassert.h"
31 #include "avcodec.h"
32 #include "mpegvideo.h"
33 #include "mpegvideodata.h"
34 #include "mpegvideo_unquantize.h"
35 
37  int16_t *block, int n, int qscale)
38 {
39  int i, level, nCoeffs;
40  const uint16_t *quant_matrix;
41 
42  nCoeffs= s->block_last_index[n];
43 
44  block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
45  /* XXX: only MPEG-1 */
46  quant_matrix = s->intra_matrix;
47  for(i=1;i<=nCoeffs;i++) {
48  int j= s->intra_scantable.permutated[i];
49  level = block[j];
50  if (level) {
51  if (level < 0) {
52  level = -level;
53  level = (int)(level * qscale * quant_matrix[j]) >> 3;
54  level = (level - 1) | 1;
55  level = -level;
56  } else {
57  level = (int)(level * qscale * quant_matrix[j]) >> 3;
58  level = (level - 1) | 1;
59  }
60  block[j] = level;
61  }
62  }
63 }
64 
66  int16_t *block, int n, int qscale)
67 {
68  int i, level, nCoeffs;
69  const uint16_t *quant_matrix;
70 
71  nCoeffs= s->block_last_index[n];
72 
73  quant_matrix = s->inter_matrix;
74  for(i=0; i<=nCoeffs; i++) {
75  int j= s->intra_scantable.permutated[i];
76  level = block[j];
77  if (level) {
78  if (level < 0) {
79  level = -level;
80  level = (((level << 1) + 1) * qscale *
81  ((int) (quant_matrix[j]))) >> 4;
82  level = (level - 1) | 1;
83  level = -level;
84  } else {
85  level = (((level << 1) + 1) * qscale *
86  ((int) (quant_matrix[j]))) >> 4;
87  level = (level - 1) | 1;
88  }
89  block[j] = level;
90  }
91  }
92 }
93 
95  int16_t *block, int n, int qscale)
96 {
97  int i, level, nCoeffs;
98  const uint16_t *quant_matrix;
99 
100  if (s->q_scale_type) qscale = ff_mpeg2_non_linear_qscale[qscale];
101  else qscale <<= 1;
102 
103  nCoeffs= s->block_last_index[n];
104 
105  block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
106  quant_matrix = s->intra_matrix;
107  for(i=1;i<=nCoeffs;i++) {
108  int j= s->intra_scantable.permutated[i];
109  level = block[j];
110  if (level) {
111  if (level < 0) {
112  level = -level;
113  level = (int)(level * qscale * quant_matrix[j]) >> 4;
114  level = -level;
115  } else {
116  level = (int)(level * qscale * quant_matrix[j]) >> 4;
117  }
118  block[j] = level;
119  }
120  }
121 }
122 
124  int16_t *block, int n, int qscale)
125 {
126  int i, level, nCoeffs;
127  const uint16_t *quant_matrix;
128  int sum=-1;
129 
130  if (s->q_scale_type) qscale = ff_mpeg2_non_linear_qscale[qscale];
131  else qscale <<= 1;
132 
133  nCoeffs= s->block_last_index[n];
134 
135  block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
136  sum += block[0];
137  quant_matrix = s->intra_matrix;
138  for(i=1;i<=nCoeffs;i++) {
139  int j= s->intra_scantable.permutated[i];
140  level = block[j];
141  if (level) {
142  if (level < 0) {
143  level = -level;
144  level = (int)(level * qscale * quant_matrix[j]) >> 4;
145  level = -level;
146  } else {
147  level = (int)(level * qscale * quant_matrix[j]) >> 4;
148  }
149  block[j] = level;
150  sum+=level;
151  }
152  }
153  block[63]^=sum&1;
154 }
155 
157  int16_t *block, int n, int qscale)
158 {
159  int i, level, nCoeffs;
160  const uint16_t *quant_matrix;
161  int sum=-1;
162 
163  if (s->q_scale_type) qscale = ff_mpeg2_non_linear_qscale[qscale];
164  else qscale <<= 1;
165 
166  nCoeffs= s->block_last_index[n];
167 
168  quant_matrix = s->inter_matrix;
169  for(i=0; i<=nCoeffs; i++) {
170  int j= s->intra_scantable.permutated[i];
171  level = block[j];
172  if (level) {
173  if (level < 0) {
174  level = -level;
175  level = (((level << 1) + 1) * qscale *
176  ((int) (quant_matrix[j]))) >> 5;
177  level = -level;
178  } else {
179  level = (((level << 1) + 1) * qscale *
180  ((int) (quant_matrix[j]))) >> 5;
181  }
182  block[j] = level;
183  sum+=level;
184  }
185  }
186  block[63]^=sum&1;
187 }
188 
190  int16_t *block, int n, int qscale)
191 {
192  int i, level, qmul, qadd;
193  int nCoeffs;
194 
195  av_assert2(s->block_last_index[n]>=0 || s->h263_aic);
196 
197  qmul = qscale << 1;
198 
199  if (!s->h263_aic) {
200  block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale;
201  qadd = (qscale - 1) | 1;
202  }else{
203  qadd = 0;
204  }
205  if(s->ac_pred)
206  nCoeffs=63;
207  else
208  nCoeffs= s->intra_scantable.raster_end[ s->block_last_index[n] ];
209 
210  for(i=1; i<=nCoeffs; i++) {
211  level = block[i];
212  if (level) {
213  if (level < 0) {
214  level = level * qmul - qadd;
215  } else {
216  level = level * qmul + qadd;
217  }
218  block[i] = level;
219  }
220  }
221 }
222 
224  int16_t *block, int n, int qscale)
225 {
226  int i, level, qmul, qadd;
227  int nCoeffs;
228 
229  av_assert2(s->block_last_index[n]>=0);
230 
231  qadd = (qscale - 1) | 1;
232  qmul = qscale << 1;
233 
234  nCoeffs= s->inter_scantable.raster_end[ s->block_last_index[n] ];
235 
236  for(i=0; i<=nCoeffs; i++) {
237  level = block[i];
238  if (level) {
239  if (level < 0) {
240  level = level * qmul - qadd;
241  } else {
242  level = level * qmul + qadd;
243  }
244  block[i] = level;
245  }
246  }
247 }
248 
250  int bitexact, int q_scale_type)
251 {
252  s->dct_unquantize_h263_intra = dct_unquantize_h263_intra_c;
253  s->dct_unquantize_h263_inter = dct_unquantize_h263_inter_c;
254  s->dct_unquantize_mpeg1_intra = dct_unquantize_mpeg1_intra_c;
255  s->dct_unquantize_mpeg1_inter = dct_unquantize_mpeg1_inter_c;
256  s->dct_unquantize_mpeg2_intra = dct_unquantize_mpeg2_intra_c;
257  if (bitexact)
258  s->dct_unquantize_mpeg2_intra = dct_unquantize_mpeg2_intra_bitexact;
259  s->dct_unquantize_mpeg2_inter = dct_unquantize_mpeg2_inter_c;
260 
261 #if HAVE_INTRINSICS_NEON
262  ff_mpv_unquantize_init_neon(s, bitexact);
263 #endif
264 
265 #if ARCH_ARM
266  ff_mpv_unquantize_init_arm(s, bitexact);
267 #elif ARCH_PPC
268  ff_mpv_unquantize_init_ppc(s, bitexact);
269 #elif ARCH_X86
270  ff_mpv_unquantize_init_x86(s, bitexact);
271 #elif ARCH_MIPS
272  ff_mpv_unquantize_init_mips(s, bitexact, q_scale_type);
273 #endif
274 }
mpegvideo_unquantize.h
level
uint8_t level
Definition: svq3.c:205
ff_mpv_unquantize_init_arm
av_cold void ff_mpv_unquantize_init_arm(MPVUnquantDSPContext *s, int bitexact)
Definition: mpegvideo_arm.c:49
ff_mpv_unquantize_init_x86
void ff_mpv_unquantize_init_x86(MPVUnquantDSPContext *s, int bitexact)
Definition: mpegvideo.c:453
ff_mpv_unquantize_init_neon
void ff_mpv_unquantize_init_neon(MPVUnquantDSPContext *s, int bitexact)
Definition: mpegvideo.c:128
ff_mpv_unquantize_init_ppc
void ff_mpv_unquantize_init_ppc(MPVUnquantDSPContext *s, int bitexact)
Definition: mpegvideo_altivec.c:106
ff_mpeg2_non_linear_qscale
const uint8_t ff_mpeg2_non_linear_qscale[32]
Definition: mpegvideodata.c:26
mpegvideo.h
dct_unquantize_mpeg1_intra_c
static void dct_unquantize_mpeg1_intra_c(MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo_unquantize.c:36
dct_unquantize_h263_intra_c
static void dct_unquantize_h263_intra_c(MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo_unquantize.c:189
dct_unquantize_mpeg2_intra_c
static void dct_unquantize_mpeg2_intra_c(MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo_unquantize.c:94
avassert.h
av_cold
#define av_cold
Definition: attributes.h:90
s
#define s(width, name)
Definition: cbs_vp9.c:198
ff_mpv_unquantize_init
av_cold void ff_mpv_unquantize_init(MPVUnquantDSPContext *s, int bitexact, int q_scale_type)
Definition: mpegvideo_unquantize.c:249
dct_unquantize_mpeg2_intra_bitexact
static void dct_unquantize_mpeg2_intra_bitexact(MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo_unquantize.c:123
dct_unquantize_mpeg1_inter_c
static void dct_unquantize_mpeg1_inter_c(MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo_unquantize.c:65
mpegvideodata.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
ff_mpv_unquantize_init_mips
av_cold void ff_mpv_unquantize_init_mips(MPVUnquantDSPContext *s, int bitexact, int q_scale_type)
Definition: mpegvideo_init_mips.c:27
avcodec.h
dct_unquantize_h263_inter_c
static void dct_unquantize_h263_inter_c(MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo_unquantize.c:223
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207
dct_unquantize_mpeg2_inter_c
static void dct_unquantize_mpeg2_inter_c(MpegEncContext *s, int16_t *block, int n, int qscale)
Definition: mpegvideo_unquantize.c:156
MPVUnquantDSPContext
Definition: mpegvideo_unquantize.h:34
MpegEncContext
MpegEncContext.
Definition: mpegvideo.h:64