Lines Matching defs:avctx
54 AVCodecContext *avctx;
291 static av_cold int dss_sp_decode_init(AVCodecContext *avctx)
293 DssSpContext *p = avctx->priv_data;
294 avctx->sample_fmt = AV_SAMPLE_FMT_S16;
295 avctx->sample_rate = 11025;
296 av_channel_layout_uninit(&avctx->ch_layout);
297 avctx->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
300 p->avctx = avctx;
410 av_log (p->avctx, AV_LOG_WARNING, "combined_pitch was too large\n");
743 static int dss_sp_decode_frame(AVCodecContext *avctx, AVFrame *frame,
746 DssSpContext *p = avctx->priv_data;
755 av_log(avctx, AV_LOG_WARNING,
763 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)