Searched defs:WMAProDecodeCtx (Results 1 – 1 of 1) sorted by relevance
180 typedef struct WMAProDecodeCtx { struct182 AVCodecContext* avctx; ///< codec context for av_log183 AVFloatDSPContext *fdsp;184 uint8_t frame_data[MAX_FRAMESIZE +186 PutBitContext pb; ///< context for filling the frame_data buffer187 FFTContext mdct_ctx[WMAPRO_BLOCK_SIZES]; ///< MDCT context per block size188 DECLARE_ALIGNED(32, float, tmp)[WMAPRO_BLOCK_MAX_SIZE]; ///< IMDCT output buffer189 const float* windows[WMAPRO_BLOCK_SIZES]; ///< windows for the different block sizes192 uint32_t decode_flags; ///< used compression features193 uint8_t len_prefix; ///< frame is prefixed with its length[all …]