FFmpeg
dcaadpcm.h
Go to the documentation of this file.
1 /*
2  * DCA ADPCM engine
3  * Copyright (C) 2017 Daniil Cherednik
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #ifndef AVCODEC_DCAADPCM_H
23 #define AVCODEC_DCAADPCM_H
24 
25 #include "dcamath.h"
26 #include "dcadata.h"
27 #include "dcaenc.h"
28 
29 typedef struct DCAADPCMEncContext {
30  void *private_data;
32 
33 static inline int64_t ff_dcaadpcm_predict(int pred_vq_index, const int32_t *input)
34 {
35  int i;
36  const int16_t *coeff = ff_dca_adpcm_vb[pred_vq_index];
37  int64_t pred = 0;
38  for (i = 0; i < DCA_ADPCM_COEFFS; i++)
39  pred += (int64_t)input[DCA_ADPCM_COEFFS - 1 - i] * coeff[i];
40 
41  return clip23(norm13(pred));
42 }
43 
45 
46 int ff_dcaadpcm_do_real(int pred_vq_index,
47  softfloat quant, int32_t scale_factor, int32_t step_size,
48  const int32_t *prev_hist, const int32_t *in, int32_t *next_hist, int32_t *out,
49  int len, int32_t peak);
50 
53 
54 #endif /* AVCODEC_DCAADPCM_H */
dcamath.h
ff_dcaadpcm_do_real
int ff_dcaadpcm_do_real(int pred_vq_index, softfloat quant, int32_t scale_factor, int32_t step_size, const int32_t *prev_hist, const int32_t *in, int32_t *next_hist, int32_t *out, int len, int32_t peak)
Definition: dcaadpcm.c:183
norm13
static int32_t norm13(int64_t a)
Definition: dcamath.h:40
DCAADPCMEncContext
Definition: dcaadpcm.h:29
out
FILE * out
Definition: movenc.c:54
DCAADPCMEncContext::private_data
void * private_data
Definition: dcaadpcm.h:30
dcadata.h
clip23
static int32_t clip23(int32_t a)
Definition: dcamath.h:54
quant
static int quant(float coef, const float Q, const float rounding)
Quantize one coefficient.
Definition: aacenc_utils.h:59
av_cold
#define av_cold
Definition: attributes.h:90
ff_dcaadpcm_predict
static int64_t ff_dcaadpcm_predict(int pred_vq_index, const int32_t *input)
Definition: dcaadpcm.h:33
s
#define s(width, name)
Definition: cbs_vp9.c:257
DCA_ADPCM_COEFFS
#define DCA_ADPCM_COEFFS
Definition: dcadata.h:28
softfloat
Definition: dcaenc.h:29
dcaenc.h
input
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some input
Definition: filter_design.txt:172
ff_dcaadpcm_free
av_cold void ff_dcaadpcm_free(DCAADPCMEncContext *s)
Definition: dcaadpcm.c:225
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:271
len
int len
Definition: vorbis_enc_data.h:426
ff_dca_adpcm_vb
const int16_t ff_dca_adpcm_vb[DCA_ADPCM_VQCODEBOOK_SZ][DCA_ADPCM_COEFFS]
Definition: dcadata.c:60
pred
static const float pred[4]
Definition: siprdata.h:259
diff
static av_always_inline int diff(const uint32_t a, const uint32_t b)
Definition: vf_palettegen.c:139
int32_t
int32_t
Definition: audioconvert.c:56
coeff
static const double coeff[2][5]
Definition: vf_owdenoise.c:78
ff_dcaadpcm_init
av_cold int ff_dcaadpcm_init(DCAADPCMEncContext *s)
Definition: dcaadpcm.c:212
ff_dcaadpcm_subband_analysis
int ff_dcaadpcm_subband_analysis(const DCAADPCMEncContext *s, const int32_t *input, int len, int *diff)
Definition: dcaadpcm.c:125