dcaadpcm.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. #ifndef AVCODEC_DCAADPCM_H
  22. #define AVCODEC_DCAADPCM_H
  23. #include "dcamath.h"
  24. #include "dcadata.h"
  25. #include "dcaenc.h"
  26. typedef struct DCAADPCMEncContext {
  27. void *private_data;
  28. } DCAADPCMEncContext;
  29. static inline int64_t ff_dcaadpcm_predict(int pred_vq_index, const int32_t *input)
  30. {
  31. int i;
  32. const int16_t *coeff = ff_dca_adpcm_vb[pred_vq_index];
  33. int64_t pred = 0;
  34. for (i = 0; i < DCA_ADPCM_COEFFS; i++)
  35. pred += (int64_t)input[DCA_ADPCM_COEFFS - 1 - i] * coeff[i];
  36. return clip23(norm13(pred));
  37. }
  38. int ff_dcaadpcm_subband_analysis(const DCAADPCMEncContext *s, const int32_t *input, int len, int *diff);
  39. int ff_dcaadpcm_do_real(int pred_vq_index,
  40. softfloat quant, int32_t scale_factor, int32_t step_size,
  41. const int32_t *prev_hist, const int32_t *in, int32_t *next_hist, int32_t *out,
  42. int len, int32_t peak);
  43. av_cold int ff_dcaadpcm_init(DCAADPCMEncContext *s);
  44. av_cold void ff_dcaadpcm_free(DCAADPCMEncContext *s);
  45. #endif /* AVCODEC_DCAADPCM_H */