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., 51 Franklin St, Fifth Floor, 18 * Boston, MA 02110-1301, USA. 19 */ 20 21 #ifndef __GST_QTDEMUX_DUMP_H__ 22 #define __GST_QTDEMUX_DUMP_H__ 23 24 #include <gst/gst.h> 25 #include <qtdemux.h> 26 27 G_BEGIN_DECLS 28 gboolean qtdemux_dump_mvhd (GstQTDemux * qtdemux, GstByteReader * data, 29 int depth); 30 gboolean qtdemux_dump_tkhd (GstQTDemux * qtdemux, GstByteReader * data, 31 int depth); 32 gboolean qtdemux_dump_elst (GstQTDemux * qtdemux, GstByteReader * data, 33 int depth); 34 gboolean qtdemux_dump_mdhd (GstQTDemux * qtdemux, GstByteReader * data, 35 int depth); 36 gboolean qtdemux_dump_hdlr (GstQTDemux * qtdemux, GstByteReader * data, 37 int depth); 38 gboolean qtdemux_dump_vmhd (GstQTDemux * qtdemux, GstByteReader * data, 39 int depth); 40 gboolean qtdemux_dump_dref (GstQTDemux * qtdemux, GstByteReader * data, 41 int depth); 42 gboolean qtdemux_dump_stsd (GstQTDemux * qtdemux, GstByteReader * data, 43 int depth); 44 gboolean qtdemux_dump_stts (GstQTDemux * qtdemux, GstByteReader * data, 45 int depth); 46 gboolean qtdemux_dump_stss (GstQTDemux * qtdemux, GstByteReader * data, 47 int depth); 48 gboolean qtdemux_dump_stps (GstQTDemux * qtdemux, GstByteReader * data, 49 int depth); 50 gboolean qtdemux_dump_stsc (GstQTDemux * qtdemux, GstByteReader * data, 51 int depth); 52 gboolean qtdemux_dump_stsz (GstQTDemux * qtdemux, GstByteReader * data, 53 int depth); 54 gboolean qtdemux_dump_stco (GstQTDemux * qtdemux, GstByteReader * data, 55 int depth); 56 gboolean qtdemux_dump_co64 (GstQTDemux * qtdemux, GstByteReader * data, 57 int depth); 58 gboolean qtdemux_dump_dcom (GstQTDemux * qtdemux, GstByteReader * data, 59 int depth); 60 gboolean qtdemux_dump_cmvd (GstQTDemux * qtdemux, GstByteReader * data, 61 int depth); 62 gboolean qtdemux_dump_ctts (GstQTDemux * qtdemux, GstByteReader * data, 63 int depth); 64 gboolean qtdemux_dump_cslg (GstQTDemux * qtdemux, GstByteReader * data, 65 int depth); 66 gboolean qtdemux_dump_mfro (GstQTDemux * qtdemux, GstByteReader * data, 67 int depth); 68 gboolean qtdemux_dump_mfhd (GstQTDemux * qtdemux, GstByteReader * data, 69 int depth); 70 gboolean qtdemux_dump_tfra (GstQTDemux * qtdemux, GstByteReader * data, 71 int depth); 72 gboolean qtdemux_dump_tfhd (GstQTDemux * qtdemux, GstByteReader * data, 73 int depth); 74 gboolean qtdemux_dump_trun (GstQTDemux * qtdemux, GstByteReader * data, 75 int depth); 76 gboolean qtdemux_dump_trex (GstQTDemux * qtdemux, GstByteReader * data, 77 int depth); 78 gboolean qtdemux_dump_mehd (GstQTDemux * qtdemux, GstByteReader * data, 79 int depth); 80 gboolean qtdemux_dump_sdtp (GstQTDemux * qtdemux, GstByteReader * data, 81 int depth); 82 gboolean qtdemux_dump_tfdt (GstQTDemux * qtdemux, GstByteReader * data, 83 int depth); 84 gboolean qtdemux_dump_unknown (GstQTDemux * qtdemux, GstByteReader * data, 85 int depth); 86 gboolean qtdemux_dump_svmi (GstQTDemux *qtdemux, GstByteReader *data, 87 int depth); 88 gboolean qtdemux_dump_dfLa (GstQTDemux * qtdemux, GstByteReader * data, 89 int depth); 90 gboolean qtdemux_dump_fLaC (GstQTDemux * qtdemux, GstByteReader * data, 91 int depth); 92 gboolean qtdemux_dump_gmin (GstQTDemux * qtdemux, GstByteReader * data, 93 int depth); 94 95 gboolean qtdemux_node_dump (GstQTDemux * qtdemux, GNode * node); 96 97 G_END_DECLS 98 #endif /* __GST_QTDEMUX_DUMP_H__ */ 99