Lines Matching refs:mCodecCtx
84 mCodecCtx = avcodec_alloc_context3(mCodec); in init()
87 mCodecCtx->thread_count = std::min(mThreadCount, 4); in init()
88 mCodecCtx->thread_type = FF_THREAD_FRAME; in init()
89 mCodecCtx->active_thread_type = FF_THREAD_FRAME; in init()
91 avcodec_open2(mCodecCtx, mCodec, 0); in init()
95 mCodecCtx); in init()
110 if (mCodecCtx) { in deInit()
111 avcodec_flush_buffers(mCodecCtx); in deInit()
112 avcodec_close(mCodecCtx); in deInit()
113 avcodec_free_context(&mCodecCtx); in deInit()
114 mCodecCtx = NULL; in deInit()
158 avcodec_send_packet(mCodecCtx, NULL); in flush()
165 int retframe = avcodec_receive_frame(mCodecCtx, mFrame); in fetchAllFrames()
196 avcodec_send_packet(mCodecCtx, &mPacket); in decode()