Lines Matching defs:parser
106 AVCodecParserContext *parser;
631 av_parser_close(os->parser);
1564 os->parser = av_parser_init(st->codecpar->codec_id);
1565 if (os->parser) {
1573 os->parser->flags |= PARSER_FLAG_COMPLETE_FRAMES;
1625 if (os->frag_type == FRAG_TYPE_PFRAMES && (st->codecpar->codec_type != AVMEDIA_TYPE_VIDEO || !os->parser)) {
1626 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && !os->parser)
1627 av_log(s, AV_LOG_WARNING, "frag_type set to P-Frame reordering, but no parser found for stream %d\n", i);
1631 // Set this now if a parser isn't used
2151 if (os->parser &&
2157 av_parser_parse2(os->parser, os->parser_avctx,
2161 os->coding_dependency |= os->parser->pict_type != AV_PICTURE_TYPE_I;
2211 av_assert0(os->parser);
2212 if ((os->parser->pict_type == AV_PICTURE_TYPE_P &&