/foundation/multimedia/media_foundation/test/scenetest/helper/ |
H A D | test_player.hpp | 41 static TestSource CreateTestSource(const std::string& url, TestSourceType type, Plugin::Seekable seekable); 43 TestSource(std::string url, Plugin::Seekable seekable) : url_(std::move(url)), in TestSource() argument 44 type_(TestSourceType::STREAM), seekable_(seekable) {} in TestSource()
|
H A D | media_data_source_imp.cpp | 28 IMediaDataSourceImpl::IMediaDataSourceImpl(std::string url, Plugin::Seekable seekable) in IMediaDataSourceImpl() argument 29 : url_(std::move(url)), readPos_(0), seekable_(seekable) in IMediaDataSourceImpl()
|
H A D | media_data_source_impl.h | 25 IMediaDataSourceImpl(std::string url, Plugin::Seekable seekable);
|
H A D | std_player.cpp | 90 TestSource TestSource::CreateTestSource(const std::string& url, TestSourceType type, Plugin::Seekable seekable) in CreateTestSource() argument 96 return TestSource(url, seekable); in CreateTestSource()
|
/foundation/multimedia/media_foundation/test/unittest/plugins/ |
H A D | UtSourceTest2.cpp | 59 Status UtSourceTest2::IsSeekable(bool& seekable) in IsSeekable() argument 61 seekable = false; in IsSeekable()
|
H A D | UtSourceTest1.cpp | 60 Status UtSourceTest1::IsSeekable(bool& seekable) in IsSeekable() argument 62 seekable = false; in IsSeekable()
|
H A D | UtSourceTest1.h | 38 Status IsSeekable(bool& seekable);
|
H A D | UtSourceTest2.h | 38 Status IsSeekable(bool& seekable);
|
/foundation/multimedia/media_foundation/engine/pipeline/filters/sink/output_sink/ |
H A D | output_sink_filter.cpp | 122 auto seekable = plugin_->GetSeekable(); in PushData() local 123 if (seekable == Plugin::Seekable::UNSEEKABLE || seekable == Plugin::Seekable::INVALID) { in PushData() 124 MEDIA_LOG_E("plugin " PUBLIC_LOG_S " does not support seekable", pluginInfo_->name.c_str()); in PushData()
|
/foundation/multimedia/media_foundation/test/scenetest/ |
H A D | test_std_stream_player.h | 32 PTEST((std::string url), Test single player play std stream seekable, and finished automatically) in FIXTURE() argument
|
/foundation/multimedia/media_foundation/engine/pipeline/filters/source/media_source/ |
H A D | media_source_filter.cpp | 296 Seekable seekable = plugin_->GetSeekable(); in DoNegotiate() local 297 FALSE_RETURN_V_MSG_E(seekable != Plugin::Seekable::INVALID, ErrorCode::ERROR_INVALID_PARAMETER_VALUE, in DoNegotiate() 299 FALSE_LOG(meta->Set<Media::Plugin::Tag::MEDIA_SEEKABLE>(seekable)); in DoNegotiate()
|
/foundation/multimedia/media_foundation/test/unittest/ |
H A D | TestAudioCapturePlugin.cpp | 153 Seekable seekable = audioCapture->GetSeekable(); in HWTEST() local 154 ASSERT_EQ(Seekable::UNSEEKABLE, seekable); in HWTEST()
|
/foundation/multimedia/av_codec/test/unittest/dash_test/ |
H A D | dash_media_downloader_unit_test.cpp | 98 Seekable seekable = g_mediaDownloader->GetSeekable(); in HWTEST_F() local 99 EXPECT_EQ(seekable, Seekable::SEEKABLE); in HWTEST_F()
|
/foundation/multimedia/player_framework/frameworks/native/player/test/unittest/include/ |
H A D | player_mock.h | 121 int32_t SetDataSrc(const std::string &path, int32_t size, bool seekable);
|
/foundation/multimedia/player_framework/frameworks/native/player/test/unittest/src/ |
H A D | player_mock.cpp | 404 int32_t PlayerMock::SetDataSrc(const std::string &path, int32_t size, bool seekable) in SetDataSrc() argument 406 if (seekable) { in SetDataSrc()
|
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/muxer/ |
H A D | ffmpeg_muxer_plugin.cpp | 355 avioContext->seekable = AVIO_SEEKABLE_NORMAL; in InitAvIoCtx()
|
/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/demuxer/ |
H A D | ffmpeg_demuxer_plugin.cpp | 462 avioContext->seekable = (seekable_ == Seekable::SEEKABLE) ? AVIO_SEEKABLE_NORMAL : 0; in AllocAVIOContext()
|
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/muxer/ |
H A D | ffmpeg_muxer_plugin.cpp | 1009 avioContext->seekable = AVIO_SEEKABLE_NORMAL; in InitAvIoCtx()
|
/foundation/multimedia/av_codec/services/media_engine/plugins/ffmpeg_adapter/demuxer/ |
H A D | ffmpeg_demuxer_plugin.cpp | 871 avioContext->seekable = (seekable_ == Seekable::SEEKABLE) ? AVIO_SEEKABLE_NORMAL : 0; in AllocAVIOContext() 953 MEDIA_LOG_I("FileSize: " PUBLIC_LOG_U64 ", seekable: " PUBLIC_LOG_D32, ioContext_.fileSize, seekable_); in SetDataSource()
|