Lines Matching refs:fFrame
125 if (fFrame) {
126 av_frame_free(&fFrame);
127 fFrame = nullptr;
196 fFrame = av_frame_alloc();
197 SkASSERT(fFrame);
198 fFrame->format = pix_fmt;
199 fFrame->width = fEncoderCtx->width;
200 fFrame->height = fEncoderCtx->height;
201 if (check_err(av_frame_get_buffer(fFrame, 32))) {
265 if (check_err(av_frame_make_writable(fFrame))) {
269 fFrame->pts = fCurrentPTS;
274 sws_scale(fSWScaleCtx, src, strides, 0, fInfo.height(), fFrame->data, fFrame->linesize);
276 return this->sendFrame(fFrame);