/foundation/multimedia/media_foundation/engine/plugin/core/ |
H A D | output_sink.cpp | 34 Status OutputSink::SeekTo(uint64_t offset) in SeekTo() function in OHOS::Media::Plugin::OutputSink 36 return outputSink_->SeekTo(offset); in SeekTo()
|
H A D | demuxer.cpp | 27 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 D | output_sink.h | 35 Status SeekTo(uint64_t offset);
|
H A D | demuxer.h | 46 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime);
|
/foundation/arkui/ace_engine/frameworks/core/components/video/ |
H A D | video_controller_v2.h | 68 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 D | http_source_plugin_unit_test.cpp | 148 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 D | file_fd_sink_plugin.h | 32 Status SeekTo(uint64_t offset) override;
|
/foundation/arkui/ace_engine/frameworks/core/components/video/resource/ |
H A D | player.h | 104 void SeekTo(uint32_t pos); 105 void SeekTo(uint32_t pos, uint32_t mode);
|
/foundation/multimedia/media_foundation/test/unittest/plugins/ |
H A D | UtDemuxerTest2.h | 47 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
|
H A D | UtDemuxerTest1.h | 46 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
|
H A D | UtDemuxerTest2.cpp | 75 Status UtDemuxerTest2::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() function in UtDemuxerTest2
|
H A D | UtDemuxerTest1.cpp | 83 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 D | output_sink_plugin.h | 42 virtual Status SeekTo(uint64_t offset) = 0;
|
H A D | demuxer_plugin.h | 188 * @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 D | demuxer_plugin_manager.cpp | 555 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 D | media_demuxer_unit_test.h | 91 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 D | data_stream_source_plugin.h | 38 Status SeekTo(uint64_t offset) override;
|
H A D | file_source_plugin.h | 55 Status SeekTo(uint64_t offset) override;
|
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/wav_demuxer/ |
H A D | wav_demuxer_plugin.h | 59 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 D | bit_reader.cpp | 68 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 D | js_video_controller.cpp | 115 videoController_->SeekTo(value, seekMode); in SetCurrentTime()
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | video_view.h | 58 int32_t SeekTo(int64_t currentTime);
|
/foundation/multimedia/av_codec/interfaces/plugin/ |
H A D | demuxer_plugin.h | 134 * @retval OK: Plugin SeekTo succeeded. 137 virtual Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) = 0;
|
H A D | source_plugin.h | 149 * @retval OK: Plugin SeekTo succeeded. 152 virtual Status SeekTo(uint64_t offset) = 0;
|
/foundation/multimedia/av_codec/services/media_engine/modules/source/ |
H A D | source.h | 104 Status SeekTo(uint64_t offset);
|