FFmpeg
Loading...
Searching...
No Matches
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
32
33static 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
44int ff_dcaadpcm_subband_analysis(const DCAADPCMEncContext *s, const int32_t *input, int len, int *diff);
45
46int 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 */
int32_t
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
long long int64_t
Definition coverity.c:34
int ff_dcaadpcm_subband_analysis(const DCAADPCMEncContext *s, const int32_t *input, int len, int *diff)
Definition dcaadpcm.c:126
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:184
av_cold void ff_dcaadpcm_free(DCAADPCMEncContext *s)
Definition dcaadpcm.c:226
av_cold int ff_dcaadpcm_init(DCAADPCMEncContext *s)
Definition dcaadpcm.c:213
static int64_t ff_dcaadpcm_predict(int pred_vq_index, const int32_t *input)
Definition dcaadpcm.h:33
const int16_t ff_dca_adpcm_vb[DCA_ADPCM_VQCODEBOOK_SZ][DCA_ADPCM_COEFFS]
Definition dcadata.c:60
#define DCA_ADPCM_COEFFS
Definition dcadata.h:28
static int32_t norm13(int64_t a)
Definition dcamath.h:40
static int32_t clip23(int32_t a)
Definition dcamath.h:54
#define av_cold
Definition attributes.h:117
static const float pred[4]
Definition siprdata.h:259
void * private_data
Definition dcaadpcm.h:30
static FILE * out
Definition movenc.c:55
static const double coeff[2][5]
static av_always_inline int diff(const struct color_info *a, const struct color_info *b, const int trans_thresh)
static const uint8_t quant[64]
Definition vmixdec.c:71
int len