Lines Matching refs:frame
56 GetBitContext gb; ///< GetBitContext initialized to start at the current frame
58 int blocksize; ///< number of samples in the current frame
60 int ch_mode; ///< channel decorrelation type in the current frame
104 frame data instead of extradata. */
479 av_log(s->avctx, AV_LOG_ERROR, "invalid frame header\n");
497 av_log(s->avctx, AV_LOG_ERROR, "bps not found in STREAMINFO or frame header\n");
524 " or frame header\n");
551 /* frame footer */
557 static int flac_decode_frame(AVCodecContext *avctx, AVFrame *frame,
585 this amount corresponds to the smallest valid FLAC frame possible.
599 /* decode frame */
617 frame->nb_samples = s->blocksize;
618 if ((ret = ff_thread_get_buffer(avctx, frame, 0)) < 0)
621 s->dsp.decorrelate[s->ch_mode](frame->data, s->decoded,