Lines Matching defs:h264_avctx
27 AVCodecContext *h264_avctx; // wrapper context for H264
60 ctx->h264_avctx = avcodec_alloc_context3(codec);
61 if (!ctx->h264_avctx)
63 ctx->h264_avctx->thread_count = 1;
64 ctx->h264_avctx->flags = avctx->flags;
65 ctx->h264_avctx->flags2 = avctx->flags2;
66 ret = avcodec_open2(ctx->h264_avctx, codec, NULL);
90 AVCodecContext *codec_avctx = ctx->h264_avctx;
166 avcodec_flush_buffers(ctx->h264_avctx);
174 avcodec_free_context(&ctx->h264_avctx);