Lines Matching refs:AMediaCodecWrapper

793 sp<AMediaCodecWrapper> AMediaCodecWrapper::CreateCodecByName(const AString &name) {  in CreateCodecByName()
795 return new AMediaCodecWrapper(aMediaCodec); in CreateCodecByName()
799 sp<AMediaCodecWrapper> AMediaCodecWrapper::CreateDecoderByType(const AString &mimeType) { in CreateDecoderByType()
801 return new AMediaCodecWrapper(aMediaCodec); in CreateDecoderByType()
805 void AMediaCodecWrapper::OnInputAvailableCB( in OnInputAvailableCB()
817 void AMediaCodecWrapper::OnOutputAvailableCB( in OnOutputAvailableCB()
836 void AMediaCodecWrapper::OnFormatChangedCB( in OnFormatChangedCB()
851 void AMediaCodecWrapper::OnErrorCB( in OnErrorCB()
866 AMediaCodecWrapper::AMediaCodecWrapper(AMediaCodec *aMediaCodec) in AMediaCodecWrapper() function in android::AMediaCodecWrapper
870 AMediaCodecWrapper::~AMediaCodecWrapper() { in ~AMediaCodecWrapper()
874 status_t AMediaCodecWrapper::release() { in release()
887 AMediaCodec *AMediaCodecWrapper::getAMediaCodec() const { in getAMediaCodec()
891 status_t AMediaCodecWrapper::getName(AString *outComponentName) const { in getName()
906 status_t AMediaCodecWrapper::configure( in configure()
925 status_t AMediaCodecWrapper::setCallback(const sp<AMessage> &callback) { in setCallback()
943 status_t AMediaCodecWrapper::releaseCrypto() { in releaseCrypto()
950 status_t AMediaCodecWrapper::start() { in start()
957 status_t AMediaCodecWrapper::stop() { in stop()
964 status_t AMediaCodecWrapper::flush() { in flush()
971 uint8_t* AMediaCodecWrapper::getInputBuffer(size_t idx, size_t *out_size) { in getInputBuffer()
978 uint8_t* AMediaCodecWrapper::getOutputBuffer(size_t idx, size_t *out_size) { in getOutputBuffer()
985 status_t AMediaCodecWrapper::queueInputBuffer( in queueInputBuffer()
998 status_t AMediaCodecWrapper::queueSecureInputBuffer( in queueSecureInputBuffer()
1017 sp<AMediaFormatWrapper> AMediaCodecWrapper::getOutputFormat() { in getOutputFormat()
1024 sp<AMediaFormatWrapper> AMediaCodecWrapper::getInputFormat() { in getInputFormat()
1031 status_t AMediaCodecWrapper::releaseOutputBuffer(size_t idx, bool render) { in releaseOutputBuffer()
1039 status_t AMediaCodecWrapper::setOutputSurface(const sp<ANativeWindowWrapper> &nww) { in setOutputSurface()
1048 status_t AMediaCodecWrapper::releaseOutputBufferAtTime(size_t idx, int64_t timestampNs) { in releaseOutputBufferAtTime()
1056 status_t AMediaCodecWrapper::setParameters(const sp<AMediaFormatWrapper> &params) { in setParameters()