Home
last modified time | relevance | path

Searched refs:GoldfishHevcHelper (Results 1 – 5 of 5) sorted by relevance

/device/generic/goldfish-opengl/system/codecs/c2/decoders/hevcdec/
DGoldfishHevcHelper.cpp63 GoldfishHevcHelper::GoldfishHevcHelper(int w, int h):mWidth(w),mHeight(h) { createDecoder(); } in GoldfishHevcHelper() function in android::GoldfishHevcHelper
65 GoldfishHevcHelper::~GoldfishHevcHelper() { in ~GoldfishHevcHelper()
69 void GoldfishHevcHelper::createDecoder() { in createDecoder()
97 void GoldfishHevcHelper::destroyDecoder() { in destroyDecoder()
115 void GoldfishHevcHelper::setNumCores() { in setNumCores()
131 void GoldfishHevcHelper::resetDecoder() { in resetDecoder()
147 void GoldfishHevcHelper::setParams(size_t stride, in setParams()
172 bool GoldfishHevcHelper::isVpsFrame(const uint8_t* frame, int inSize) { in isVpsFrame()
191 bool GoldfishHevcHelper::decodeHeader(const uint8_t *frame, int inSize, in decodeHeader()
264 bool GoldfishHevcHelper::setDecodeArgs(ivd_video_decode_ip_t *ps_decode_ip, in setDecodeArgs()
DGoldfishHevcHelper.h29 class GoldfishHevcHelper {
31 GoldfishHevcHelper(int w, int h);
32 ~GoldfishHevcHelper();
DAndroid.bp18 "GoldfishHevcHelper.cpp",
DC2GoldfishHevcDec.h160 std::unique_ptr<GoldfishHevcHelper> mHevcHelper;
DC2GoldfishHevcDec.cpp926 if (GoldfishHevcHelper::isVpsFrame(mInPBuffer, mInPBufferSize)) { in process()
927 mHevcHelper.reset(new GoldfishHevcHelper(mWidth, mHeight)); in process()