Lines Matching defs:avctx
521 AVCodecContext *avctx;
524 avctx = avcodec_alloc_context3(NULL);
525 if (!avctx)
528 ret = avcodec_parameters_to_context(avctx, st->codecpar);
530 avcodec_free_context(&avctx);
535 avctx->properties = sti->avctx->properties;
536 avctx->codec = sti->avctx->codec;
537 avctx->qmin = sti->avctx->qmin;
538 avctx->qmax = sti->avctx->qmax;
539 avctx->coded_width = sti->avctx->coded_width;
540 avctx->coded_height = sti->avctx->coded_height;
543 av_opt_set(avctx, "dump_separator", separator, 0);
544 avcodec_string(buf, sizeof(buf), avctx, is_output);
545 avcodec_free_context(&avctx);