Lines Matching defs:FLACContext
51 typedef struct FLACContext {
69 } FLACContext;
71 static int allocate_buffers(FLACContext *s);
73 static void flac_set_bps(FLACContext *s)
100 FLACContext *s = avctx->priv_data;
135 static int allocate_buffers(FLACContext *s)
167 static int parse_streaminfo(FLACContext *s, const uint8_t *buf, int buf_size)
221 static int decode_residuals(FLACContext *s, int32_t *decoded, int pred_order)
282 static int decode_subframe_fixed(FLACContext *s, int32_t *decoded,
361 static int decode_subframe_lpc(FLACContext *s, int32_t *decoded, int pred_order,
405 static inline int decode_subframe(FLACContext *s, int channel)
472 static int decode_frame(FLACContext *s)
562 FLACContext *s = avctx->priv_data;
641 FLACContext *s = avctx->priv_data;
649 { "use_buggy_lpc", "emulate old buggy lavc behavior", offsetof(FLACContext, buggy_lpc), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM },
665 .priv_data_size = sizeof(FLACContext),