• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *  GStreamer pulseaudio plugin
3  *
4  *  Copyright (c) 2004-2008 Lennart Poettering
5  * Copyright (C) 2020 Huawei Technologies Co., Ltd.
6  *   @Author: Julian Bouzas <julian.bouzas@collabora.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the Free
20  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
21  */
22 
23 #ifndef __GST_PULSE_ELEMENTS_H__
24 #define __GST_PULSE_ELEMENTS_H__
25 
26 #include <gst/gst.h>
27 
28 G_BEGIN_DECLS
29 
30 void pulse_element_init (GstPlugin * plugin);
31 
32 GST_ELEMENT_REGISTER_DECLARE (pulsesink);
33 GST_ELEMENT_REGISTER_DECLARE (pulsesrc);
34 
35 GST_DEVICE_PROVIDER_REGISTER_DECLARE (pulsedeviceprovider);
36 
37 G_END_DECLS
38 
39 #endif /* __GST_PULSE_ELEMENTS_H__ */
40