/foundation/multimedia/media_foundation/engine/plugin/core/ |
H A D | demuxer.cpp | 27 Status Demuxer::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() argument 29 return demuxer_->SeekTo(trackId, seekTime, mode, realSeekTime); in SeekTo()
|
H A D | demuxer.h | 46 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime);
|
/foundation/multimedia/media_foundation/test/unittest/plugins/ |
H A D | UtDemuxerTest2.cpp | 75 Status UtDemuxerTest2::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() argument 80 (void)realSeekTime; in SeekTo()
|
H A D | UtDemuxerTest1.cpp | 83 Status UtDemuxerTest1::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() argument 88 (void)realSeekTime; in SeekTo()
|
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;
|
/foundation/multimedia/player_framework/services/engine/histreamer/player/ |
H A D | seek_agent.cpp | 79 int64_t realSeekTime = seekPos;
in Seek() local 80 auto st = demuxer_->SeekTo(seekPos, Plugins::SeekMode::SEEK_CLOSEST_INNER, realSeekTime);
in Seek() 87 MEDIA_LOG_I("demuxer_ realSeekTime: %{public}" PRId64 "ns", realSeekTime);
in Seek() 109 auto st = demuxer_->SeekTo(seekPos, Plugins::SeekMode::SEEK_CLOSEST_INNER, realSeekTime);
in Seek()
|
/foundation/multimedia/av_codec/services/media_engine/modules/demuxer/ |
H A D | demuxer_plugin_manager.cpp | 553 int64_t realSeekTime = 0;
in localSubtitleSeekTo() local 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() argument 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() 578 -1, seekTime, Plugins::SeekMode::SEEK_NEXT_SYNC, realSeekTime);
in SeekTo()
|
H A D | demuxer_plugin_manager.h | 115 Status SeekTo(int64_t seekTime, Plugins::SeekMode mode, int64_t& realSeekTime);
|
/foundation/multimedia/player_framework/services/engine/histreamer/avmetadatahelper/ |
H A D | av_thumbnail_generator.cpp | 257 int64_t realSeekTime = timeUs; in FetchFrameAtTime() local 258 auto res = SeekToTime(Plugins::Us2Ms(timeUs), static_cast<Plugins::SeekMode>(option), realSeekTime); in FetchFrameAtTime() 292 int64_t realSeekTime = timeUs; in FetchFrameYuv() local 293 auto res = SeekToTime(Plugins::Us2Ms(timeUs), static_cast<Plugins::SeekMode>(option), realSeekTime); in FetchFrameYuv() 318 Status AVThumbnailGenerator::SeekToTime(int64_t timeMs, Plugins::SeekMode option, int64_t realSeekTime) in SeekToTime() argument 325 auto res = mediaDemuxer_->SeekTo(timeMs, option, realSeekTime); in SeekToTime() 327 res = mediaDemuxer_->SeekTo(timeMs, Plugins::SeekMode::SEEK_CLOSEST_SYNC, realSeekTime); in SeekToTime()
|
H A D | av_thumbnail_generator.h | 78 Status SeekToTime(int64_t timeMs, Plugins::SeekMode option, int64_t realSeekTime);
|
/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/include/plugin/interface/ |
H A D | demuxer_plugin.h | 186 * @param realSeekTime Indicates the accurate target position, based on {@link HST_TIME_BASE} . 191 virtual Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) = 0;
|
/foundation/multimedia/av_codec/interfaces/plugin/ |
H A D | demuxer_plugin.h | 132 * @param realSeekTime Indicates the accurate target position, based on {@link HST_TIME_BASE} . 137 virtual Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) = 0;
|
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/aac_demuxer/ |
H A D | aac_demuxer_plugin.h | 66 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
|
/foundation/multimedia/media_foundation/engine/plugin/plugins/demuxer/minimp4_demuxer/ |
H A D | minimp4_demuxer_plugin.h | 46 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
|
H A D | minimp4_demuxer_plugin.cpp | 386 Status MiniMP4DemuxerPlugin::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime)
in SeekTo() argument 414 realSeekTime = seekTime;
in SeekTo()
|
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/demuxer/ |
H A D | ffmpeg_demuxer_plugin.h | 60 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
|
H A D | ffmpeg_demuxer_plugin.cpp | 346 * @param realSeekTime 349 Status FFmpegDemuxerPlugin::SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) in SeekTo() argument 371 PUBLIC_LOG_D32, realSeekTime, ffTime, keyFrameIdx); in SeekTo() 391 realSeekTime = ConvertTimeFromFFmpeg(ffTime, avStream->time_base); in SeekTo() 392 MEDIA_LOG_I("SeekTo " PUBLIC_LOG_U64 " / " PUBLIC_LOG_D64, ffTime, realSeekTime); in SeekTo()
|
/foundation/multimedia/media_foundation/engine/plugin/plugins/minimp3_adapter/ |
H A D | minimp3_demuxer_plugin.h | 100 Status SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) override;
|
/foundation/multimedia/media_foundation/engine/include/pipeline/filters/demux/ |
H A D | demuxer_filter.h | 75 ErrorCode SeekTo(int64_t seekTime, Plugin::SeekMode mode, int64_t& realSeekTime);
|
/foundation/multimedia/av_codec/interfaces/inner_api/native/ |
H A D | demuxer_filter.h | 58 Status SeekTo(int64_t seekTime, Plugins::SeekMode mode, int64_t& realSeekTime);
|
/foundation/multimedia/av_codec/test/unittest/media_demuxer_test/ |
H A D | media_demuxer_unit_test.h | 92 int64_t& realSeekTime)
in SeekTo() 91 SeekTo(int32_t trackId, int64_t seekTime, SeekMode mode, int64_t& realSeekTime) SeekTo() argument
|
/foundation/multimedia/media_foundation/engine/scene/player/lite/ |
H A D | hiplayer_impl.cpp | 398 int64_t realSeekTime = hstTime; in DoSeek() local 399 rtv = demuxer_->SeekTo(hstTime, mode, realSeekTime); in DoSeek() 401 syncManager_->Seek(realSeekTime); in DoSeek()
|
/foundation/multimedia/media_foundation/test/scenetest/ |
H A D | test_single_video_player_fast_3.h | 361 int64_t realSeekTime {8300}; in FIXTURE() 373 EXPECT_TRUE(CheckTimeEquality(realSeekTime, currentMS)); in FIXTURE()
|