1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/renderer_host/media/audio_input_sync_writer.h"
#include <algorithm>
#include "base/process_util.h"
#include "base/shared_memory.h"
AudioInputSyncWriter::AudioInputSyncWriter(base::SharedMemory* shared_memory)
: shared_memory_(shared_memory) {
}
AudioInputSyncWriter::~AudioInputSyncWriter() {}
void AudioInputSyncWriter::UpdateRecordedBytes(uint32 bytes) {
socket_->Send(&bytes, sizeof(bytes));
}
uint32 AudioInputSyncWriter::Write(const void* data, uint32 size) {
uint32 write_size = std::min(size, shared_memory_->created_size());
// Copy audio input samples from recorded data to shared memory.
memcpy(shared_memory_->memory(), data, write_size);
return write_size;
}
void AudioInputSyncWriter::Close() {
socket_->Close();
}
bool AudioInputSyncWriter::Init() {
socket_.reset(new base::SyncSocket());
foreign_socket_.reset(new base::SyncSocket());
return base::SyncSocket::CreatePair(socket_.get(), foreign_socket_.get());
}
#if defined(OS_WIN)
bool AudioInputSyncWriter::PrepareForeignSocketHandle(
base::ProcessHandle process_handle,
base::SyncSocket::Handle* foreign_handle) {
::DuplicateHandle(GetCurrentProcess(), foreign_socket_->handle(),
process_handle, foreign_handle,
0, FALSE, DUPLICATE_SAME_ACCESS);
return (*foreign_handle != 0);
}
#else
bool AudioInputSyncWriter::PrepareForeignSocketHandle(
base::ProcessHandle process_handle,
base::FileDescriptor* foreign_handle) {
foreign_handle->fd = foreign_socket_->handle();
foreign_handle->auto_close = false;
return (foreign_handle->fd != -1);
}
#endif
|