Lines Matching defs:jpeg_avctx
51 AVCodecContext *jpeg_avctx; // wrapper context for MJPEG
89 avcodec_free_context(&ctx->jpeg_avctx);
125 ctx->jpeg_avctx = avcodec_alloc_context3(codec);
126 if (!ctx->jpeg_avctx)
128 ctx->jpeg_avctx->flags = avctx->flags;
129 ctx->jpeg_avctx->flags2 = avctx->flags2;
130 ctx->jpeg_avctx->dct_algo = avctx->dct_algo;
131 ctx->jpeg_avctx->idct_algo = avctx->idct_algo;
132 ret = avcodec_open2(ctx->jpeg_avctx, codec, NULL);
356 ret = avcodec_send_packet(ctx->jpeg_avctx, ctx->jpkt);
362 ret = avcodec_receive_frame(ctx->jpeg_avctx, ctx->jpgframe);