Home
last modified time | relevance | path

Searched refs:EOS (Results 1 – 25 of 44) sorted by relevance

12

/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/src/media_manager/
H A Dmedia_manager.cpp115 DP_CHECK_RETURN_RET_LOG(ret == EOS, EOS, "read sample finished."); in ReadSample()
177 DP_CHECK_BREAK_LOG(sample->pts_ == pausePts_ || ret == EOS, "Recovering finished."); in Recover()
211 DP_CHECK_BREAK_LOG(ret == EOS, "read audio data finished."); in CopyAudioTrack()
H A Dreader.cpp102 DP_CHECK_RETURN_RET_LOG(ret == EOS, EOS, "reading finished."); in Read()
H A Ddemuxer.cpp73 …DP_CHECK_RETURN_RET_LOG(sample->flag_ == AVCODEC_BUFFER_FLAG_EOS, EOS, "track(%{public}d) is end."… in ReadStream()
/ohos5.0/foundation/multimedia/av_codec/frameworks/native/avdemuxer/
H A Davdemuxer_impl.cpp153 } else if (buffer->flag_ & (uint32_t)(AVBufferFlag::EOS)) { in ReadSample()
154 innerFlag = AVBufferFlag::EOS; in ReadSample()
/ohos5.0/foundation/multimedia/media_foundation/engine/scene/player/internal/
H A Dstate_machine.cpp45 AddState(std::make_shared<EosState>(StateId::EOS, executor)); in StateMachine()
202 nextState = states_[StateId::EOS]; in ProcAction()
H A Dstate.h38 EOS = 7, enumerator
H A Dstate.cpp34 {StateId::EOS, "EOS"}, in GetStateName()
/ohos5.0/foundation/multimedia/player_framework/services/utils/include/
H A Dmedia_utils.h30 EOS = 7, enumerator
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/filters/
H A Ddecoder_surface_filter.cpp640 …(!isRenderStarted_.load() && render && !(outBuffer->flag_ & (uint32_t)(Plugins::AVBufferFlag::EOS)) in ReleaseOutputBuffer()
671 if ((outBuffer->flag_ & (uint32_t)(Plugins::AVBufferFlag::EOS)) && !isInSeekContinous_) { in ReleaseOutputBuffer()
765 bool isEOS = outputBuffer->flag_ & (uint32_t)(Plugins::AVBufferFlag::EOS); in DrainSeekContinuous()
792 bool isEOS = outputBuffer->flag_ & (uint32_t)(Plugins::AVBufferFlag::EOS); in DrainPreroll()
804 bool isEOS = outputBuffer->flag_ & (uint32_t)(Plugins::AVBufferFlag::EOS); in DrainSeekClosest()
H A Dvideo_decoder_adapter.cpp264 if (tmpBuffer->flag_ & (uint32_t)(Plugins::AVBufferFlag::EOS)) { in AquireAvailableInputBuffer()
/ohos5.0/foundation/multimedia/camera_framework/services/deferred_processing_service/include/base/
H A Dbasic_definitions.h198 EOS = 1, enumerator
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/player/
H A Dseek_agent.cpp228 if (buffer->pts_ >= seekTargetPts_ || (buffer->flag_ & (uint32_t)(AVBufferFlag::EOS))) { in OnAudioBufferFilled()
250 if (buffer->pts_ >= seekTargetPts_ || (buffer->flag_ & (uint32_t)(AVBufferFlag::EOS))) { in OnVideoBufferFilled()
/ohos5.0/foundation/multimedia/media_foundation/interface/inner_api/meta/
H A Dmedia_types.h110 EOS = 1 << 0, enumerator
/ohos5.0/foundation/multimedia/media_foundation/engine/scene/player/standard/
H A Dmedia_utils.cpp85 case StateId::EOS: in TransStateId2PlayerState()
/ohos5.0/foundation/multimedia/av_codec/services/engine/codec/video/fcodec/
H A Dfcodec.cpp281 return state_ == State::RUNNING || state_ == State::FLUSHED || state_ == State::EOS; in IsActive()
456 …CHECK_AND_RETURN_RET_LOG((state_ == State::RUNNING || state_ == State::EOS), AVCS_ERR_INVALID_STAT… in Flush()
1109 state_ = State::EOS; in ReceiveFrame()
1373 …CHECK_AND_RETURN_RET_LOG(state_ == State::RUNNING || state_ == State::EOS, GSERROR_NO_PERMISSION, … in BufferReleasedByConsumer()
1412 state_ == State::RUNNING || state_ == State::EOS), AVCS_ERR_INVALID_STATE, in SetOutputSurface()
1419 if (state_ == State::FLUSHED || state_ == State::RUNNING || state_ == State::EOS) { in SetOutputSurface()
H A Dfcodec.h97 EOS, enumerator
/ohos5.0/foundation/multimedia/av_codec/services/engine/codec/video/hevcdecoder/
H A Dhevc_decoder.cpp321 return state_ == State::RUNNING || state_ == State::FLUSHED || state_ == State::EOS; in IsActive()
487 …CHECK_AND_RETURN_RET_LOG((state_ == State::RUNNING || state_ == State::EOS), AVCS_ERR_INVALID_STAT… in Flush()
987 state_ = State::EOS; in SendFrame()
1240 … CHECK_AND_RETURN_RET_LOG(state_ == State::RUNNING || state_ == State::EOS, GSERROR_NO_PERMISSION, in BufferReleasedByConsumer()
1467 state_ == State::RUNNING || state_ == State::EOS), AVCS_ERR_INVALID_STATE, in SetOutputSurface()
1474 if (state_ == State::FLUSHED || state_ == State::RUNNING || state_ == State::EOS) { in SetOutputSurface()
H A Dhevc_decoder.h105 EOS, enumerator
/ohos5.0/docs/en/application-dev/media/avcodec/
H A Dvideo-encoding.md38EOS) flag, and the encoder stops when it reads the last frame. In surface mode, the caller calls *…
482 12. Call **OH_VideoEncoder_NotifyEndOfStream()** to notify the encoder of EOS.
485 // In surface mode, you only need to call this API to notify the encoder of EOS.
486 …C_BUFFER_FLAGS_EOS flag and then call OH_VideoEncoder_PushInputBuffer to notify the encoder of EOS.
914 9. Notify the encoder of EOS.
920 …The API **OH_VideoEncoder_PushInputBuffer** is used to notify the encoder of EOS. This API is also…
H A Daudio-encoding.md313 To indicate the End of Stream (EOS), pass in the **AVCODEC_BUFFER_FLAGS_EOS** flag.
351 * The EOS of the file is reached.
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/modules/sink/
H A Dvideo_sink.cpp253 FALSE_RETURN_V(!(buffer->flag_ & (uint32_t)(Plugins::AVBufferFlag::EOS)), false); in CalcLag()
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/codec/
H A D_codec_v10.md280 | CODEC_EVENT_BUFFER_FLAG | 组件已检测到EOS |
/ohos5.0/foundation/multimedia/player_framework/services/utils/
H A Dmedia_utils.cpp220 case PlayerStateId::EOS: in TransStateId2PlayerState()
/ohos5.0/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/
H A Dav_thumbnail_generator.cpp197 bool isEosBuffer = buffer->flag_ & (uint32_t)(AVBufferFlag::EOS); in OnOutputBufferAvailable()
219 if (preDiff > nextDiff && !(buffer->flag_ & (uint32_t)(AVBufferFlag::EOS))) { in OnOutputBufferAvailable()
/ohos5.0/docs/zh-cn/application-dev/media/avcodec/
H A Daudio-encoding.md345 * 在文件EOS之后,需要调用刷新

12