audio_hw.cpp revision dd45fd3aede6b116656a60a2d9b6e286d19f030f
1/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "r_submix"
18//#define LOG_NDEBUG 0
19
20#include <errno.h>
21#include <pthread.h>
22#include <stdint.h>
23#include <stdlib.h>
24#include <sys/param.h>
25#include <sys/time.h>
26#include <sys/limits.h>
27
28#include <cutils/log.h>
29#include <cutils/properties.h>
30#include <cutils/str_parms.h>
31
32#include <hardware/audio.h>
33#include <hardware/hardware.h>
34#include <system/audio.h>
35
36#include <media/AudioParameter.h>
37#include <media/AudioBufferProvider.h>
38#include <media/nbaio/MonoPipe.h>
39#include <media/nbaio/MonoPipeReader.h>
40
41#include <utils/String8.h>
42
43#define LOG_STREAMS_TO_FILES 0
44#if LOG_STREAMS_TO_FILES
45#include <fcntl.h>
46#include <stdio.h>
47#include <sys/stat.h>
48#endif // LOG_STREAMS_TO_FILES
49
50extern "C" {
51
52namespace android {
53
54// Set to 1 to enable extremely verbose logging in this module.
55#define SUBMIX_VERBOSE_LOGGING 0
56#if SUBMIX_VERBOSE_LOGGING
57#define SUBMIX_ALOGV(...) ALOGV(__VA_ARGS__)
58#define SUBMIX_ALOGE(...) ALOGE(__VA_ARGS__)
59#else
60#define SUBMIX_ALOGV(...)
61#define SUBMIX_ALOGE(...)
62#endif // SUBMIX_VERBOSE_LOGGING
63
64// NOTE: This value will be rounded up to the nearest power of 2 by MonoPipe().
65#define DEFAULT_PIPE_SIZE_IN_FRAMES  (1024*8)
66// Value used to divide the MonoPipe() buffer into segments that are written to the source and
67// read from the sink.  The maximum latency of the device is the size of the MonoPipe's buffer
68// the minimum latency is the MonoPipe buffer size divided by this value.
69#define DEFAULT_PIPE_PERIOD_COUNT    4
70// The duration of MAX_READ_ATTEMPTS * READ_ATTEMPT_SLEEP_MS must be stricly inferior to
71//   the duration of a record buffer at the current record sample rate (of the device, not of
72//   the recording itself). Here we have:
73//      3 * 5ms = 15ms < 1024 frames * 1000 / 48000 = 21.333ms
74#define MAX_READ_ATTEMPTS            3
75#define READ_ATTEMPT_SLEEP_MS        5 // 5ms between two read attempts when pipe is empty
76#define DEFAULT_SAMPLE_RATE_HZ       48000 // default sample rate
77// See NBAIO_Format frameworks/av/include/media/nbaio/NBAIO.h.
78#define DEFAULT_FORMAT               AUDIO_FORMAT_PCM_16_BIT
79// A legacy user of this device does not close the input stream when it shuts down, which
80// results in the application opening a new input stream before closing the old input stream
81// handle it was previously using.  Setting this value to 1 allows multiple clients to open
82// multiple input streams from this device.  If this option is enabled, each input stream returned
83// is *the same stream* which means that readers will race to read data from these streams.
84#define ENABLE_LEGACY_INPUT_OPEN     1
85// Whether channel conversion (16-bit signed PCM mono->stereo, stereo->mono) is enabled.
86#define ENABLE_CHANNEL_CONVERSION    1
87// Whether resampling is enabled.
88#define ENABLE_RESAMPLING            1
89#if LOG_STREAMS_TO_FILES
90// Folder to save stream log files to.
91#define LOG_STREAM_FOLDER "/data/misc/media"
92// Log filenames for input and output streams.
93#define LOG_STREAM_OUT_FILENAME LOG_STREAM_FOLDER "/r_submix_out.raw"
94#define LOG_STREAM_IN_FILENAME LOG_STREAM_FOLDER "/r_submix_in.raw"
95// File permissions for stream log files.
96#define LOG_STREAM_FILE_PERMISSIONS (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)
97#endif // LOG_STREAMS_TO_FILES
98
99// Common limits macros.
100#ifndef min
101#define min(a, b) ((a) < (b) ? (a) : (b))
102#endif // min
103#ifndef max
104#define max(a, b) ((a) > (b) ? (a) : (b))
105#endif // max
106
107// Set *result_variable_ptr to true if value_to_find is present in the array array_to_search,
108// otherwise set *result_variable_ptr to false.
109#define SUBMIX_VALUE_IN_SET(value_to_find, array_to_search, result_variable_ptr) \
110    { \
111        size_t i; \
112        *(result_variable_ptr) = false; \
113        for (i = 0; i < sizeof(array_to_search) / sizeof((array_to_search)[0]); i++) { \
114          if ((value_to_find) == (array_to_search)[i]) { \
115                *(result_variable_ptr) = true; \
116                break; \
117            } \
118        } \
119    }
120
121// Configuration of the submix pipe.
122struct submix_config {
123    // Channel mask field in this data structure is set to either input_channel_mask or
124    // output_channel_mask depending upon the last stream to be opened on this device.
125    struct audio_config common;
126    // Input stream and output stream channel masks.  This is required since input and output
127    // channel bitfields are not equivalent.
128    audio_channel_mask_t input_channel_mask;
129    audio_channel_mask_t output_channel_mask;
130#if ENABLE_RESAMPLING
131    // Input stream and output stream sample rates.
132    uint32_t input_sample_rate;
133    uint32_t output_sample_rate;
134#endif // ENABLE_RESAMPLING
135    size_t pipe_frame_size;  // Number of bytes in each audio frame in the pipe.
136    size_t buffer_size_frames; // Size of the audio pipe in frames.
137    // Maximum number of frames buffered by the input and output streams.
138    size_t buffer_period_size_frames;
139};
140
141struct submix_audio_device {
142    struct audio_hw_device device;
143    bool input_standby;
144    bool output_standby;
145    submix_config config;
146    // Pipe variables: they handle the ring buffer that "pipes" audio:
147    //  - from the submix virtual audio output == what needs to be played
148    //    remotely, seen as an output for AudioFlinger
149    //  - to the virtual audio source == what is captured by the component
150    //    which "records" the submix / virtual audio source, and handles it as needed.
151    // A usecase example is one where the component capturing the audio is then sending it over
152    // Wifi for presentation on a remote Wifi Display device (e.g. a dongle attached to a TV, or a
153    // TV with Wifi Display capabilities), or to a wireless audio player.
154    sp<MonoPipe> rsxSink;
155    sp<MonoPipeReader> rsxSource;
156#if ENABLE_RESAMPLING
157    // Buffer used as temporary storage for resampled data prior to returning data to the output
158    // stream.
159    int16_t resampler_buffer[DEFAULT_PIPE_SIZE_IN_FRAMES];
160#endif // ENABLE_RESAMPLING
161
162    // Pointers to the current input and output stream instances.  rsxSink and rsxSource are
163    // destroyed if both and input and output streams are destroyed.
164    struct submix_stream_out *output;
165    struct submix_stream_in *input;
166
167    // Device lock, also used to protect access to submix_audio_device from the input and output
168    // streams.
169    pthread_mutex_t lock;
170};
171
172struct submix_stream_out {
173    struct audio_stream_out stream;
174    struct submix_audio_device *dev;
175#if LOG_STREAMS_TO_FILES
176    int log_fd;
177#endif // LOG_STREAMS_TO_FILES
178};
179
180struct submix_stream_in {
181    struct audio_stream_in stream;
182    struct submix_audio_device *dev;
183    bool output_standby; // output standby state as seen from record thread
184
185    // wall clock when recording starts
186    struct timespec record_start_time;
187    // how many frames have been requested to be read
188    int64_t read_counter_frames;
189
190#if ENABLE_LEGACY_INPUT_OPEN
191    // Number of references to this input stream.
192    volatile int32_t ref_count;
193#endif // ENABLE_LEGACY_INPUT_OPEN
194#if LOG_STREAMS_TO_FILES
195    int log_fd;
196#endif // LOG_STREAMS_TO_FILES
197};
198
199// Determine whether the specified sample rate is supported by the submix module.
200static bool sample_rate_supported(const uint32_t sample_rate)
201{
202    // Set of sample rates supported by Format_from_SR_C() frameworks/av/media/libnbaio/NAIO.cpp.
203    static const unsigned int supported_sample_rates[] = {
204        8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000,
205    };
206    bool return_value;
207    SUBMIX_VALUE_IN_SET(sample_rate, supported_sample_rates, &return_value);
208    return return_value;
209}
210
211// Determine whether the specified sample rate is supported, if it is return the specified sample
212// rate, otherwise return the default sample rate for the submix module.
213static uint32_t get_supported_sample_rate(uint32_t sample_rate)
214{
215  return sample_rate_supported(sample_rate) ? sample_rate : DEFAULT_SAMPLE_RATE_HZ;
216}
217
218// Determine whether the specified channel in mask is supported by the submix module.
219static bool channel_in_mask_supported(const audio_channel_mask_t channel_in_mask)
220{
221    // Set of channel in masks supported by Format_from_SR_C()
222    // frameworks/av/media/libnbaio/NAIO.cpp.
223    static const audio_channel_mask_t supported_channel_in_masks[] = {
224        AUDIO_CHANNEL_IN_MONO, AUDIO_CHANNEL_IN_STEREO,
225    };
226    bool return_value;
227    SUBMIX_VALUE_IN_SET(channel_in_mask, supported_channel_in_masks, &return_value);
228    return return_value;
229}
230
231// Determine whether the specified channel in mask is supported, if it is return the specified
232// channel in mask, otherwise return the default channel in mask for the submix module.
233static audio_channel_mask_t get_supported_channel_in_mask(
234        const audio_channel_mask_t channel_in_mask)
235{
236    return channel_in_mask_supported(channel_in_mask) ? channel_in_mask :
237            static_cast<audio_channel_mask_t>(AUDIO_CHANNEL_IN_STEREO);
238}
239
240// Determine whether the specified channel out mask is supported by the submix module.
241static bool channel_out_mask_supported(const audio_channel_mask_t channel_out_mask)
242{
243    // Set of channel out masks supported by Format_from_SR_C()
244    // frameworks/av/media/libnbaio/NAIO.cpp.
245    static const audio_channel_mask_t supported_channel_out_masks[] = {
246        AUDIO_CHANNEL_OUT_MONO, AUDIO_CHANNEL_OUT_STEREO,
247    };
248    bool return_value;
249    SUBMIX_VALUE_IN_SET(channel_out_mask, supported_channel_out_masks, &return_value);
250    return return_value;
251}
252
253// Determine whether the specified channel out mask is supported, if it is return the specified
254// channel out mask, otherwise return the default channel out mask for the submix module.
255static audio_channel_mask_t get_supported_channel_out_mask(
256        const audio_channel_mask_t channel_out_mask)
257{
258    return channel_out_mask_supported(channel_out_mask) ? channel_out_mask :
259        static_cast<audio_channel_mask_t>(AUDIO_CHANNEL_OUT_STEREO);
260}
261
262// Get a pointer to submix_stream_out given an audio_stream_out that is embedded within the
263// structure.
264static struct submix_stream_out * audio_stream_out_get_submix_stream_out(
265        struct audio_stream_out * const stream)
266{
267    ALOG_ASSERT(stream);
268    return reinterpret_cast<struct submix_stream_out *>(reinterpret_cast<uint8_t *>(stream) -
269                offsetof(struct submix_stream_out, stream));
270}
271
272// Get a pointer to submix_stream_out given an audio_stream that is embedded within the structure.
273static struct submix_stream_out * audio_stream_get_submix_stream_out(
274        struct audio_stream * const stream)
275{
276    ALOG_ASSERT(stream);
277    return audio_stream_out_get_submix_stream_out(
278            reinterpret_cast<struct audio_stream_out *>(stream));
279}
280
281// Get a pointer to submix_stream_in given an audio_stream_in that is embedded within the
282// structure.
283static struct submix_stream_in * audio_stream_in_get_submix_stream_in(
284        struct audio_stream_in * const stream)
285{
286    ALOG_ASSERT(stream);
287    return reinterpret_cast<struct submix_stream_in *>(reinterpret_cast<uint8_t *>(stream) -
288            offsetof(struct submix_stream_in, stream));
289}
290
291// Get a pointer to submix_stream_in given an audio_stream that is embedded within the structure.
292static struct submix_stream_in * audio_stream_get_submix_stream_in(
293        struct audio_stream * const stream)
294{
295    ALOG_ASSERT(stream);
296    return audio_stream_in_get_submix_stream_in(
297            reinterpret_cast<struct audio_stream_in *>(stream));
298}
299
300// Get a pointer to submix_audio_device given a pointer to an audio_device that is embedded within
301// the structure.
302static struct submix_audio_device * audio_hw_device_get_submix_audio_device(
303        struct audio_hw_device *device)
304{
305    ALOG_ASSERT(device);
306    return reinterpret_cast<struct submix_audio_device *>(reinterpret_cast<uint8_t *>(device) -
307        offsetof(struct submix_audio_device, device));
308}
309
310// Compare an audio_config with input channel mask and an audio_config with output channel mask
311// returning false if they do *not* match, true otherwise.
312static bool audio_config_compare(const audio_config * const input_config,
313        const audio_config * const output_config)
314{
315#if !ENABLE_CHANNEL_CONVERSION
316    const uint32_t input_channels = audio_channel_count_from_in_mask(input_config->channel_mask);
317    const uint32_t output_channels = audio_channel_count_from_out_mask(output_config->channel_mask);
318    if (input_channels != output_channels) {
319        ALOGE("audio_config_compare() channel count mismatch input=%d vs. output=%d",
320              input_channels, output_channels);
321        return false;
322    }
323#endif // !ENABLE_CHANNEL_CONVERSION
324#if ENABLE_RESAMPLING
325    if (input_config->sample_rate != output_config->sample_rate &&
326            audio_channel_count_from_in_mask(input_config->channel_mask) != 1) {
327#else
328    if (input_config->sample_rate != output_config->sample_rate) {
329#endif // ENABLE_RESAMPLING
330        ALOGE("audio_config_compare() sample rate mismatch %ul vs. %ul",
331              input_config->sample_rate, output_config->sample_rate);
332        return false;
333    }
334    if (input_config->format != output_config->format) {
335        ALOGE("audio_config_compare() format mismatch %x vs. %x",
336              input_config->format, output_config->format);
337        return false;
338    }
339    // This purposely ignores offload_info as it's not required for the submix device.
340    return true;
341}
342
343// If one doesn't exist, create a pipe for the submix audio device rsxadev of size
344// buffer_size_frames and optionally associate "in" or "out" with the submix audio device.
345static void submix_audio_device_create_pipe(struct submix_audio_device * const rsxadev,
346                                            const struct audio_config * const config,
347                                            const size_t buffer_size_frames,
348                                            const uint32_t buffer_period_count,
349                                            struct submix_stream_in * const in,
350                                            struct submix_stream_out * const out)
351{
352    ALOG_ASSERT(in || out);
353    ALOGV("submix_audio_device_create_pipe()");
354    pthread_mutex_lock(&rsxadev->lock);
355    // Save a reference to the specified input or output stream and the associated channel
356    // mask.
357    if (in) {
358        rsxadev->input = in;
359        rsxadev->config.input_channel_mask = config->channel_mask;
360#if ENABLE_RESAMPLING
361        rsxadev->config.input_sample_rate = config->sample_rate;
362        // If the output isn't configured yet, set the output sample rate to the maximum supported
363        // sample rate such that the smallest possible input buffer is created.
364        if (!rsxadev->output) {
365            rsxadev->config.output_sample_rate = 48000;
366        }
367#endif // ENABLE_RESAMPLING
368    }
369    if (out) {
370        rsxadev->output = out;
371        rsxadev->config.output_channel_mask = config->channel_mask;
372#if ENABLE_RESAMPLING
373        rsxadev->config.output_sample_rate = config->sample_rate;
374#endif // ENABLE_RESAMPLING
375    }
376    // If a pipe isn't associated with the device, create one.
377    if (rsxadev->rsxSink == NULL || rsxadev->rsxSource == NULL) {
378        struct submix_config * const device_config = &rsxadev->config;
379        uint32_t channel_count;
380        if (out)
381            channel_count = audio_channel_count_from_out_mask(config->channel_mask);
382        else
383            channel_count = audio_channel_count_from_in_mask(config->channel_mask);
384#if ENABLE_CHANNEL_CONVERSION
385        // If channel conversion is enabled, allocate enough space for the maximum number of
386        // possible channels stored in the pipe for the situation when the number of channels in
387        // the output stream don't match the number in the input stream.
388        const uint32_t pipe_channel_count = max(channel_count, 2);
389#else
390        const uint32_t pipe_channel_count = channel_count;
391#endif // ENABLE_CHANNEL_CONVERSION
392        const NBAIO_Format format = Format_from_SR_C(config->sample_rate, pipe_channel_count,
393            config->format);
394        const NBAIO_Format offers[1] = {format};
395        size_t numCounterOffers = 0;
396        // Create a MonoPipe with optional blocking set to true.
397        MonoPipe* sink = new MonoPipe(buffer_size_frames, format, true /*writeCanBlock*/);
398        // Negotiation between the source and sink cannot fail as the device open operation
399        // creates both ends of the pipe using the same audio format.
400        ssize_t index = sink->negotiate(offers, 1, NULL, numCounterOffers);
401        ALOG_ASSERT(index == 0);
402        MonoPipeReader* source = new MonoPipeReader(sink);
403        numCounterOffers = 0;
404        index = source->negotiate(offers, 1, NULL, numCounterOffers);
405        ALOG_ASSERT(index == 0);
406        ALOGV("submix_audio_device_create_pipe(): created pipe");
407
408        // Save references to the source and sink.
409        ALOG_ASSERT(rsxadev->rsxSink == NULL);
410        ALOG_ASSERT(rsxadev->rsxSource == NULL);
411        rsxadev->rsxSink = sink;
412        rsxadev->rsxSource = source;
413        // Store the sanitized audio format in the device so that it's possible to determine
414        // the format of the pipe source when opening the input device.
415        memcpy(&device_config->common, config, sizeof(device_config->common));
416        device_config->buffer_size_frames = sink->maxFrames();
417        device_config->buffer_period_size_frames = device_config->buffer_size_frames /
418                buffer_period_count;
419        if (in) device_config->pipe_frame_size = audio_stream_frame_size(&in->stream.common);
420        if (out) device_config->pipe_frame_size = audio_stream_frame_size(&out->stream.common);
421#if ENABLE_CHANNEL_CONVERSION
422        // Calculate the pipe frame size based upon the number of channels.
423        device_config->pipe_frame_size = (device_config->pipe_frame_size * pipe_channel_count) /
424                channel_count;
425#endif // ENABLE_CHANNEL_CONVERSION
426        SUBMIX_ALOGV("submix_audio_device_create_pipe(): pipe frame size %zd, pipe size %zd, "
427                     "period size %zd", device_config->pipe_frame_size,
428                     device_config->buffer_size_frames, device_config->buffer_period_size_frames);
429    }
430    pthread_mutex_unlock(&rsxadev->lock);
431}
432
433// Release references to the sink and source.  Input and output threads may maintain references
434// to these objects via StrongPointer (sp<MonoPipe> and sp<MonoPipeReader>) which they can use
435// before they shutdown.
436static void submix_audio_device_release_pipe(struct submix_audio_device * const rsxadev)
437{
438    ALOGV("submix_audio_device_release_pipe()");
439    rsxadev->rsxSink.clear();
440    rsxadev->rsxSource.clear();
441}
442
443// Remove references to the specified input and output streams.  When the device no longer
444// references input and output streams destroy the associated pipe.
445static void submix_audio_device_destroy_pipe(struct submix_audio_device * const rsxadev,
446                                             const struct submix_stream_in * const in,
447                                             const struct submix_stream_out * const out)
448{
449    MonoPipe* sink;
450    pthread_mutex_lock(&rsxadev->lock);
451    ALOGV("submix_audio_device_destroy_pipe()");
452    ALOG_ASSERT(in == NULL || rsxadev->input == in);
453    ALOG_ASSERT(out == NULL || rsxadev->output == out);
454    if (in != NULL) {
455#if ENABLE_LEGACY_INPUT_OPEN
456        const_cast<struct submix_stream_in*>(in)->ref_count--;
457        if (in->ref_count == 0) {
458            rsxadev->input = NULL;
459        }
460        ALOGV("submix_audio_device_destroy_pipe(): input ref_count %d", in->ref_count);
461#else
462        rsxadev->input = NULL;
463#endif // ENABLE_LEGACY_INPUT_OPEN
464    }
465    if (out != NULL) rsxadev->output = NULL;
466    if (rsxadev->input != NULL && rsxadev->output != NULL) {
467        submix_audio_device_release_pipe(rsxadev);
468        ALOGV("submix_audio_device_destroy_pipe(): pipe destroyed");
469    }
470    pthread_mutex_unlock(&rsxadev->lock);
471}
472
473// Sanitize the user specified audio config for a submix input / output stream.
474static void submix_sanitize_config(struct audio_config * const config, const bool is_input_format)
475{
476    config->channel_mask = is_input_format ? get_supported_channel_in_mask(config->channel_mask) :
477            get_supported_channel_out_mask(config->channel_mask);
478    config->sample_rate = get_supported_sample_rate(config->sample_rate);
479    config->format = DEFAULT_FORMAT;
480}
481
482// Verify a submix input or output stream can be opened.
483static bool submix_open_validate(const struct submix_audio_device * const rsxadev,
484                                 pthread_mutex_t * const lock,
485                                 const struct audio_config * const config,
486                                 const bool opening_input)
487{
488    bool input_open;
489    bool output_open;
490    audio_config pipe_config;
491
492    // Query the device for the current audio config and whether input and output streams are open.
493    pthread_mutex_lock(lock);
494    output_open = rsxadev->output != NULL;
495    input_open = rsxadev->input != NULL;
496    memcpy(&pipe_config, &rsxadev->config.common, sizeof(pipe_config));
497    pthread_mutex_unlock(lock);
498
499    // If the stream is already open, don't open it again.
500    if (opening_input ? !ENABLE_LEGACY_INPUT_OPEN && input_open : output_open) {
501        ALOGE("submix_open_validate(): %s stream already open.", opening_input ? "Input" :
502                "Output");
503        return false;
504    }
505
506    SUBMIX_ALOGV("submix_open_validate(): sample rate=%d format=%x "
507                 "%s_channel_mask=%x", config->sample_rate, config->format,
508                 opening_input ? "in" : "out", config->channel_mask);
509
510    // If either stream is open, verify the existing audio config the pipe matches the user
511    // specified config.
512    if (input_open || output_open) {
513        const audio_config * const input_config = opening_input ? config : &pipe_config;
514        const audio_config * const output_config = opening_input ? &pipe_config : config;
515        // Get the channel mask of the open device.
516        pipe_config.channel_mask =
517            opening_input ? rsxadev->config.output_channel_mask :
518                rsxadev->config.input_channel_mask;
519        if (!audio_config_compare(input_config, output_config)) {
520            ALOGE("submix_open_validate(): Unsupported format.");
521            return false;
522        }
523    }
524    return true;
525}
526
527// Calculate the maximum size of the pipe buffer in frames for the specified stream.
528static size_t calculate_stream_pipe_size_in_frames(const struct audio_stream *stream,
529                                                   const struct submix_config *config,
530                                                   const size_t pipe_frames)
531{
532    const size_t stream_frame_size = audio_stream_frame_size(stream);
533    const size_t pipe_frame_size = config->pipe_frame_size;
534    const size_t max_frame_size = max(stream_frame_size, pipe_frame_size);
535    return (pipe_frames * config->pipe_frame_size) / max_frame_size;
536}
537
538/* audio HAL functions */
539
540static uint32_t out_get_sample_rate(const struct audio_stream *stream)
541{
542    const struct submix_stream_out * const out = audio_stream_get_submix_stream_out(
543            const_cast<struct audio_stream *>(stream));
544#if ENABLE_RESAMPLING
545    const uint32_t out_rate = out->dev->config.output_sample_rate;
546#else
547    const uint32_t out_rate = out->dev->config.common.sample_rate;
548#endif // ENABLE_RESAMPLING
549    SUBMIX_ALOGV("out_get_sample_rate() returns %u", out_rate);
550    return out_rate;
551}
552
553static int out_set_sample_rate(struct audio_stream *stream, uint32_t rate)
554{
555    struct submix_stream_out * const out = audio_stream_get_submix_stream_out(stream);
556#if ENABLE_RESAMPLING
557    // The sample rate of the stream can't be changed once it's set since this would change the
558    // output buffer size and hence break playback to the shared pipe.
559    if (rate != out->dev->config.output_sample_rate) {
560        ALOGE("out_set_sample_rate(rate=%u) resampling enabled can't change sample rate from "
561              "%u to %u", out->dev->config.output_sample_rate, rate);
562        return -ENOSYS;
563    }
564#endif // ENABLE_RESAMPLING
565    if (!sample_rate_supported(rate)) {
566        ALOGE("out_set_sample_rate(rate=%u) rate unsupported", rate);
567        return -ENOSYS;
568    }
569    SUBMIX_ALOGV("out_set_sample_rate(rate=%u)", rate);
570    out->dev->config.common.sample_rate = rate;
571    return 0;
572}
573
574static size_t out_get_buffer_size(const struct audio_stream *stream)
575{
576    const struct submix_stream_out * const out = audio_stream_get_submix_stream_out(
577            const_cast<struct audio_stream *>(stream));
578    const struct submix_config * const config = &out->dev->config;
579    const size_t buffer_size_frames = calculate_stream_pipe_size_in_frames(
580        stream, config, config->buffer_period_size_frames);
581    const size_t buffer_size_bytes = buffer_size_frames * audio_stream_frame_size(stream);
582    SUBMIX_ALOGV("out_get_buffer_size() returns %zu bytes, %zu frames",
583                 buffer_size_bytes, buffer_size_frames);
584    return buffer_size_bytes;
585}
586
587static audio_channel_mask_t out_get_channels(const struct audio_stream *stream)
588{
589    const struct submix_stream_out * const out = audio_stream_get_submix_stream_out(
590            const_cast<struct audio_stream *>(stream));
591    uint32_t channel_mask = out->dev->config.output_channel_mask;
592    SUBMIX_ALOGV("out_get_channels() returns %08x", channel_mask);
593    return channel_mask;
594}
595
596static audio_format_t out_get_format(const struct audio_stream *stream)
597{
598    const struct submix_stream_out * const out = audio_stream_get_submix_stream_out(
599            const_cast<struct audio_stream *>(stream));
600    const audio_format_t format = out->dev->config.common.format;
601    SUBMIX_ALOGV("out_get_format() returns %x", format);
602    return format;
603}
604
605static int out_set_format(struct audio_stream *stream, audio_format_t format)
606{
607    const struct submix_stream_out * const out = audio_stream_get_submix_stream_out(stream);
608    if (format != out->dev->config.common.format) {
609        ALOGE("out_set_format(format=%x) format unsupported", format);
610        return -ENOSYS;
611    }
612    SUBMIX_ALOGV("out_set_format(format=%x)", format);
613    return 0;
614}
615
616static int out_standby(struct audio_stream *stream)
617{
618    struct submix_audio_device * const rsxadev = audio_stream_get_submix_stream_out(stream)->dev;
619    ALOGI("out_standby()");
620
621    pthread_mutex_lock(&rsxadev->lock);
622
623    rsxadev->output_standby = true;
624
625    pthread_mutex_unlock(&rsxadev->lock);
626
627    return 0;
628}
629
630static int out_dump(const struct audio_stream *stream, int fd)
631{
632    (void)stream;
633    (void)fd;
634    return 0;
635}
636
637static int out_set_parameters(struct audio_stream *stream, const char *kvpairs)
638{
639    int exiting = -1;
640    AudioParameter parms = AudioParameter(String8(kvpairs));
641    SUBMIX_ALOGV("out_set_parameters() kvpairs='%s'", kvpairs);
642
643    // FIXME this is using hard-coded strings but in the future, this functionality will be
644    //       converted to use audio HAL extensions required to support tunneling
645    if ((parms.getInt(String8("exiting"), exiting) == NO_ERROR) && (exiting > 0)) {
646        struct submix_audio_device * const rsxadev =
647                audio_stream_get_submix_stream_out(stream)->dev;
648        pthread_mutex_lock(&rsxadev->lock);
649        { // using the sink
650            sp<MonoPipe> sink = rsxadev->rsxSink;
651            if (sink == NULL) {
652                pthread_mutex_unlock(&rsxadev->lock);
653                return 0;
654            }
655
656            ALOGI("out_set_parameters(): shutdown");
657            sink->shutdown(true);
658        } // done using the sink
659        pthread_mutex_unlock(&rsxadev->lock);
660    }
661    return 0;
662}
663
664static char * out_get_parameters(const struct audio_stream *stream, const char *keys)
665{
666    (void)stream;
667    (void)keys;
668    return strdup("");
669}
670
671static uint32_t out_get_latency(const struct audio_stream_out *stream)
672{
673    const struct submix_stream_out * const out = audio_stream_out_get_submix_stream_out(
674            const_cast<struct audio_stream_out *>(stream));
675    const struct submix_config * const config = &out->dev->config;
676    const size_t buffer_size_frames = calculate_stream_pipe_size_in_frames(
677            &stream->common, config, config->buffer_size_frames);
678    const uint32_t sample_rate = out_get_sample_rate(&stream->common);
679    const uint32_t latency_ms = (buffer_size_frames * 1000) / sample_rate;
680    SUBMIX_ALOGV("out_get_latency() returns %u ms, size in frames %zu, sample rate %u",
681                 latency_ms, buffer_size_frames, sample_rate);
682    return latency_ms;
683}
684
685static int out_set_volume(struct audio_stream_out *stream, float left,
686                          float right)
687{
688    (void)stream;
689    (void)left;
690    (void)right;
691    return -ENOSYS;
692}
693
694static ssize_t out_write(struct audio_stream_out *stream, const void* buffer,
695                         size_t bytes)
696{
697    SUBMIX_ALOGV("out_write(bytes=%zd)", bytes);
698    ssize_t written_frames = 0;
699    const size_t frame_size = audio_stream_frame_size(&stream->common);
700    struct submix_stream_out * const out = audio_stream_out_get_submix_stream_out(stream);
701    struct submix_audio_device * const rsxadev = out->dev;
702    const size_t frames = bytes / frame_size;
703
704    pthread_mutex_lock(&rsxadev->lock);
705
706    rsxadev->output_standby = false;
707
708    sp<MonoPipe> sink = rsxadev->rsxSink;
709    if (sink != NULL) {
710        if (sink->isShutdown()) {
711            sink.clear();
712            pthread_mutex_unlock(&rsxadev->lock);
713            SUBMIX_ALOGV("out_write(): pipe shutdown, ignoring the write.");
714            // the pipe has already been shutdown, this buffer will be lost but we must
715            //   simulate timing so we don't drain the output faster than realtime
716            usleep(frames * 1000000 / out_get_sample_rate(&stream->common));
717            return bytes;
718        }
719    } else {
720        pthread_mutex_unlock(&rsxadev->lock);
721        ALOGE("out_write without a pipe!");
722        ALOG_ASSERT("out_write without a pipe!");
723        return 0;
724    }
725
726    // If the write to the sink would block when no input stream is present, flush enough frames
727    // from the pipe to make space to write the most recent data.
728    {
729        const size_t availableToWrite = sink->availableToWrite();
730        sp<MonoPipeReader> source = rsxadev->rsxSource;
731        if (rsxadev->input == NULL && availableToWrite < frames) {
732            static uint8_t flush_buffer[64];
733            const size_t flushBufferSizeFrames = sizeof(flush_buffer) / frame_size;
734            size_t frames_to_flush_from_source = frames - availableToWrite;
735            SUBMIX_ALOGV("out_write(): flushing %d frames from the pipe to avoid blocking",
736                         frames_to_flush_from_source);
737            while (frames_to_flush_from_source) {
738                const size_t flush_size = min(frames_to_flush_from_source, flushBufferSizeFrames);
739                frames_to_flush_from_source -= flush_size;
740                source->read(flush_buffer, flush_size, AudioBufferProvider::kInvalidPTS);
741            }
742        }
743    }
744
745    pthread_mutex_unlock(&rsxadev->lock);
746
747    written_frames = sink->write(buffer, frames);
748
749#if LOG_STREAMS_TO_FILES
750    if (out->log_fd >= 0) write(out->log_fd, buffer, written_frames * frame_size);
751#endif // LOG_STREAMS_TO_FILES
752
753    if (written_frames < 0) {
754        if (written_frames == (ssize_t)NEGOTIATE) {
755            ALOGE("out_write() write to pipe returned NEGOTIATE");
756
757            pthread_mutex_lock(&rsxadev->lock);
758            sink.clear();
759            pthread_mutex_unlock(&rsxadev->lock);
760
761            written_frames = 0;
762            return 0;
763        } else {
764            // write() returned UNDERRUN or WOULD_BLOCK, retry
765            ALOGE("out_write() write to pipe returned unexpected %zd", written_frames);
766            written_frames = sink->write(buffer, frames);
767        }
768    }
769
770    pthread_mutex_lock(&rsxadev->lock);
771    sink.clear();
772    pthread_mutex_unlock(&rsxadev->lock);
773
774    if (written_frames < 0) {
775        ALOGE("out_write() failed writing to pipe with %zd", written_frames);
776        return 0;
777    }
778    const ssize_t written_bytes = written_frames * frame_size;
779    SUBMIX_ALOGV("out_write() wrote %zd bytes %zd frames", written_bytes, written_frames);
780    return written_bytes;
781}
782
783static int out_get_render_position(const struct audio_stream_out *stream,
784                                   uint32_t *dsp_frames)
785{
786    (void)stream;
787    (void)dsp_frames;
788    return -EINVAL;
789}
790
791static int out_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
792{
793    (void)stream;
794    (void)effect;
795    return 0;
796}
797
798static int out_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
799{
800    (void)stream;
801    (void)effect;
802    return 0;
803}
804
805static int out_get_next_write_timestamp(const struct audio_stream_out *stream,
806                                        int64_t *timestamp)
807{
808    (void)stream;
809    (void)timestamp;
810    return -EINVAL;
811}
812
813/** audio_stream_in implementation **/
814static uint32_t in_get_sample_rate(const struct audio_stream *stream)
815{
816    const struct submix_stream_in * const in = audio_stream_get_submix_stream_in(
817        const_cast<struct audio_stream*>(stream));
818#if ENABLE_RESAMPLING
819    const uint32_t rate = in->dev->config.input_sample_rate;
820#else
821    const uint32_t rate = in->dev->config.common.sample_rate;
822#endif // ENABLE_RESAMPLING
823    SUBMIX_ALOGV("in_get_sample_rate() returns %u", rate);
824    return rate;
825}
826
827static int in_set_sample_rate(struct audio_stream *stream, uint32_t rate)
828{
829    const struct submix_stream_in * const in = audio_stream_get_submix_stream_in(stream);
830#if ENABLE_RESAMPLING
831    // The sample rate of the stream can't be changed once it's set since this would change the
832    // input buffer size and hence break recording from the shared pipe.
833    if (rate != in->dev->config.input_sample_rate) {
834        ALOGE("in_set_sample_rate(rate=%u) resampling enabled can't change sample rate from "
835              "%u to %u", in->dev->config.input_sample_rate, rate);
836        return -ENOSYS;
837    }
838#endif // ENABLE_RESAMPLING
839    if (!sample_rate_supported(rate)) {
840        ALOGE("in_set_sample_rate(rate=%u) rate unsupported", rate);
841        return -ENOSYS;
842    }
843    in->dev->config.common.sample_rate = rate;
844    SUBMIX_ALOGV("in_set_sample_rate() set %u", rate);
845    return 0;
846}
847
848static size_t in_get_buffer_size(const struct audio_stream *stream)
849{
850    const struct submix_stream_in * const in = audio_stream_get_submix_stream_in(
851            const_cast<struct audio_stream*>(stream));
852    const struct submix_config * const config = &in->dev->config;
853    size_t buffer_size_frames = calculate_stream_pipe_size_in_frames(
854        stream, config, config->buffer_period_size_frames);
855#if ENABLE_RESAMPLING
856    // Scale the size of the buffer based upon the maximum number of frames that could be returned
857    // given the ratio of output to input sample rate.
858    buffer_size_frames = (size_t)(((float)buffer_size_frames *
859                                   (float)config->input_sample_rate) /
860                                  (float)config->output_sample_rate);
861#endif // ENABLE_RESAMPLING
862    const size_t buffer_size_bytes = buffer_size_frames * audio_stream_frame_size(stream);
863    SUBMIX_ALOGV("in_get_buffer_size() returns %zu bytes, %zu frames", buffer_size_bytes,
864                 buffer_size_frames);
865    return buffer_size_bytes;
866}
867
868static audio_channel_mask_t in_get_channels(const struct audio_stream *stream)
869{
870    const struct submix_stream_in * const in = audio_stream_get_submix_stream_in(
871            const_cast<struct audio_stream*>(stream));
872    const audio_channel_mask_t channel_mask = in->dev->config.input_channel_mask;
873    SUBMIX_ALOGV("in_get_channels() returns %x", channel_mask);
874    return channel_mask;
875}
876
877static audio_format_t in_get_format(const struct audio_stream *stream)
878{
879    const struct submix_stream_in * const in = audio_stream_get_submix_stream_in(
880            const_cast<struct audio_stream*>(stream));
881    const audio_format_t format = in->dev->config.common.format;
882    SUBMIX_ALOGV("in_get_format() returns %x", format);
883    return format;
884}
885
886static int in_set_format(struct audio_stream *stream, audio_format_t format)
887{
888    const struct submix_stream_in * const in = audio_stream_get_submix_stream_in(stream);
889    if (format != in->dev->config.common.format) {
890        ALOGE("in_set_format(format=%x) format unsupported", format);
891        return -ENOSYS;
892    }
893    SUBMIX_ALOGV("in_set_format(format=%x)", format);
894    return 0;
895}
896
897static int in_standby(struct audio_stream *stream)
898{
899    struct submix_audio_device * const rsxadev = audio_stream_get_submix_stream_in(stream)->dev;
900    ALOGI("in_standby()");
901
902    pthread_mutex_lock(&rsxadev->lock);
903
904    rsxadev->input_standby = true;
905
906    pthread_mutex_unlock(&rsxadev->lock);
907
908    return 0;
909}
910
911static int in_dump(const struct audio_stream *stream, int fd)
912{
913    (void)stream;
914    (void)fd;
915    return 0;
916}
917
918static int in_set_parameters(struct audio_stream *stream, const char *kvpairs)
919{
920    (void)stream;
921    (void)kvpairs;
922    return 0;
923}
924
925static char * in_get_parameters(const struct audio_stream *stream,
926                                const char *keys)
927{
928    (void)stream;
929    (void)keys;
930    return strdup("");
931}
932
933static int in_set_gain(struct audio_stream_in *stream, float gain)
934{
935    (void)stream;
936    (void)gain;
937    return 0;
938}
939
940static ssize_t in_read(struct audio_stream_in *stream, void* buffer,
941                       size_t bytes)
942{
943    struct submix_stream_in * const in = audio_stream_in_get_submix_stream_in(stream);
944    struct submix_audio_device * const rsxadev = in->dev;
945    struct audio_config *format;
946    const size_t frame_size = audio_stream_frame_size(&stream->common);
947    const size_t frames_to_read = bytes / frame_size;
948
949    SUBMIX_ALOGV("in_read bytes=%zu", bytes);
950    pthread_mutex_lock(&rsxadev->lock);
951
952    const bool output_standby_transition = (in->output_standby != in->dev->output_standby);
953    in->output_standby = rsxadev->output_standby;
954
955    if (rsxadev->input_standby || output_standby_transition) {
956        rsxadev->input_standby = false;
957        // keep track of when we exit input standby (== first read == start "real recording")
958        // or when we start recording silence, and reset projected time
959        int rc = clock_gettime(CLOCK_MONOTONIC, &in->record_start_time);
960        if (rc == 0) {
961            in->read_counter_frames = 0;
962        }
963    }
964
965    in->read_counter_frames += frames_to_read;
966    size_t remaining_frames = frames_to_read;
967
968    {
969        // about to read from audio source
970        sp<MonoPipeReader> source = rsxadev->rsxSource;
971        if (source == NULL) {
972            ALOGE("no audio pipe yet we're trying to read!");
973            pthread_mutex_unlock(&rsxadev->lock);
974            usleep(frames_to_read * 1000000 / in_get_sample_rate(&stream->common));
975            memset(buffer, 0, bytes);
976            return bytes;
977        }
978
979        pthread_mutex_unlock(&rsxadev->lock);
980
981        // read the data from the pipe (it's non blocking)
982        int attempts = 0;
983        char* buff = (char*)buffer;
984#if ENABLE_CHANNEL_CONVERSION
985        // Determine whether channel conversion is required.
986        const uint32_t input_channels = audio_channel_count_from_in_mask(
987            rsxadev->config.input_channel_mask);
988        const uint32_t output_channels = audio_channel_count_from_out_mask(
989            rsxadev->config.output_channel_mask);
990        if (input_channels != output_channels) {
991            SUBMIX_ALOGV("in_read(): %d output channels will be converted to %d "
992                         "input channels", output_channels, input_channels);
993            // Only support 16-bit PCM channel conversion from mono to stereo or stereo to mono.
994            ALOG_ASSERT(rsxadev->config.common.format == AUDIO_FORMAT_PCM_16_BIT);
995            ALOG_ASSERT((input_channels == 1 && output_channels == 2) ||
996                        (input_channels == 2 && output_channels == 1));
997        }
998#endif // ENABLE_CHANNEL_CONVERSION
999
1000#if ENABLE_RESAMPLING
1001        const uint32_t input_sample_rate = in_get_sample_rate(&stream->common);
1002        const uint32_t output_sample_rate = rsxadev->config.output_sample_rate;
1003        const size_t resampler_buffer_size_frames =
1004            sizeof(rsxadev->resampler_buffer) / sizeof(rsxadev->resampler_buffer[0]);
1005        float resampler_ratio = 1.0f;
1006        // Determine whether resampling is required.
1007        if (input_sample_rate != output_sample_rate) {
1008            resampler_ratio = (float)output_sample_rate / (float)input_sample_rate;
1009            // Only support 16-bit PCM mono resampling.
1010            // NOTE: Resampling is performed after the channel conversion step.
1011            ALOG_ASSERT(rsxadev->config.common.format == AUDIO_FORMAT_PCM_16_BIT);
1012            ALOG_ASSERT(audio_channel_count_from_in_mask(rsxadev->config.input_channel_mask) == 1);
1013        }
1014#endif // ENABLE_RESAMPLING
1015
1016        while ((remaining_frames > 0) && (attempts < MAX_READ_ATTEMPTS)) {
1017            ssize_t frames_read = -1977;
1018            size_t read_frames = remaining_frames;
1019#if ENABLE_RESAMPLING
1020            char* const saved_buff = buff;
1021            if (resampler_ratio != 1.0f) {
1022                // Calculate the number of frames from the pipe that need to be read to generate
1023                // the data for the input stream read.
1024                const size_t frames_required_for_resampler = (size_t)(
1025                    (float)read_frames * (float)resampler_ratio);
1026                read_frames = min(frames_required_for_resampler, resampler_buffer_size_frames);
1027                // Read into the resampler buffer.
1028                buff = (char*)rsxadev->resampler_buffer;
1029            }
1030#endif // ENABLE_RESAMPLING
1031#if ENABLE_CHANNEL_CONVERSION
1032            if (output_channels == 1 && input_channels == 2) {
1033                // Need to read half the requested frames since the converted output
1034                // data will take twice the space (mono->stereo).
1035                read_frames /= 2;
1036            }
1037#endif // ENABLE_CHANNEL_CONVERSION
1038
1039            SUBMIX_ALOGV("in_read(): frames available to read %zd", source->availableToRead());
1040
1041            frames_read = source->read(buff, read_frames, AudioBufferProvider::kInvalidPTS);
1042
1043            SUBMIX_ALOGV("in_read(): frames read %zd", frames_read);
1044
1045#if ENABLE_CHANNEL_CONVERSION
1046            // Perform in-place channel conversion.
1047            // NOTE: In the following "input stream" refers to the data returned by this function
1048            // and "output stream" refers to the data read from the pipe.
1049            if (input_channels != output_channels && frames_read > 0) {
1050                int16_t *data = (int16_t*)buff;
1051                if (output_channels == 2 && input_channels == 1) {
1052                    // Offset into the output stream data in samples.
1053                    ssize_t output_stream_offset = 0;
1054                    for (ssize_t input_stream_frame = 0; input_stream_frame < frames_read;
1055                         input_stream_frame++, output_stream_offset += 2) {
1056                        // Average the content from both channels.
1057                        data[input_stream_frame] = ((int32_t)data[output_stream_offset] +
1058                                                    (int32_t)data[output_stream_offset + 1]) / 2;
1059                    }
1060                } else if (output_channels == 1 && input_channels == 2) {
1061                    // Offset into the input stream data in samples.
1062                    ssize_t input_stream_offset = (frames_read - 1) * 2;
1063                    for (ssize_t output_stream_frame = frames_read - 1; output_stream_frame >= 0;
1064                         output_stream_frame--, input_stream_offset -= 2) {
1065                        const short sample = data[output_stream_frame];
1066                        data[input_stream_offset] = sample;
1067                        data[input_stream_offset + 1] = sample;
1068                    }
1069                }
1070            }
1071#endif // ENABLE_CHANNEL_CONVERSION
1072
1073#if ENABLE_RESAMPLING
1074            if (resampler_ratio != 1.0f) {
1075                SUBMIX_ALOGV("in_read(): resampling %zd frames", frames_read);
1076                const int16_t * const data = (int16_t*)buff;
1077                int16_t * const resampled_buffer = (int16_t*)saved_buff;
1078                // Resample with *no* filtering - if the data from the ouptut stream was really
1079                // sampled at a different rate this will result in very nasty aliasing.
1080                const float output_stream_frames = (float)frames_read;
1081                size_t input_stream_frame = 0;
1082                for (float output_stream_frame = 0.0f;
1083                     output_stream_frame < output_stream_frames &&
1084                     input_stream_frame < remaining_frames;
1085                     output_stream_frame += resampler_ratio, input_stream_frame++) {
1086                    resampled_buffer[input_stream_frame] = data[(size_t)output_stream_frame];
1087                }
1088                ALOG_ASSERT(input_stream_frame <= (ssize_t)resampler_buffer_size_frames);
1089                SUBMIX_ALOGV("in_read(): resampler produced %zd frames", input_stream_frame);
1090                frames_read = input_stream_frame;
1091                buff = saved_buff;
1092            }
1093#endif // ENABLE_RESAMPLING
1094
1095            if (frames_read > 0) {
1096#if LOG_STREAMS_TO_FILES
1097                if (in->log_fd >= 0) write(in->log_fd, buff, frames_read * frame_size);
1098#endif // LOG_STREAMS_TO_FILES
1099
1100                remaining_frames -= frames_read;
1101                buff += frames_read * frame_size;
1102                SUBMIX_ALOGV("  in_read (att=%d) got %zd frames, remaining=%zu",
1103                             attempts, frames_read, remaining_frames);
1104            } else {
1105                attempts++;
1106                SUBMIX_ALOGE("  in_read read returned %zd", frames_read);
1107                usleep(READ_ATTEMPT_SLEEP_MS * 1000);
1108            }
1109        }
1110        // done using the source
1111        pthread_mutex_lock(&rsxadev->lock);
1112        source.clear();
1113        pthread_mutex_unlock(&rsxadev->lock);
1114    }
1115
1116    if (remaining_frames > 0) {
1117        const size_t remaining_bytes = remaining_frames * frame_size;
1118        SUBMIX_ALOGV("  clearing remaining_frames = %zu", remaining_frames);
1119        memset(((char*)buffer)+ bytes - remaining_bytes, 0, remaining_bytes);
1120    }
1121
1122    // compute how much we need to sleep after reading the data by comparing the wall clock with
1123    //   the projected time at which we should return.
1124    struct timespec time_after_read;// wall clock after reading from the pipe
1125    struct timespec record_duration;// observed record duration
1126    int rc = clock_gettime(CLOCK_MONOTONIC, &time_after_read);
1127    const uint32_t sample_rate = in_get_sample_rate(&stream->common);
1128    if (rc == 0) {
1129        // for how long have we been recording?
1130        record_duration.tv_sec  = time_after_read.tv_sec - in->record_start_time.tv_sec;
1131        record_duration.tv_nsec = time_after_read.tv_nsec - in->record_start_time.tv_nsec;
1132        if (record_duration.tv_nsec < 0) {
1133            record_duration.tv_sec--;
1134            record_duration.tv_nsec += 1000000000;
1135        }
1136
1137        // read_counter_frames contains the number of frames that have been read since the
1138        // beginning of recording (including this call): it's converted to usec and compared to
1139        // how long we've been recording for, which gives us how long we must wait to sync the
1140        // projected recording time, and the observed recording time.
1141        long projected_vs_observed_offset_us =
1142                ((int64_t)(in->read_counter_frames
1143                            - (record_duration.tv_sec*sample_rate)))
1144                        * 1000000 / sample_rate
1145                - (record_duration.tv_nsec / 1000);
1146
1147        SUBMIX_ALOGV("  record duration %5lds %3ldms, will wait: %7ldus",
1148                record_duration.tv_sec, record_duration.tv_nsec/1000000,
1149                projected_vs_observed_offset_us);
1150        if (projected_vs_observed_offset_us > 0) {
1151            usleep(projected_vs_observed_offset_us);
1152        }
1153    }
1154
1155    SUBMIX_ALOGV("in_read returns %zu", bytes);
1156    return bytes;
1157
1158}
1159
1160static uint32_t in_get_input_frames_lost(struct audio_stream_in *stream)
1161{
1162    (void)stream;
1163    return 0;
1164}
1165
1166static int in_add_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
1167{
1168    (void)stream;
1169    (void)effect;
1170    return 0;
1171}
1172
1173static int in_remove_audio_effect(const struct audio_stream *stream, effect_handle_t effect)
1174{
1175    (void)stream;
1176    (void)effect;
1177    return 0;
1178}
1179
1180static int adev_open_output_stream(struct audio_hw_device *dev,
1181                                   audio_io_handle_t handle,
1182                                   audio_devices_t devices,
1183                                   audio_output_flags_t flags,
1184                                   struct audio_config *config,
1185                                   struct audio_stream_out **stream_out)
1186{
1187    struct submix_audio_device * const rsxadev = audio_hw_device_get_submix_audio_device(dev);
1188    ALOGV("adev_open_output_stream()");
1189    struct submix_stream_out *out;
1190    bool force_pipe_creation = false;
1191    (void)handle;
1192    (void)devices;
1193    (void)flags;
1194
1195    *stream_out = NULL;
1196
1197    // Make sure it's possible to open the device given the current audio config.
1198    submix_sanitize_config(config, false);
1199    if (!submix_open_validate(rsxadev, &rsxadev->lock, config, false)) {
1200        ALOGE("adev_open_output_stream(): Unable to open output stream.");
1201        return -EINVAL;
1202    }
1203
1204    out = (struct submix_stream_out *)calloc(1, sizeof(struct submix_stream_out));
1205    if (!out) return -ENOMEM;
1206
1207    // Initialize the function pointer tables (v-tables).
1208    out->stream.common.get_sample_rate = out_get_sample_rate;
1209    out->stream.common.set_sample_rate = out_set_sample_rate;
1210    out->stream.common.get_buffer_size = out_get_buffer_size;
1211    out->stream.common.get_channels = out_get_channels;
1212    out->stream.common.get_format = out_get_format;
1213    out->stream.common.set_format = out_set_format;
1214    out->stream.common.standby = out_standby;
1215    out->stream.common.dump = out_dump;
1216    out->stream.common.set_parameters = out_set_parameters;
1217    out->stream.common.get_parameters = out_get_parameters;
1218    out->stream.common.add_audio_effect = out_add_audio_effect;
1219    out->stream.common.remove_audio_effect = out_remove_audio_effect;
1220    out->stream.get_latency = out_get_latency;
1221    out->stream.set_volume = out_set_volume;
1222    out->stream.write = out_write;
1223    out->stream.get_render_position = out_get_render_position;
1224    out->stream.get_next_write_timestamp = out_get_next_write_timestamp;
1225
1226#if ENABLE_RESAMPLING
1227    // Recreate the pipe with the correct sample rate so that MonoPipe.write() rate limits
1228    // writes correctly.
1229    force_pipe_creation = rsxadev->config.common.sample_rate != config->sample_rate;
1230#endif // ENABLE_RESAMPLING
1231
1232    // If the sink has been shutdown or pipe recreation is forced (see above), delete the pipe so
1233    // that it's recreated.
1234    pthread_mutex_lock(&rsxadev->lock);
1235    if ((rsxadev->rsxSink != NULL && rsxadev->rsxSink->isShutdown()) || force_pipe_creation) {
1236        submix_audio_device_release_pipe(rsxadev);
1237    }
1238    pthread_mutex_unlock(&rsxadev->lock);
1239
1240    // Store a pointer to the device from the output stream.
1241    out->dev = rsxadev;
1242    // Initialize the pipe.
1243    ALOGV("adev_open_output_stream(): Initializing pipe");
1244    submix_audio_device_create_pipe(rsxadev, config, DEFAULT_PIPE_SIZE_IN_FRAMES,
1245                                    DEFAULT_PIPE_PERIOD_COUNT, NULL, out);
1246#if LOG_STREAMS_TO_FILES
1247    out->log_fd = open(LOG_STREAM_OUT_FILENAME, O_CREAT | O_TRUNC | O_WRONLY,
1248                       LOG_STREAM_FILE_PERMISSIONS);
1249    ALOGE_IF(out->log_fd < 0, "adev_open_output_stream(): log file open failed %s",
1250             strerror(errno));
1251    ALOGV("adev_open_output_stream(): log_fd = %d", out->log_fd);
1252#endif // LOG_STREAMS_TO_FILES
1253    // Return the output stream.
1254    *stream_out = &out->stream;
1255
1256    return 0;
1257}
1258
1259static void adev_close_output_stream(struct audio_hw_device *dev,
1260                                     struct audio_stream_out *stream)
1261{
1262    struct submix_stream_out * const out = audio_stream_out_get_submix_stream_out(stream);
1263    ALOGV("adev_close_output_stream()");
1264    submix_audio_device_destroy_pipe(audio_hw_device_get_submix_audio_device(dev), NULL, out);
1265#if LOG_STREAMS_TO_FILES
1266    if (out->log_fd >= 0) close(out->log_fd);
1267#endif // LOG_STREAMS_TO_FILES
1268    free(out);
1269}
1270
1271static int adev_set_parameters(struct audio_hw_device *dev, const char *kvpairs)
1272{
1273    (void)dev;
1274    (void)kvpairs;
1275    return -ENOSYS;
1276}
1277
1278static char * adev_get_parameters(const struct audio_hw_device *dev,
1279                                  const char *keys)
1280{
1281    (void)dev;
1282    (void)keys;
1283    return strdup("");;
1284}
1285
1286static int adev_init_check(const struct audio_hw_device *dev)
1287{
1288    ALOGI("adev_init_check()");
1289    (void)dev;
1290    return 0;
1291}
1292
1293static int adev_set_voice_volume(struct audio_hw_device *dev, float volume)
1294{
1295    (void)dev;
1296    (void)volume;
1297    return -ENOSYS;
1298}
1299
1300static int adev_set_master_volume(struct audio_hw_device *dev, float volume)
1301{
1302    (void)dev;
1303    (void)volume;
1304    return -ENOSYS;
1305}
1306
1307static int adev_get_master_volume(struct audio_hw_device *dev, float *volume)
1308{
1309    (void)dev;
1310    (void)volume;
1311    return -ENOSYS;
1312}
1313
1314static int adev_set_master_mute(struct audio_hw_device *dev, bool muted)
1315{
1316    (void)dev;
1317    (void)muted;
1318    return -ENOSYS;
1319}
1320
1321static int adev_get_master_mute(struct audio_hw_device *dev, bool *muted)
1322{
1323    (void)dev;
1324    (void)muted;
1325    return -ENOSYS;
1326}
1327
1328static int adev_set_mode(struct audio_hw_device *dev, audio_mode_t mode)
1329{
1330    (void)dev;
1331    (void)mode;
1332    return 0;
1333}
1334
1335static int adev_set_mic_mute(struct audio_hw_device *dev, bool state)
1336{
1337    (void)dev;
1338    (void)state;
1339    return -ENOSYS;
1340}
1341
1342static int adev_get_mic_mute(const struct audio_hw_device *dev, bool *state)
1343{
1344    (void)dev;
1345    (void)state;
1346    return -ENOSYS;
1347}
1348
1349static size_t adev_get_input_buffer_size(const struct audio_hw_device *dev,
1350                                         const struct audio_config *config)
1351{
1352    if (audio_is_linear_pcm(config->format)) {
1353        const size_t buffer_period_size_frames =
1354            audio_hw_device_get_submix_audio_device(const_cast<struct audio_hw_device*>(dev))->
1355                config.buffer_period_size_frames;
1356        const size_t frame_size_in_bytes = audio_channel_count_from_in_mask(config->channel_mask) *
1357                audio_bytes_per_sample(config->format);
1358        const size_t buffer_size = buffer_period_size_frames * frame_size_in_bytes;
1359        SUBMIX_ALOGV("adev_get_input_buffer_size() returns %zu bytes, %zu frames",
1360                 buffer_size, buffer_period_size_frames);
1361        return buffer_size;
1362    }
1363    return 0;
1364}
1365
1366static int adev_open_input_stream(struct audio_hw_device *dev,
1367                                  audio_io_handle_t handle,
1368                                  audio_devices_t devices,
1369                                  struct audio_config *config,
1370                                  struct audio_stream_in **stream_in)
1371{
1372    struct submix_audio_device *rsxadev = audio_hw_device_get_submix_audio_device(dev);
1373    struct submix_stream_in *in;
1374    ALOGI("adev_open_input_stream()");
1375    (void)handle;
1376    (void)devices;
1377
1378    *stream_in = NULL;
1379
1380    // Make sure it's possible to open the device given the current audio config.
1381    submix_sanitize_config(config, true);
1382    if (!submix_open_validate(rsxadev, &rsxadev->lock, config, true)) {
1383        ALOGE("adev_open_input_stream(): Unable to open input stream.");
1384        return -EINVAL;
1385    }
1386
1387#if ENABLE_LEGACY_INPUT_OPEN
1388    pthread_mutex_lock(&rsxadev->lock);
1389    in = rsxadev->input;
1390    if (in) {
1391        in->ref_count++;
1392        sp<MonoPipe> sink = rsxadev->rsxSink;
1393        ALOG_ASSERT(sink != NULL);
1394        // If the sink has been shutdown, delete the pipe.
1395        if (sink->isShutdown()) submix_audio_device_release_pipe(rsxadev);
1396    }
1397    pthread_mutex_unlock(&rsxadev->lock);
1398#else
1399    in = NULL;
1400#endif // ENABLE_LEGACY_INPUT_OPEN
1401
1402    if (!in) {
1403        in = (struct submix_stream_in *)calloc(1, sizeof(struct submix_stream_in));
1404        if (!in) return -ENOMEM;
1405        in->ref_count = 1;
1406
1407        // Initialize the function pointer tables (v-tables).
1408        in->stream.common.get_sample_rate = in_get_sample_rate;
1409        in->stream.common.set_sample_rate = in_set_sample_rate;
1410        in->stream.common.get_buffer_size = in_get_buffer_size;
1411        in->stream.common.get_channels = in_get_channels;
1412        in->stream.common.get_format = in_get_format;
1413        in->stream.common.set_format = in_set_format;
1414        in->stream.common.standby = in_standby;
1415        in->stream.common.dump = in_dump;
1416        in->stream.common.set_parameters = in_set_parameters;
1417        in->stream.common.get_parameters = in_get_parameters;
1418        in->stream.common.add_audio_effect = in_add_audio_effect;
1419        in->stream.common.remove_audio_effect = in_remove_audio_effect;
1420        in->stream.set_gain = in_set_gain;
1421        in->stream.read = in_read;
1422        in->stream.get_input_frames_lost = in_get_input_frames_lost;
1423    }
1424
1425    // Initialize the input stream.
1426    in->read_counter_frames = 0;
1427    in->output_standby = rsxadev->output_standby;
1428    in->dev = rsxadev;
1429    // Initialize the pipe.
1430    submix_audio_device_create_pipe(rsxadev, config, DEFAULT_PIPE_SIZE_IN_FRAMES,
1431                                    DEFAULT_PIPE_PERIOD_COUNT, in, NULL);
1432#if LOG_STREAMS_TO_FILES
1433    in->log_fd = open(LOG_STREAM_IN_FILENAME, O_CREAT | O_TRUNC | O_WRONLY,
1434                      LOG_STREAM_FILE_PERMISSIONS);
1435    ALOGE_IF(in->log_fd < 0, "adev_open_input_stream(): log file open failed %s",
1436             strerror(errno));
1437    ALOGV("adev_open_input_stream(): log_fd = %d", in->log_fd);
1438#endif // LOG_STREAMS_TO_FILES
1439    // Return the input stream.
1440    *stream_in = &in->stream;
1441
1442    return 0;
1443}
1444
1445static void adev_close_input_stream(struct audio_hw_device *dev,
1446                                    struct audio_stream_in *stream)
1447{
1448    struct submix_stream_in * const in = audio_stream_in_get_submix_stream_in(stream);
1449    ALOGV("adev_close_input_stream()");
1450    submix_audio_device_destroy_pipe(audio_hw_device_get_submix_audio_device(dev), in, NULL);
1451#if LOG_STREAMS_TO_FILES
1452    if (in->log_fd >= 0) close(in->log_fd);
1453#endif // LOG_STREAMS_TO_FILES
1454#if ENABLE_LEGACY_INPUT_OPEN
1455    if (in->ref_count == 0) free(in);
1456#else
1457    free(in);
1458#endif // ENABLE_LEGACY_INPUT_OPEN
1459}
1460
1461static int adev_dump(const audio_hw_device_t *device, int fd)
1462{
1463    (void)device;
1464    (void)fd;
1465    return 0;
1466}
1467
1468static int adev_close(hw_device_t *device)
1469{
1470    ALOGI("adev_close()");
1471    free(device);
1472    return 0;
1473}
1474
1475static int adev_open(const hw_module_t* module, const char* name,
1476                     hw_device_t** device)
1477{
1478    ALOGI("adev_open(name=%s)", name);
1479    struct submix_audio_device *rsxadev;
1480
1481    if (strcmp(name, AUDIO_HARDWARE_INTERFACE) != 0)
1482        return -EINVAL;
1483
1484    rsxadev = (submix_audio_device*) calloc(1, sizeof(struct submix_audio_device));
1485    if (!rsxadev)
1486        return -ENOMEM;
1487
1488    rsxadev->device.common.tag = HARDWARE_DEVICE_TAG;
1489    rsxadev->device.common.version = AUDIO_DEVICE_API_VERSION_2_0;
1490    rsxadev->device.common.module = (struct hw_module_t *) module;
1491    rsxadev->device.common.close = adev_close;
1492
1493    rsxadev->device.init_check = adev_init_check;
1494    rsxadev->device.set_voice_volume = adev_set_voice_volume;
1495    rsxadev->device.set_master_volume = adev_set_master_volume;
1496    rsxadev->device.get_master_volume = adev_get_master_volume;
1497    rsxadev->device.set_master_mute = adev_set_master_mute;
1498    rsxadev->device.get_master_mute = adev_get_master_mute;
1499    rsxadev->device.set_mode = adev_set_mode;
1500    rsxadev->device.set_mic_mute = adev_set_mic_mute;
1501    rsxadev->device.get_mic_mute = adev_get_mic_mute;
1502    rsxadev->device.set_parameters = adev_set_parameters;
1503    rsxadev->device.get_parameters = adev_get_parameters;
1504    rsxadev->device.get_input_buffer_size = adev_get_input_buffer_size;
1505    rsxadev->device.open_output_stream = adev_open_output_stream;
1506    rsxadev->device.close_output_stream = adev_close_output_stream;
1507    rsxadev->device.open_input_stream = adev_open_input_stream;
1508    rsxadev->device.close_input_stream = adev_close_input_stream;
1509    rsxadev->device.dump = adev_dump;
1510
1511    rsxadev->input_standby = true;
1512    rsxadev->output_standby = true;
1513
1514    *device = &rsxadev->device.common;
1515
1516    return 0;
1517}
1518
1519static struct hw_module_methods_t hal_module_methods = {
1520    /* open */ adev_open,
1521};
1522
1523struct audio_module HAL_MODULE_INFO_SYM = {
1524    /* common */ {
1525        /* tag */                HARDWARE_MODULE_TAG,
1526        /* module_api_version */ AUDIO_MODULE_API_VERSION_0_1,
1527        /* hal_api_version */    HARDWARE_HAL_API_VERSION,
1528        /* id */                 AUDIO_HARDWARE_MODULE_ID,
1529        /* name */               "Wifi Display audio HAL",
1530        /* author */             "The Android Open Source Project",
1531        /* methods */            &hal_module_methods,
1532        /* dso */                NULL,
1533        /* reserved */           { 0 },
1534    },
1535};
1536
1537} //namespace android
1538
1539} //extern "C"
1540