• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* GStreamer
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) <2007> Julien Moutte <julien@fluendo.com>
6  * Copyright (C) <2009> Tim-Philipp Müller <tim centricular net>
7  * Copyright (C) <2009> STEricsson <benjamin.gaignard@stericsson.com>
8  * Copyright (C) <2013> Sreerenj Balachandran <sreerenj.balachandran@intel.com>
9  * Copyright (C) <2013> Intel Corporation
10  * Copyright (C) <2014> Centricular Ltd
11  * Copyright (C) <2015> YouView TV Ltd.
12  * Copyright (C) <2016> British Broadcasting Corporation
13  *
14  * This library is free software; you can redistribute it and/or
15  * modify it under the terms of the GNU Library General Public
16  * License as published by the Free Software Foundation; either
17  * version 2 of the License, or (at your option) any later version.
18  *
19  * This library is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22  * Library General Public License for more details.
23  *
24  * You should have received a copy of the GNU Library General Public
25  * License along with this library; if not, write to the
26  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
27  * Boston, MA 02110-1301, USA.
28  */
29 #include <gst/gst.h>
30 #include <gst/base/gstbytereader.h>
31 
32 #ifndef __QTDEMUX_TREE_H__
33 #define __QTDEMUX_TREE_H__
34 
35 G_BEGIN_DECLS
36 
37 GNode *qtdemux_tree_get_child_by_type (GNode * node, guint32 fourcc);
38 GNode *qtdemux_tree_get_child_by_type_full (GNode * node,
39     guint32 fourcc, GstByteReader * parser);
40 GNode *qtdemux_tree_get_sibling_by_type (GNode * node, guint32 fourcc);
41 GNode *qtdemux_tree_get_sibling_by_type_full (GNode * node,
42     guint32 fourcc, GstByteReader * parser);
43 GNode *qtdemux_tree_get_child_by_index (GNode * node, guint index);
44 
45 G_END_DECLS
46 
47 #endif
48