Lines Matching refs:inbuffer
298 * @param inbuffer pointer to byte array of indata
302 static inline int decode_bytes(const uint8_t *inbuffer, uint8_t *out, int bytes)
318 off = (intptr_t) inbuffer & 3;
319 buf = (const uint32_t *) (inbuffer - off);
706 * @param inbuffer pointer to the mltcoefficients
710 static void imlt_window_float(COOKContext *q, float *inbuffer,
723 inbuffer[i] = inbuffer[i] * fc * q->mlt_window[i] -
734 * @param inbuffer pointer to the mltcoefficients
738 static void imlt_gain(COOKContext *q, float *inbuffer,
746 q->mdct_ctx.imdct_calc(&q->mdct_ctx, q->mono_mdct_output, inbuffer);
878 * @param inbuffer pointer to raw stream data
882 const uint8_t *inbuffer,
887 offset = decode_bytes(inbuffer, q->decoded_bytes_buffer,
936 * @param inbuffer pointer to the inbuffer
940 const uint8_t *inbuffer, float **outbuffer)
946 decode_bytes_and_gain(q, p, inbuffer, &p->gains1);
956 decode_bytes_and_gain(q, p, inbuffer + sub_packet_size / 2, &p->gains2);