Searched refs:muxerEngine_ (Results 1 - 2 of 2) sorted by relevance
/foundation/multimedia/av_codec/frameworks/native/avmuxer/ |
H A D | avmuxer_impl.cpp | 59 muxerEngine_ = std::make_shared<Media::MediaMuxer>(getuid(), getprocpid()); in Init() 60 CHECK_AND_RETURN_RET_LOG(muxerEngine_ != nullptr, AVCS_ERR_NO_MEMORY, "Create AVMuxer Engine failed"); in Init() 61 return StatusConvert(muxerEngine_->Init(fd, format)); in Init() 67 CHECK_AND_RETURN_RET_LOG(muxerEngine_ != nullptr, AVCS_ERR_INVALID_OPERATION, "AVMuxer Engine does not exist"); in SetParameter() 69 return StatusConvert(muxerEngine_->SetParameter(param)); in SetParameter() 75 CHECK_AND_RETURN_RET_LOG(muxerEngine_ != nullptr, AVCS_ERR_INVALID_OPERATION, "AVMuxer Engine does not exist"); in SetUserMeta() 77 return StatusConvert(muxerEngine_->SetUserMeta(userMeta)); in SetUserMeta() 83 CHECK_AND_RETURN_RET_LOG(muxerEngine_ != nullptr, AVCS_ERR_INVALID_OPERATION, "AVMuxer Engine does not exist"); in AddTrack() 85 return StatusConvert(muxerEngine_->AddTrack(trackIndex, trackDesc)); in AddTrack() 91 CHECK_AND_RETURN_RET_LOG(muxerEngine_ ! in GetInputBufferQueue() [all...] |
H A D | avmuxer_impl.h | 41 std::shared_ptr<Media::MediaMuxer> muxerEngine_ = nullptr; member in OHOS::MediaAVCodec::AVMuxerImpl
|
Completed in 2 milliseconds