blob: 2fa11600a9518213a66f2d3da2d435c4a49ab3b5 [file] [log] [blame]
Wei Wangf7ca6c92017-11-21 14:51:20 -08001/*
2 * Copyright (C) 2017 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#ifndef __QAUDIOPERF_H__
18#define __QAUDIOPERF_H__
19
Wei Wangd6843432020-02-03 12:09:08 -080020#include <stdbool.h>
21
Wei Wangf7ca6c92017-11-21 14:51:20 -080022#ifdef __cplusplus
23extern "C" {
24#endif
25
Wei Wangd6843432020-02-03 12:09:08 -080026// return true on success, false on failure
27bool audio_streaming_hint_start();
28bool audio_streaming_hint_end();
29bool audio_low_latency_hint_start();
30bool audio_low_latency_hint_end();
Wei Wangf7ca6c92017-11-21 14:51:20 -080031
32#ifdef __cplusplus
33}
34#endif
35
vivek mehtad15d2bf2019-05-17 13:35:10 -070036#endif //__QAUDIOPERF_H__