You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.8KB

  1. /*
  2. * AAC encoder
  3. * Copyright (C) 2008 Konstantin Shishkov
  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_AACENC_H
  22. #define AVCODEC_AACENC_H
  23. #include "avcodec.h"
  24. #include "put_bits.h"
  25. #include "dsputil.h"
  26. #include "aac.h"
  27. #include "psymodel.h"
  28. typedef struct AACEncOptions {
  29. int stereo_mode;
  30. } AACEncOptions;
  31. struct AACEncContext;
  32. typedef struct AACCoefficientsEncoder {
  33. void (*search_for_quantizers)(AVCodecContext *avctx, struct AACEncContext *s,
  34. SingleChannelElement *sce, const float lambda);
  35. void (*encode_window_bands_info)(struct AACEncContext *s, SingleChannelElement *sce,
  36. int win, int group_len, const float lambda);
  37. void (*quantize_and_encode_band)(struct AACEncContext *s, PutBitContext *pb, const float *in, int size,
  38. int scale_idx, int cb, const float lambda);
  39. void (*search_for_ms)(struct AACEncContext *s, ChannelElement *cpe, const float lambda);
  40. } AACCoefficientsEncoder;
  41. extern AACCoefficientsEncoder ff_aac_coders[];
  42. /**
  43. * AAC encoder context
  44. */
  45. typedef struct AACEncContext {
  46. AVClass *av_class;
  47. AACEncOptions options; ///< encoding options
  48. PutBitContext pb;
  49. FFTContext mdct1024; ///< long (1024 samples) frame transform context
  50. FFTContext mdct128; ///< short (128 samples) frame transform context
  51. DSPContext dsp;
  52. int16_t *samples; ///< saved preprocessed input
  53. int samplerate_index; ///< MPEG-4 samplerate index
  54. const uint8_t *chan_map; ///< channel configuration map
  55. ChannelElement *cpe; ///< channel elements
  56. FFPsyContext psy;
  57. struct FFPsyPreprocessContext* psypp;
  58. AACCoefficientsEncoder *coder;
  59. int cur_channel;
  60. int last_frame;
  61. float lambda;
  62. DECLARE_ALIGNED(16, int, qcoefs)[96]; ///< quantized coefficients
  63. DECLARE_ALIGNED(32, float, scoefs)[1024]; ///< scaled coefficients
  64. } AACEncContext;
  65. #endif /* AVCODEC_AACENC_H */