Lines Matching refs:mHwVideoHelper
140 mHwVideoHelper.reset(cudavid); in initH264ContextInternal()
141 if (!mHwVideoHelper->init()) { in initH264ContextInternal()
142 mHwVideoHelper.reset(nullptr); in initH264ContextInternal()
169 mHwVideoHelper.reset(macDecoder); in initH264ContextInternal()
170 mHwVideoHelper->init(); in initH264ContextInternal()
209 if (mHwVideoHelper != nullptr) { in destroyH264Context()
210 mHwVideoHelper->deInit(); in destroyH264Context()
211 mHwVideoHelper.reset(nullptr); in destroyH264Context()
258 if (mHwVideoHelper != nullptr) { in try_decode()
259 mHwVideoHelper->decode(data, len, pts); in try_decode()
260 if (mHwVideoHelper->good()) { in try_decode()
264 mHwVideoHelper->error()); in try_decode()
265 mHwVideoHelper.reset(nullptr); in try_decode()
290 mHwVideoHelper in fetchAllFrames()
291 ? mHwVideoHelper->receiveFrame(&frame) in fetchAllFrames()
303 if (mHwVideoHelper) { in flush()
304 mHwVideoHelper->flush(); in flush()
387 const int hasContext = (mVideoHelper || mHwVideoHelper) ? 1 : 0; in save()
396 if (!mHwVideoHelper && !mSwVideoHelper && !mVideoHelper) { in oneShotDecode()
403 bool success = mHwVideoHelper ? mHwVideoHelper->receiveFrame(&frame) in oneShotDecode()