Rename *OutputDevice(s) to *PlaybackDevice(s)

This commit is contained in:
Miku AuahDark
2022-05-07 11:04:28 +08:00
parent b2a6abdc0a
commit 7af537a417
8 changed files with 28 additions and 28 deletions
+6 -6
View File
@@ -298,19 +298,19 @@ public:
virtual void resumeContext() = 0;
/**
* Get current output device name.
* Get current playback device name.
*/
virtual std::string getOutputDevice() = 0;
virtual std::string getPlaybackDevice() = 0;
/**
* Retrieve list of available output devices.
* Retrieve list of available playback devices.
*/
virtual void getOutputDevices(std::vector<std::string> &list) = 0;
virtual void getPlaybackDevices(std::vector<std::string> &list) = 0;
/**
* Set the output device to specified device name.
* Set the current playback device to specified device name.
*/
virtual void setOutputDevice(const char *name);
virtual void setPlaybackDevice(const char *name);
private: