X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=plugins%2Faudio%2Faudio-pulse.h;h=027cc6f9a626acdd117a6f98c0ae83629e1b8ebf;hb=3d28e7d00cd8641bf600d47ed0e3e7e57cb5b439;hp=fc18d9c0220389f8b5fa4b01c879e665ba42e35d;hpb=f16675ed24fd331903b8d6ef5d8ac07f6acbd6b0;p=src%2Fapp-framework-binder.git diff --git a/plugins/audio/audio-pulse.h b/plugins/audio/audio-pulse.h index fc18d9c0..027cc6f9 100644 --- a/plugins/audio/audio-pulse.h +++ b/plugins/audio/audio-pulse.h @@ -2,18 +2,17 @@ * Copyright (C) 2016 "IoT.bzh" * Author "Manuel Bachmann" * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at * - * This program 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 - * GNU General Public License for more details. + * http://www.apache.org/licenses/LICENSE-2.0 * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. */ #ifndef AUDIO_PULSE_H @@ -49,6 +48,16 @@ struct alsa_info { char *synonyms; }; +PUBLIC unsigned char _pulse_init (const char *, audioCtxHandleT *); +PUBLIC void _pulse_free (audioCtxHandleT *); +PUBLIC void _pulse_play (audioCtxHandleT *); +PUBLIC void _pulse_stop (audioCtxHandleT *); +PUBLIC unsigned int _pulse_get_volume (audioCtxHandleT *, unsigned int); +PUBLIC void _pulse_set_volume (audioCtxHandleT *, unsigned int, unsigned int); +PUBLIC void _pulse_set_volume_all (audioCtxHandleT *, unsigned int); +PUBLIC unsigned char _pulse_get_mute (audioCtxHandleT *); +PUBLIC void _pulse_set_mute (audioCtxHandleT *, unsigned char); + STATIC void _pulse_context_cb (pa_context *, void *); STATIC void _pulse_sink_list_cb (pa_context *, const pa_sink_info *, int, void *); STATIC void _pulse_sink_info_cb (pa_context *, const pa_sink_info *, int, void *);