2013-07-13 07:48:10 +00:00
|
|
|
/*
|
|
|
|
* This file is part of mpv.
|
|
|
|
* Copyright (c) 2013 Stefano Pigozzi <stefano.pigozzi@gmail.com>
|
|
|
|
*
|
2017-05-08 11:57:40 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2013-07-13 07:48:10 +00:00
|
|
|
*
|
|
|
|
* mpv is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-05-08 11:57:40 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2013-07-13 07:48:10 +00:00
|
|
|
*
|
2017-05-08 11:57:40 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2013-07-13 07:48:10 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MPV_COREAUDIO_PROPERTIES_H
|
|
|
|
#define MPV_COREAUDIO_PROPERTIES_H
|
|
|
|
|
|
|
|
#include <AudioToolbox/AudioToolbox.h>
|
|
|
|
|
2014-03-07 14:24:32 +00:00
|
|
|
#include "internal.h"
|
|
|
|
|
2013-07-13 11:01:50 +00:00
|
|
|
// CoreAudio names are way too verbose
|
|
|
|
#define ca_sel AudioObjectPropertySelector
|
|
|
|
#define ca_scope AudioObjectPropertyScope
|
|
|
|
#define CA_GLOBAL kAudioObjectPropertyScopeGlobal
|
2013-07-28 04:40:08 +00:00
|
|
|
#define CA_OUTPUT kAudioDevicePropertyScopeOutput
|
2013-07-13 11:01:50 +00:00
|
|
|
|
|
|
|
OSStatus ca_get(AudioObjectID id, ca_scope scope, ca_sel selector,
|
|
|
|
uint32_t size, void *data);
|
|
|
|
|
|
|
|
OSStatus ca_set(AudioObjectID id, ca_scope scope, ca_sel selector,
|
2013-07-13 07:48:10 +00:00
|
|
|
uint32_t size, void *data);
|
|
|
|
|
2013-07-13 11:01:50 +00:00
|
|
|
#define CA_GET(id, sel, data) ca_get(id, CA_GLOBAL, sel, sizeof(*(data)), data)
|
|
|
|
#define CA_SET(id, sel, data) ca_set(id, CA_GLOBAL, sel, sizeof(*(data)), data)
|
2014-07-03 17:05:22 +00:00
|
|
|
#define CA_GET_O(id, sel, data) ca_get(id, CA_OUTPUT, sel, sizeof(*(data)), data)
|
2013-07-13 11:01:50 +00:00
|
|
|
|
|
|
|
OSStatus ca_get_ary(AudioObjectID id, ca_scope scope, ca_sel selector,
|
|
|
|
uint32_t element_size, void **data, size_t *elements);
|
|
|
|
|
|
|
|
#define CA_GET_ARY(id, sel, data, elements) \
|
|
|
|
ca_get_ary(id, CA_GLOBAL, sel, sizeof(**(data)), (void **)data, elements)
|
2013-07-13 07:48:10 +00:00
|
|
|
|
2013-07-13 11:01:50 +00:00
|
|
|
#define CA_GET_ARY_O(id, sel, data, elements) \
|
|
|
|
ca_get_ary(id, CA_OUTPUT, sel, sizeof(**(data)), (void **)data, elements)
|
2013-07-13 07:48:10 +00:00
|
|
|
|
2013-07-13 11:01:50 +00:00
|
|
|
OSStatus ca_get_str(AudioObjectID id, ca_scope scope,ca_sel selector,
|
|
|
|
char **data);
|
2013-07-13 07:48:10 +00:00
|
|
|
|
2013-07-13 11:01:50 +00:00
|
|
|
#define CA_GET_STR(id, sel, data) ca_get_str(id, CA_GLOBAL, sel, data)
|
2013-07-13 07:48:10 +00:00
|
|
|
|
2013-07-13 11:01:50 +00:00
|
|
|
Boolean ca_settable(AudioObjectID id, ca_scope scope, ca_sel selector,
|
|
|
|
Boolean *data);
|
2013-07-13 07:48:10 +00:00
|
|
|
|
2013-07-13 11:01:50 +00:00
|
|
|
#define CA_SETTABLE(id, sel, data) ca_settable(id, CA_GLOBAL, sel, data)
|
2013-07-13 07:48:10 +00:00
|
|
|
|
|
|
|
#endif /* MPV_COREAUDIO_PROPERTIES_H */
|