Home
last modified time | relevance | path

Searched refs:fdHead (Results 1 - 11 of 11) sorted by relevance

/foundation/multimedia/player_framework/frameworks/native/soundpool/
H A Dsound_id_manager.cpp86 const std::string fdHead = "fd://"; in Load() local
87 if (url.find(fdHead) == std::string::npos) { in Load()
91 StrToInt(url.substr(fdHead.size()), fd); in Load()
/foundation/multimedia/player_framework/frameworks/native/audio_haptic/
H A Daudio_haptic_sound_normal_impl.cpp81 const std::string fdHead = "fd://"; in ResetAVPlayer() local
83 if (audioUri_.find(fdHead) != std::string::npos) { in ResetAVPlayer()
84 fileDes_ = std::stoi(audioUri_.substr(fdHead.size())); in ResetAVPlayer()
/foundation/multimedia/player_framework/frameworks/native/screen_capture/
H A Dscreen_capture_impl.cpp240 const std::string fdHead = "fd://"; in InitCaptureFile() local
241 CHECK_AND_RETURN_RET_LOG(config.recorderInfo.url.find(fdHead) != std::string::npos, MSERR_INVALID_VAL, in InitCaptureFile()
244 std::string inputFd = config.recorderInfo.url.substr(fdHead.size()); in InitCaptureFile()
/foundation/multimedia/player_framework/frameworks/js/recorder/
H A Daudio_recorder_napi.cpp669 const std::string fdHead = "fd://"; in SetUri() local
671 if (uriPath.find(fdHead) != std::string::npos) { in SetUri()
673 std::string inputFd = uriPath.substr(fdHead.size()); in SetUri()
H A Dvideo_recorder_napi.cpp777 const std::string fdHead = "fd://"; in SetUrl() local
779 if (urlPath.find(fdHead) != std::string::npos) { in SetUrl()
781 std::string inputFd = urlPath.substr(fdHead.size()); in SetUrl()
/foundation/multimedia/player_framework/frameworks/js/player/
H A Daudio_player_napi.cpp237 const std::string fdHead = "fd://"; in SetSrc() local
241 if (player->uri_.find(fdHead) != std::string::npos) { in SetSrc()
243 std::string inputFd = player->uri_.substr(fdHead.size()); in SetSrc()
H A Dvideo_player_napi.cpp252 const std::string fdHead = "fd://"; in SetUrl() local
255 if (jsPlayer->url_.find(fdHead) != std::string::npos) { in SetUrl()
256 std::string inputFd = jsPlayer->url_.substr(fdHead.size()); in SetUrl()
/foundation/multimedia/player_framework/frameworks/native/system_sound_manager/
H A Dsystem_sound_manager_impl.cpp1301 std::string fdHead = "fd://"; in AddCustomizedToneByExternalUri() local
1304 if (srcPath.find(fdHead) != std::string::npos) { in AddCustomizedToneByExternalUri()
1305 StrToInt(srcPath.substr(fdHead.size()), srcFd); in AddCustomizedToneByExternalUri()
1311 fdHead.clear(); in AddCustomizedToneByExternalUri()
1312 return fdHead; in AddCustomizedToneByExternalUri()
/foundation/multimedia/player_framework/test/unittest/screen_capture_test/screen_capture_server_function_unittest/src/
H A Dscreen_capture_server_function_unittest.cpp294 const std::string fdHead = "fd://"; in InitFileScreenCaptureServer() local
295 CHECK_AND_RETURN_RET_LOG(config_.recorderInfo.url.find(fdHead) != std::string::npos, MSERR_INVALID_VAL, in InitFileScreenCaptureServer()
298 std::string inputFd = config_.recorderInfo.url.substr(fdHead.size()); in InitFileScreenCaptureServer()
/foundation/multimedia/player_framework/frameworks/js/avrecorder/
H A Davrecorder_napi.cpp1451 const std::string fdHead = "fd://";
1452 config->url = fdHead + std::to_string(configMap["url"]);
2164 const std::string fdHead = "fd://";
2165 CHECK_AND_RETURN_RET(config->url.find(fdHead) != std::string::npos, GetRetInfo(ret, "Getfd", "uri"));
2167 std::string inputFd = config->url.substr(fdHead.size());
/foundation/multimedia/player_framework/frameworks/js/avplayer/
H A Davplayer_napi.cpp1022 const std::string fdHead = "fd://"; in AddSubSource() local
1023 std::string inputFd = url.substr(fdHead.size()); in AddSubSource()

Completed in 22 milliseconds