• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2003> David A. Schleef <ds@schleef.org>
4  * Copyright (C) <2006> Wim Taymans <wim@fluendo.com>
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_ISOMP4_ELEMENTS_H__
24 #define __GST_ISOMP4_ELEMENTS_H__
25 
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29 
30 #include <gst/gst.h>
31 
32 G_BEGIN_DECLS
33 
34 void isomp4_element_init (GstPlugin * plugin);
35 
36 GST_ELEMENT_REGISTER_DECLARE (qtdemux);
37 GST_ELEMENT_REGISTER_DECLARE (rtpxqtdepay);
38 GST_ELEMENT_REGISTER_DECLARE (qtmux);
39 GST_ELEMENT_REGISTER_DECLARE (qtmoovrecover);
40 
41 G_END_DECLS
42 
43 #endif /* __GST_ISOMP4_ELEMENTS_H__ */
44