Lines Matching defs:AACEncContext
378 typedef struct AACEncContext { struct
379 AVClass *av_class;
380 AACEncOptions options; ///< encoding options
381 PutBitContext pb;
382 FFTContext mdct1024; ///< long (1024 samples) frame transform context
383 FFTContext mdct128; ///< short (128 samples) frame transform context
384 AVFloatDSPContext *fdsp;
385 AACPCEInfo pce; ///< PCE data, if needed
386 float *planar_samples[16]; ///< saved preprocessed input
388 int profile; ///< copied from avctx
389 int needs_pce; ///< flag for non-standard layout
390 LPCContext lpc; ///< used by TNS
391 int samplerate_index; ///< MPEG-4 samplerate index
392 int channels; ///< channel count
393 const uint8_t *reorder_map; ///< lavc to aac reorder map
394 const uint8_t *chan_map; ///< channel configuration map
396 ChannelElement *cpe; ///< channel elements
397 FFPsyContext psy;
398 struct FFPsyPreprocessContext* psypp;
399 const AACCoefficientsEncoder *coder;
423 } AACEncContext; argument