Home
last modified time | relevance | path

Searched refs:SeekTo (Results 1 - 25 of 79) sorted by relevance

1234

/foundation/multimedia/media_foundation/engine/plugin/core/
H A Doutput_sink.cpp34 Status OutputSink::SeekTo(uint64_t offset) in SeekTo() function in OHOS::Media::Plugin::OutputSink
36 return outputSink_->SeekTo(offset); in SeekTo()
H A Ddemuxer.cpp27 Status Demuxer::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() function in Demuxer
29 return demuxer_->SeekTo(trackId, seekTime, mode, realSeekTime); in SeekTo()
H A Doutput_sink.h35 Status SeekTo(uint64_t offset);
H A Ddemuxer.h46 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime);
/foundation/arkui/ace_engine/frameworks/core/components/video/
H A Dvideo_controller_v2.h68 void SeekTo(float pos, SeekMode seekMode = SeekMode::SEEK_PREVIOUS_SYNC) in SeekTo() function in OHOS::Ace::VideoController
166 void SeekTo(float pos, SeekMode seekMode = SeekMode::SEEK_PREVIOUS_SYNC) in SeekTo() function in OHOS::Ace::VideoControllerV2
169 item->SeekTo(pos, seekMode); in SeekTo()
/foundation/multimedia/av_codec/test/unittest/http_source_test/
H A Dhttp_source_plugin_unit_test.cpp148 httpSourcePlugin->SeekTo(10); in HWTEST_F()
149 httpSourcePlugin->SeekTo(100000); in HWTEST_F()
162 httpSourcePlugin->SeekTo(10); in HWTEST_F()
163 httpSourcePlugin->SeekTo(100000); in HWTEST_F()
223 httpSourcePlugin->SeekTo(10); in HWTEST_F()
224 httpSourcePlugin->SeekTo(100000); in HWTEST_F()
/foundation/multimedia/media_foundation/engine/plugin/plugins/sink/file_sink/
H A Dfile_fd_sink_plugin.h32 Status SeekTo(uint64_t offset) override;
/foundation/arkui/ace_engine/frameworks/core/components/video/resource/
H A Dplayer.h104 void SeekTo(uint32_t pos);
105 void SeekTo(uint32_t pos, uint32_t mode);
/foundation/multimedia/media_foundation/test/unittest/plugins/
H A DUtDemuxerTest2.h47 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
H A DUtDemuxerTest1.h46 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
H A DUtDemuxerTest2.cpp75 Status UtDemuxerTest2::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() function in UtDemuxerTest2
H A DUtDemuxerTest1.cpp83 Status UtDemuxerTest1::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() function in UtDemuxerTest1
/foundation/multimedia/media_foundation/engine/include/plugin/interface/
H A Doutput_sink_plugin.h42 virtual Status SeekTo(uint64_t offset) = 0;
H A Ddemuxer_plugin.h188 * @retval OK: Plugin SeekTo succeeded.
191 virtual Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) = 0;
/foundation/multimedia/av_codec/services/media_engine/modules/demuxer/
H A Ddemuxer_plugin_manager.cpp555 auto preSeekRes = plugin->SeekTo(-1, seekTime, Plugins::SeekMode::SEEK_PREVIOUS_SYNC, realSeekTime); in localSubtitleSeekTo()
557 return plugin->SeekTo(-1, seekTime, Plugins::SeekMode::SEEK_NEXT_SYNC, realSeekTime); in localSubtitleSeekTo()
560 Status DemuxerPluginManager::SeekTo(int64_t seekTime, Plugins::SeekMode mode, int64_t& realSeekTime) in SeekTo() function in OHOS::Media::DemuxerPluginManager
563 Status ret = streamInfoMap_[curAudioStreamID_].plugin->SeekTo(-1, seekTime, mode, realSeekTime); in SeekTo()
569 Status ret = streamInfoMap_[curVideoStreamID_].plugin->SeekTo(-1, seekTime, mode, realSeekTime); in SeekTo()
575 Status ret = streamInfoMap_[curSubTitleStreamID_].plugin->SeekTo(-1, seekTime, mode, realSeekTime); in SeekTo()
577 ret = streamInfoMap_[curSubTitleStreamID_].plugin->SeekTo( in SeekTo()
/foundation/multimedia/av_codec/test/unittest/media_demuxer_test/
H A Dmedia_demuxer_unit_test.h91 virtual Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, in SeekTo() function in OHOS::Media::DemuxerPluginMock
194 virtual Status SeekTo(uint64_t offset) in SeekTo() function in OHOS::Media::SourcePluginMock
/foundation/multimedia/av_codec/services/media_engine/plugins/source/
H A Ddata_stream_source_plugin.h38 Status SeekTo(uint64_t offset) override;
H A Dfile_source_plugin.h55 Status SeekTo(uint64_t offset) override;
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/wav_demuxer/
H A Dwav_demuxer_plugin.h59 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/utils/
H A Dbit_reader.cpp68 bool BitReader::SeekTo(size_t bitPos) in SeekTo() function in OHOS::Media::Plugin::Ffmpeg::BitReader
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_video_controller.cpp115 videoController_->SeekTo(value, seekMode); in SetCurrentTime()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dvideo_view.h58 int32_t SeekTo(int64_t currentTime);
/foundation/multimedia/av_codec/interfaces/plugin/
H A Ddemuxer_plugin.h134 * @retval OK: Plugin SeekTo succeeded.
137 virtual Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) = 0;
H A Dsource_plugin.h149 * @retval OK: Plugin SeekTo succeeded.
152 virtual Status SeekTo(uint64_t offset) = 0;
/foundation/multimedia/av_codec/services/media_engine/modules/source/
H A Dsource.h104 Status SeekTo(uint64_t offset);

Completed in 9 milliseconds

1234