diff options
| author | 2016-05-07 11:08:13 -0400 | |
|---|---|---|
| committer | 2016-05-07 11:08:13 -0400 | |
| commit | c549c3607675dcaa7aa508477da89d0d3bec076b (patch) | |
| tree | 1f3a6775c631174398fa507683f14c1969308c9c /src/audio_core/sink.h | |
| parent | HLE: Fix recent DSP change for Visual Studio. (diff) | |
| parent | AudioCore: SDL2 Sink (diff) | |
| download | yuzu-c549c3607675dcaa7aa508477da89d0d3bec076b.tar.gz yuzu-c549c3607675dcaa7aa508477da89d0d3bec076b.tar.xz yuzu-c549c3607675dcaa7aa508477da89d0d3bec076b.zip | |
Merge pull request #1736 from MerryMage/sdl2-sink
AudioCore: SDL2 Sink
Diffstat (limited to 'src/audio_core/sink.h')
| -rw-r--r-- | src/audio_core/sink.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/sink.h b/src/audio_core/sink.h index cad21a85e..1c881c3d2 100644 --- a/src/audio_core/sink.h +++ b/src/audio_core/sink.h | |||
| @@ -19,7 +19,7 @@ public: | |||
| 19 | virtual ~Sink() = default; | 19 | virtual ~Sink() = default; |
| 20 | 20 | ||
| 21 | /// The native rate of this sink. The sink expects to be fed samples that respect this. (Units: samples/sec) | 21 | /// The native rate of this sink. The sink expects to be fed samples that respect this. (Units: samples/sec) |
| 22 | virtual unsigned GetNativeSampleRate() const = 0; | 22 | virtual unsigned int GetNativeSampleRate() const = 0; |
| 23 | 23 | ||
| 24 | /** | 24 | /** |
| 25 | * Feed stereo samples to sink. | 25 | * Feed stereo samples to sink. |