• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GStreamer
2  * Copyright (C) 2020 Collabora Ltd.
3  *  Author: Guillaume Desmottes <guillaume.desmottes@collabora.com>, Collabora Ltd.
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 
17 #ifndef __GST_RTP_ISAC_DEPAY_H__
18 #define __GST_RTP_ISAC_DEPAY_H__
19 
20 #include <gst/gst.h>
21 #include <gst/rtp/gstrtpbasedepayload.h>
22 
23 G_BEGIN_DECLS
24 
25 #define GST_TYPE_RTP_ISAC_DEPAY gst_rtp_isac_depay_get_type ()
26 
27 G_DECLARE_FINAL_TYPE (GstRtpIsacDepay, gst_rtp_isac_depay, GST, RTP_ISAC_DEPAY,
28     GstRTPBaseDepayload);
29 
30 G_END_DECLS
31 #endif /* __GST_RTP_ISAC_DEPAY_H__ */
32