Home
last modified time | relevance | path

Searched refs:SetCurrentBitRate (Results 1 - 24 of 24) sorted by relevance

/foundation/multimedia/av_codec/test/unittest/dash_test/
H A Ddash_segment_downloader_unit_test.cpp357 segmentDownloaderSp->SetCurrentBitRate(1048576); in HWTEST_F()
413 segmentDownloaderSp->SetCurrentBitRate(1048576); in HWTEST_F()
452 segmentDownloaderSp->SetCurrentBitRate(1048576000); in HWTEST_F()
490 segmentDownloaderSp->SetCurrentBitRate(1048576); in HWTEST_F()
H A Ddash_media_downloader_unit_test.cpp123 Status status = g_mediaDownloader->SetCurrentBitRate(1, 0); in HWTEST_F()
/foundation/multimedia/av_codec/services/media_engine/modules/source/
H A Dsource.h98 Status SetCurrentBitRate(int32_t bitRate, int32_t streamID);
H A Dsource.cpp190 Status Source::SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Source
192 MEDIA_LOG_I("SetCurrentBitRate"); in SetCurrentBitRate()
194 MEDIA_LOG_E("SetCurrentBitRate failed, plugin_ is nullptr"); in SetCurrentBitRate()
197 return plugin_->SetCurrentBitRate(bitRate, streamID); in SetCurrentBitRate()
/foundation/multimedia/av_codec/interfaces/plugin/
H A Dsource_plugin.h210 virtual Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::SourcePlugin
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/
H A Dhttp_source_plugin.h60 Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) override;
H A Dmedia_downloader.h106 virtual Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::HttpPlugin::MediaDownloader
108 MEDIA_LOG_W("SetCurrentBitRate is unimplemented."); in SetCurrentBitRate()
H A Dhttp_source_plugin.cpp425 Status HttpSourcePlugin::SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::HttpPlugin::HttpSourcePlugin
427 MEDIA_LOG_I("SetCurrentBitRate"); in SetCurrentBitRate()
429 MEDIA_LOG_E("SetCurrentBitRate failed, downloader_ is nullptr"); in SetCurrentBitRate()
432 return downloader_->SetCurrentBitRate(bitRate, streamID); in SetCurrentBitRate()
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/monitor/
H A Ddownload_monitor.h71 Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) override;
H A Ddownload_monitor.cpp316 Status DownloadMonitor::SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::HttpPlugin::DownloadMonitor
318 MEDIA_LOG_I("SetCurrentBitRate"); in SetCurrentBitRate()
320 MEDIA_LOG_E("SetCurrentBitRate failed, downloader_ is nullptr"); in SetCurrentBitRate()
323 return downloader_->SetCurrentBitRate(bitRate, streamID); in SetCurrentBitRate()
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/
H A Ddash_media_downloader.h66 Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) override;
H A Ddash_segment_downloader.h154 void SetCurrentBitRate(int32_t bitRate);
H A Ddash_media_downloader.cpp1018 Status DashMediaDownloader::SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::HttpPlugin::DashMediaDownloader
1020 MEDIA_LOG_I("SetCurrentBitRate stream: " PUBLIC_LOG_D32 " biteRate: " PUBLIC_LOG_D32, streamID, bitRate); in SetCurrentBitRate()
1023 segmentDownloader->SetCurrentBitRate(bitRate); in SetCurrentBitRate()
H A Ddash_segment_downloader.cpp588 void DashSegmentDownloader::SetCurrentBitRate(int32_t bitRate)
/foundation/multimedia/av_codec/services/media_engine/plugins/source/
H A Dfile_fd_source_plugin.h53 Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) override;
H A Dfile_fd_source_plugin.cpp553 Status FileFdSourcePlugin::SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::FileFdSource::FileFdSourcePlugin
/foundation/multimedia/av_codec/test/unittest/http_source_test/
H A Dhttp_media_downloader_unit_test.cpp360 httpMediaDownloader->SetCurrentBitRate(-1, 0); in HWTEST_F()
361 httpMediaDownloader->SetCurrentBitRate(1000, 0); in HWTEST_F()
440 httpMediaDownloader->SetCurrentBitRate(-1, 0); in HWTEST_F()
441 httpMediaDownloader->SetCurrentBitRate(1000, 0); in HWTEST_F()
H A Dhttp_source_plugin_unit_test.cpp175 httpSourcePlugin->SetCurrentBitRate(10, 0); in HWTEST_F()
188 httpSourcePlugin->SetCurrentBitRate(10, 0); in HWTEST_F()
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/http/
H A Dhttp_media_downloader.h69 Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) override;
H A Dhttp_media_downloader.cpp1112 Status HttpMediaDownloader::SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::HttpMediaDownloader
1114 MEDIA_LOG_I("HTTP SetCurrentBitRate: " PUBLIC_LOG_D32, bitRate); in SetCurrentBitRate()
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/hls/
H A Dhls_media_downloader.h99 Status SetCurrentBitRate(int32_t bitRate, int32_t streamID) override;
H A Dhls_media_downloader.cpp1429 Status HlsMediaDownloader::SetCurrentBitRate(int32_t bitRate, int32_t streamID) in SetCurrentBitRate() function in OHOS::Media::Plugins::HttpPlugin::HlsMediaDownloader
1431 MEDIA_LOG_I("HLS SetCurrentBitRate: " PUBLIC_LOG_D32, bitRate); in SetCurrentBitRate()
/foundation/multimedia/av_codec/test/unittest/hls_test/
H A Dhls_media_downloader_unit_test.cpp373 downloader->SetCurrentBitRate(-1, 0); in HWTEST_F()
375 downloader->SetCurrentBitRate(10, 0); in HWTEST_F()
/foundation/multimedia/av_codec/services/media_engine/modules/demuxer/
H A Dmedia_demuxer.cpp563 source_->SetCurrentBitRate(bitRate, streamId); in InnerPrepare()
575 source_->SetCurrentBitRate(bitRate, streamId); in InnerPrepare()

Completed in 23 milliseconds