• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GStreamer
2  * Copyright (C) <2018> Havard Graff <havard.graff@gmail.com>
3  * Copyright (C) <2020-2021> Guillaume Desmottes <guillaume.desmottes@collabora.com>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more
14  */
15 
16 #ifndef __GST_RTPHDREXT_CLIENT_AUDIO_LEVEL_H__
17 #define __GST_RTPHDREXT_CLIENT_AUDIO_LEVEL_H__
18 
19 #include <gst/gst.h>
20 #include <gst/rtp/gstrtphdrext.h>
21 
22 G_BEGIN_DECLS
23 
24 #define GST_TYPE_RTP_HEADER_EXTENSION_CLIENT_AUDIO_LEVEL (gst_rtp_header_extension_client_audio_level_get_type())
25 
26 G_DECLARE_FINAL_TYPE (GstRTPHeaderExtensionClientAudioLevel, gst_rtp_header_extension_client_audio_level, GST, RTP_HEADER_EXTENSION_CLIENT_AUDIO_LEVEL, GstRTPHeaderExtension)
27 
28 GST_ELEMENT_REGISTER_DECLARE (rtphdrextclientaudiolevel);
29 
30 G_END_DECLS
31 
32 #endif /* __GST_RTPHDREXT_CLIENT_AUDIO_LEVEL_H__ */
33