summaryrefslogtreecommitdiffstats
path: root/client/windows
diff options
context:
space:
mode:
Diffstat (limited to 'client/windows')
-rw-r--r--client/windows/platform.cpp2
-rw-r--r--client/windows/record.cpp2
-rw-r--r--client/windows/record.h4
3 files changed, 4 insertions, 4 deletions
diff --git a/client/windows/platform.cpp b/client/windows/platform.cpp
index b5faf758..d93283e5 100644
--- a/client/windows/platform.cpp
+++ b/client/windows/platform.cpp
@@ -405,7 +405,7 @@ void Platform::set_process_loop(ProcessLoop& main_process_loop)
main_loop = &main_process_loop;
}
-WaveRecordAbstract* Platform::create_recorder(RecordClinet& client,
+WaveRecordAbstract* Platform::create_recorder(RecordClient& client,
uint32_t sampels_per_sec,
uint32_t bits_per_sample,
uint32_t channels)
diff --git a/client/windows/record.cpp b/client/windows/record.cpp
index bd9bc022..d962fb7d 100644
--- a/client/windows/record.cpp
+++ b/client/windows/record.cpp
@@ -29,7 +29,7 @@ static void CALLBACK in_proc(HWAVEIN handle, UINT msg, DWORD user_data, DWORD pa
recorder->trigger();
}
-WaveRecorder::WaveRecorder(Platform::RecordClinet& client, uint32_t sampels_per_sec,
+WaveRecorder::WaveRecorder(Platform::RecordClient& client, uint32_t sampels_per_sec,
uint32_t bits_per_sample, uint32_t channels)
: _client (client)
, _ring (NULL)
diff --git a/client/windows/record.h b/client/windows/record.h
index cd33a2aa..283f2824 100644
--- a/client/windows/record.h
+++ b/client/windows/record.h
@@ -23,7 +23,7 @@
class WaveRecorder: public WaveRecordAbstract, public EventSources::Trigger {
public:
- WaveRecorder(Platform::RecordClinet& client, uint32_t sampels_per_sec,
+ WaveRecorder(Platform::RecordClient& client, uint32_t sampels_per_sec,
uint32_t bits_per_sample, uint32_t channels);
virtual ~WaveRecorder();
@@ -42,7 +42,7 @@ private:
void push_frames();
private:
- Platform::RecordClinet& _client;
+ Platform::RecordClient& _client;
HWAVEIN _wave_in;
uint8_t* _ring;
uint32_t _ring_item_size;