blob: 1640575c95af04aa2e96811202250b969f904702 [file] [log] [blame]
Phil Burk062e67a2015-02-11 13:40:50 -08001/*
2**
3** Copyright 2015, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
18#ifndef ANDROID_SPDIF_STREAM_OUT_H
19#define ANDROID_SPDIF_STREAM_OUT_H
20
21#include <stdint.h>
22#include <sys/types.h>
23
24#include <system/audio.h>
25
Phil Burk062e67a2015-02-11 13:40:50 -080026#include "AudioStreamOut.h"
Phil Burk062e67a2015-02-11 13:40:50 -080027
Dean Wheatleyace1eeb2023-11-06 21:58:14 +110028#include <afutils/NBAIO_Tee.h>
Phil Burk062e67a2015-02-11 13:40:50 -080029#include <audio_utils/spdif/SPDIFEncoder.h>
30
31namespace android {
32
33/**
34 * Stream that is a PCM data burst in the HAL but looks like an encoded stream
35 * to the AudioFlinger. Wraps encoded data in an SPDIF wrapper per IEC61973-3.
36 */
37class SpdifStreamOut : public AudioStreamOut {
38public:
39
Phil Burk23d89972015-04-06 16:22:23 -070040 SpdifStreamOut(AudioHwDevice *dev, audio_output_flags_t flags,
41 audio_format_t format);
Phil Burk062e67a2015-02-11 13:40:50 -080042
Andy Hung1ef77382023-06-15 14:50:18 -070043 ~SpdifStreamOut() override = default;
Phil Burk062e67a2015-02-11 13:40:50 -080044
Andy Hung1ef77382023-06-15 14:50:18 -070045 status_t open(
Phil Burk062e67a2015-02-11 13:40:50 -080046 audio_io_handle_t handle,
47 audio_devices_t devices,
48 struct audio_config *config,
Andy Hung1ef77382023-06-15 14:50:18 -070049 const char *address) override;
Phil Burk062e67a2015-02-11 13:40:50 -080050
Phil Burk062e67a2015-02-11 13:40:50 -080051 /**
52 * Write audio buffer to driver. Returns number of bytes written, or a
53 * negative status_t. If at least one frame was written successfully prior to the error,
54 * it is suggested that the driver return that successful (short) byte count
55 * and then return an error in the subsequent call.
56 *
57 * If set_callback() has previously been called to enable non-blocking mode
58 * the write() is not allowed to block. It must write only the number of
59 * bytes that currently fit in the driver/hardware buffer and then return
60 * this byte count. If this is less than the requested write size the
61 * callback function must be called when more space is available in the
62 * driver/hardware buffer.
63 */
Andy Hung1ef77382023-06-15 14:50:18 -070064 ssize_t write(const void* buffer, size_t bytes) override;
Phil Burk062e67a2015-02-11 13:40:50 -080065
Phil Burkca5e6142015-07-14 09:42:29 -070066 /**
67 * @return frame size from the perspective of the application and the AudioFlinger.
68 */
Andy Hung1ef77382023-06-15 14:50:18 -070069 [[nodiscard]] size_t getFrameSize() const override { return sizeof(int8_t); }
Phil Burkca5e6142015-07-14 09:42:29 -070070
71 /**
72 * @return format from the perspective of the application and the AudioFlinger.
73 */
Andy Hung1ef77382023-06-15 14:50:18 -070074 [[nodiscard]] virtual audio_format_t getFormat() const { return mApplicationFormat; }
Phil Burkca5e6142015-07-14 09:42:29 -070075
76 /**
77 * The HAL may be running at a higher sample rate if, for example, playing wrapped EAC3.
78 * @return sample rate from the perspective of the application and the AudioFlinger.
79 */
Andy Hung1ef77382023-06-15 14:50:18 -070080 [[nodiscard]] virtual uint32_t getSampleRate() const { return mApplicationSampleRate; }
Phil Burkca5e6142015-07-14 09:42:29 -070081
82 /**
83 * The HAL is in stereo mode when playing multi-channel compressed audio over HDMI.
84 * @return channel mask from the perspective of the application and the AudioFlinger.
85 */
Andy Hung1ef77382023-06-15 14:50:18 -070086 [[nodiscard]] virtual audio_channel_mask_t getChannelMask() const {
87 return mApplicationChannelMask;
88 }
Phil Burk062e67a2015-02-11 13:40:50 -080089
Andy Hung1ef77382023-06-15 14:50:18 -070090 status_t flush() override;
91 status_t standby() override;
Phil Burk062e67a2015-02-11 13:40:50 -080092
93private:
94
95 class MySPDIFEncoder : public SPDIFEncoder
96 {
97 public:
Phil Burk23d89972015-04-06 16:22:23 -070098 MySPDIFEncoder(SpdifStreamOut *spdifStreamOut, audio_format_t format)
99 : SPDIFEncoder(format)
100 , mSpdifStreamOut(spdifStreamOut)
Phil Burk062e67a2015-02-11 13:40:50 -0800101 {
102 }
103
Andy Hung1ef77382023-06-15 14:50:18 -0700104 ssize_t writeOutput(const void* buffer, size_t bytes) override
Phil Burk062e67a2015-02-11 13:40:50 -0800105 {
106 return mSpdifStreamOut->writeDataBurst(buffer, bytes);
107 }
108 protected:
109 SpdifStreamOut * const mSpdifStreamOut;
110 };
111
Phil Burk062e67a2015-02-11 13:40:50 -0800112 MySPDIFEncoder mSpdifEncoder;
Andy Hung1ef77382023-06-15 14:50:18 -0700113 audio_format_t mApplicationFormat = AUDIO_FORMAT_DEFAULT;
114 uint32_t mApplicationSampleRate = 0;
115 audio_channel_mask_t mApplicationChannelMask = AUDIO_CHANNEL_NONE;
Phil Burk062e67a2015-02-11 13:40:50 -0800116
Phil Burk062e67a2015-02-11 13:40:50 -0800117 ssize_t writeDataBurst(const void* data, size_t bytes);
118 ssize_t writeInternal(const void* buffer, size_t bytes);
119
Dean Wheatleyace1eeb2023-11-06 21:58:14 +1100120#ifdef TEE_SINK
121 NBAIO_Tee mTee;
122#endif
123
Phil Burk062e67a2015-02-11 13:40:50 -0800124};
125
126} // namespace android
127
128#endif // ANDROID_SPDIF_STREAM_OUT_H