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.

86 lines
3.0KB

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