blob: 116a5790632341e170e0c43387b4c207e1bdea17 [file] [log] [blame]
Phil Burk0433d8f2018-11-21 16:41:25 -08001/*
2 * Copyright 2018 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
Phil Burk0817a2b2019-01-03 14:50:18 -080017#ifndef FLOWGRAPH_SINK_I24_H
18#define FLOWGRAPH_SINK_I24_H
Phil Burk0433d8f2018-11-21 16:41:25 -080019
20#include <unistd.h>
21#include <sys/types.h>
22
Phil Burk328860f2019-11-04 18:43:40 -080023#include "FlowGraphNode.h"
Phil Burk0433d8f2018-11-21 16:41:25 -080024
Phil Burk9425ffd2020-07-09 13:21:09 -070025namespace FLOWGRAPH_OUTER_NAMESPACE {
Phil Burk0817a2b2019-01-03 14:50:18 -080026namespace flowgraph {
27
Phil Burk78e74132019-03-01 10:08:25 -080028/**
29 * AudioSink that lets you read data as packed 24-bit signed integers.
30 * The sample size is 3 bytes.
31 */
Phil Burk328860f2019-11-04 18:43:40 -080032class SinkI24 : public FlowGraphSink {
Phil Burk0433d8f2018-11-21 16:41:25 -080033public:
Phil Burk0817a2b2019-01-03 14:50:18 -080034 explicit SinkI24(int32_t channelCount);
Phil Burk0433d8f2018-11-21 16:41:25 -080035
Phil Burk226f4d42020-07-01 11:35:32 -070036 int32_t read(void *data, int32_t numFrames) override;
Phil Burkf67a97f2019-05-30 12:48:17 -070037
38 const char *getName() override {
39 return "SinkI24";
40 }
Phil Burk0433d8f2018-11-21 16:41:25 -080041};
42
Phil Burk0817a2b2019-01-03 14:50:18 -080043} /* namespace flowgraph */
Phil Burk2c8f2812020-07-13 10:55:04 -070044} /* namespace FLOWGRAPH_OUTER_NAMESPACE */
Phil Burk0817a2b2019-01-03 14:50:18 -080045
46#endif //FLOWGRAPH_SINK_I24_H