Home
last modified time | relevance | path

Searched refs:fEncoderCtx (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/experimental/ffmpeg/
DSkVideoEncoder.cpp129 if (fEncoderCtx) { in reset()
130 avcodec_free_context(&fEncoderCtx); in reset()
131 fEncoderCtx = nullptr; in reset()
179 fEncoderCtx = avcodec_alloc_context3(codec); in init()
180 SkASSERT(fEncoderCtx); in init()
182 fEncoderCtx->codec_id = output_format->video_codec; in init()
183 fEncoderCtx->width = fInfo.width(); in init()
184 fEncoderCtx->height = fInfo.height(); in init()
185 fEncoderCtx->time_base = fStream->time_base; in init()
186 fEncoderCtx->pix_fmt = pix_fmt; in init()
[all …]
DSkVideoEncoder.h70 AVCodecContext* fEncoderCtx = nullptr; variable