Lines Matching defs:hevc_avctx
28 AVCodecContext *hevc_avctx; // wrapper context for HEVC
73 ctx->hevc_avctx = avcodec_alloc_context3(codec);
74 if (!ctx->hevc_avctx)
76 ctx->hevc_avctx->thread_count = 1;
77 ctx->hevc_avctx->flags = avctx->flags;
78 ctx->hevc_avctx->flags2 = avctx->flags2;
79 ret = avcodec_open2(ctx->hevc_avctx, codec, NULL);
100 codec_avctx = ctx->hevc_avctx;
167 avcodec_flush_buffers(ctx->hevc_avctx);
175 avcodec_free_context(&ctx->hevc_avctx);