Searched refs:fDecoderCtx (Results 1 – 2 of 2) sorted by relevance
213 SkASSERT(fDecoderCtx->colorspace == frame->colorspace); in convertFrame()214 SkASSERT(fDecoderCtx->color_primaries == frame->color_primaries); in convertFrame()215 SkASSERT(fDecoderCtx->color_trc == frame->color_trc); in convertFrame()220 SkASSERT(fDecoderCtx->pix_fmt == frame->format); in convertFrame()279 int ret = avcodec_send_packet(fDecoderCtx, &fPacket); in nextImage()291 if (check_err(avcodec_receive_frame(fDecoderCtx, fFrame), silentList)) { in nextImage()300 (void)avcodec_send_packet(fDecoderCtx, nullptr); // signal to start draining in nextImage()303 if (avcodec_receive_frame(fDecoderCtx, fFrame) >= 0) { in nextImage()324 if (fDecoderCtx) { in reset()325 avcodec_free_context(&fDecoderCtx); in reset()[all …]
63 AVCodecContext* fDecoderCtx = nullptr; variable