5f34b500bf18719db2679a27c7db955bc6e68714
[framework/multimedia/gst-plugins-ext0.10.git] / piffdemux / src / piffdemux_dump.h
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2009> STEricsson <benjamin.gaignard@stericsson.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 details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __GST_PIFFDEMUX_DUMP_H__
22 #define __GST_PIFFDEMUX_DUMP_H__
23
24 #include <gst/gst.h>
25 #include <piffdemux.h>
26
27 G_BEGIN_DECLS
28
29 gboolean piffdemux_dump_vmhd (GstPiffDemux * piffdemux, GstByteReader * data,
30     int depth);
31 gboolean piffdemux_dump_mfro (GstPiffDemux * piffdemux, GstByteReader * data,
32     int depth);
33 gboolean piffdemux_dump_tfra (GstPiffDemux * piffdemux, GstByteReader * data,
34     int depth);
35 gboolean piffdemux_dump_tfhd (GstPiffDemux * piffdemux, GstByteReader * data,
36     int depth);
37 gboolean piffdemux_dump_trun (GstPiffDemux * piffdemux, GstByteReader * data,
38     int depth);
39 gboolean piffdemux_dump_trex (GstPiffDemux * piffdemux, GstByteReader * data,
40     int depth);
41 gboolean piffdemux_dump_sdtp (GstPiffDemux * piffdemux, GstByteReader * data,
42     int depth);
43 gboolean piffdemux_dump_unknown (GstPiffDemux * piffdemux, GstByteReader * data,
44     int depth);
45
46 gboolean piffdemux_node_dump (GstPiffDemux * piffdemux, GNode * node);
47
48 G_END_DECLS
49 #endif /* __GST_PIFFDEMUX_DUMP_H__ */