Searched defs:WMAProDecodeCtx (Results 1 – 1 of 1) sorted by relevance
177 typedef struct WMAProDecodeCtx { struct179 AVCodecContext* avctx; ///< codec context for av_log180 AVFloatDSPContext *fdsp;181 uint8_t frame_data[MAX_FRAMESIZE +183 PutBitContext pb; ///< context for filling the frame_data buffer184 FFTContext mdct_ctx[WMAPRO_BLOCK_SIZES]; ///< MDCT context per block size185 DECLARE_ALIGNED(32, float, tmp)[WMAPRO_BLOCK_MAX_SIZE]; ///< IMDCT output buffer186 const float* windows[WMAPRO_BLOCK_SIZES]; ///< windows for the different block sizes189 uint32_t decode_flags; ///< used compression features190 uint8_t len_prefix; ///< frame is prefixed with its length[all …]