blob: e65ffae59cf6b4b55c46c66561bff100d5a364ec [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_I16_H
18#define FLOWGRAPH_SINK_I16_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 16-bit signed integers.
30 */
Phil Burk328860f2019-11-04 18:43:40 -080031class SinkI16 : public FlowGraphSink {
Phil Burk0433d8f2018-11-21 16:41:25 -080032public:
Phil Burk0817a2b2019-01-03 14:50:18 -080033 explicit SinkI16(int32_t channelCount);
Phil Burk0433d8f2018-11-21 16:41:25 -080034
Phil Burk226f4d42020-07-01 11:35:32 -070035 int32_t read(void *data, int32_t numFrames) override;
Phil Burkf67a97f2019-05-30 12:48:17 -070036
37 const char *getName() override {
38 return "SinkI16";
39 }
Phil Burk0433d8f2018-11-21 16:41:25 -080040};
41
Phil Burk0817a2b2019-01-03 14:50:18 -080042} /* namespace flowgraph */
Phil Burk2c8f2812020-07-13 10:55:04 -070043} /* namespace FLOWGRAPH_OUTER_NAMESPACE */
Phil Burk0817a2b2019-01-03 14:50:18 -080044
45#endif //FLOWGRAPH_SINK_I16_H