Home
last modified time | relevance | path

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

/external/skia/experimental/ffmpeg/
DSkVideoDecoder.cpp211 SkASSERT(fDecoderCtx->colorspace == frame->colorspace); in convertFrame()
212 SkASSERT(fDecoderCtx->color_primaries == frame->color_primaries); in convertFrame()
213 SkASSERT(fDecoderCtx->color_trc == frame->color_trc); in convertFrame()
218 SkASSERT(fDecoderCtx->pix_fmt == frame->format); in convertFrame()
277 int ret = avcodec_send_packet(fDecoderCtx, &fPacket); in nextImage()
289 if (check_err(avcodec_receive_frame(fDecoderCtx, fFrame), silentList)) { in nextImage()
298 (void)avcodec_send_packet(fDecoderCtx, nullptr); // signal to start draining in nextImage()
301 if (avcodec_receive_frame(fDecoderCtx, fFrame) >= 0) { in nextImage()
322 if (fDecoderCtx) { in reset()
323 avcodec_free_context(&fDecoderCtx); in reset()
[all …]
DSkVideoDecoder.h61 AVCodecContext* fDecoderCtx = nullptr; variable