Lines Matching defs:avctx
115 int av_parser_parse2(AVCodecParserContext *s, AVCodecContext *avctx,
123 av_assert1(avctx->codec_id != AV_CODEC_ID_NONE);
126 av_assert1(avctx->codec_id == s->parser->codec_ids[0] ||
127 avctx->codec_id == s->parser->codec_ids[1] ||
128 avctx->codec_id == s->parser->codec_ids[2] ||
129 avctx->codec_id == s->parser->codec_ids[3] ||
130 avctx->codec_id == s->parser->codec_ids[4] ||
131 avctx->codec_id == s->parser->codec_ids[5] ||
132 avctx->codec_id == s->parser->codec_ids[6]);
163 index = s->parser->parser_parse(s, avctx, (const uint8_t **) poutbuf,
166 #define FILL(name) if(s->name > 0 && avctx->name <= 0) avctx->name = s->name
167 if (avctx->codec_type == AVMEDIA_TYPE_VIDEO) {