| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/host/audio_capturer_linux.h" | 5 #include "remoting/host/audio_capturer_linux.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "remoting/proto/audio.pb.h" | 10 #include "remoting/proto/audio.pb.h" |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 scoped_ptr<AudioPacket> packet(new AudioPacket()); | 69 scoped_ptr<AudioPacket> packet(new AudioPacket()); |
| 70 packet->add_data(data->data()); | 70 packet->add_data(data->data()); |
| 71 packet->set_encoding(AudioPacket::ENCODING_RAW); | 71 packet->set_encoding(AudioPacket::ENCODING_RAW); |
| 72 packet->set_sampling_rate(AudioPipeReader::kSamplingRate); | 72 packet->set_sampling_rate(AudioPipeReader::kSamplingRate); |
| 73 packet->set_bytes_per_sample(AudioPipeReader::kBytesPerSample); | 73 packet->set_bytes_per_sample(AudioPipeReader::kBytesPerSample); |
| 74 packet->set_channels(AudioPipeReader::kChannels); | 74 packet->set_channels(AudioPipeReader::kChannels); |
| 75 callback_.Run(packet.Pass()); | 75 callback_.Run(packet.Pass()); |
| 76 } | 76 } |
| 77 | 77 |
| 78 bool AudioCapturer::IsSupported() { | 78 bool AudioCapturer::IsSupported() { |
| 79 return g_pulseaudio_pipe_sink_reader.Get().get() != NULL; | 79 return g_pulseaudio_pipe_sink_reader.Get().get() != nullptr; |
| 80 } | 80 } |
| 81 | 81 |
| 82 scoped_ptr<AudioCapturer> AudioCapturer::Create() { | 82 scoped_ptr<AudioCapturer> AudioCapturer::Create() { |
| 83 scoped_refptr<AudioPipeReader> reader = | 83 scoped_refptr<AudioPipeReader> reader = |
| 84 g_pulseaudio_pipe_sink_reader.Get(); | 84 g_pulseaudio_pipe_sink_reader.Get(); |
| 85 if (!reader.get()) | 85 if (!reader.get()) |
| 86 return nullptr; | 86 return nullptr; |
| 87 return make_scoped_ptr(new AudioCapturerLinux(reader)); | 87 return make_scoped_ptr(new AudioCapturerLinux(reader)); |
| 88 } | 88 } |
| 89 | 89 |
| 90 } // namespace remoting | 90 } // namespace remoting |
| OLD | NEW |