Lines Matching refs:fFormatCtx
134 if (fFormatCtx) { in reset()
135 avformat_free_context(fFormatCtx); in reset()
136 fFormatCtx = nullptr; in reset()
163 avformat_alloc_output_context2(&fFormatCtx, nullptr, "mp4", nullptr); in init()
164 SkASSERT(fFormatCtx); in init()
165 fFormatCtx->pb = fStreamCtx; in init()
167 AVOutputFormat *output_format = fFormatCtx->oformat; in init()
175 fStream = avformat_new_stream(fFormatCtx, codec); in init()
177 fStream->id = fFormatCtx->nb_streams-1; in init()
209 if (check_err(avformat_write_header(fFormatCtx, nullptr))) { in init()
295 if (check_err(av_interleaved_write_frame(fFormatCtx, fPacket))) { in sendFrame()
324 if (!fFormatCtx) { in endRecording()
329 av_write_trailer(fFormatCtx); in endRecording()