Lines Matching defs:avctx
33 AVCodecContext *avctx;
91 av_log(s->avctx, AV_LOG_ERROR, "tag stack overflow\n");
158 static int webvtt_encode_frame(AVCodecContext *avctx,
161 WebVTTContext *s = avctx->priv_data;
171 av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n");
189 av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n");
197 static int webvtt_encode_close(AVCodecContext *avctx)
199 WebVTTContext *s = avctx->priv_data;
205 static av_cold int webvtt_encode_init(AVCodecContext *avctx)
207 WebVTTContext *s = avctx->priv_data;
208 s->avctx = avctx;
209 s->ass_ctx = ff_ass_split(avctx->subtitle_header);