gst_plugins_good/gst/qtdemux/qtdemux_dump.h
changeset 27 d43ce56a1534
parent 23 29ecd5cb86b3
child 31 aec498aab1d3
equal deleted inserted replaced
23:29ecd5cb86b3 27:d43ce56a1534
     1 /* GStreamer
       
     2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
       
     3  *
       
     4  * This library is free software; you can redistribute it and/or
       
     5  * modify it under the terms of the GNU Library General Public
       
     6  * License as published by the Free Software Foundation; either
       
     7  * version 2 of the License, or (at your option) any later version.
       
     8  *
       
     9  * This library is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
       
    12  * Library General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU Library General Public
       
    15  * License along with this library; if not, write to the
       
    16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
       
    17  * Boston, MA 02111-1307, USA.
       
    18  */
       
    19 
       
    20 #ifndef __GST_QTDEMUX_DUMP_H__
       
    21 #define __GST_QTDEMUX_DUMP_H__
       
    22 
       
    23 #include <gst/gst.h>
       
    24 #include <qtdemux.h>
       
    25 
       
    26 G_BEGIN_DECLS
       
    27 
       
    28 void qtdemux_dump_mvhd (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    29 void qtdemux_dump_tkhd (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    30 void qtdemux_dump_elst (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    31 void qtdemux_dump_mdhd (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    32 void qtdemux_dump_hdlr (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    33 void qtdemux_dump_vmhd (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    34 void qtdemux_dump_dref (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    35 void qtdemux_dump_stsd (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    36 void qtdemux_dump_stts (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    37 void qtdemux_dump_stss (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    38 void qtdemux_dump_stps (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    39 void qtdemux_dump_stsc (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    40 void qtdemux_dump_stsz (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    41 void qtdemux_dump_stco (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    42 void qtdemux_dump_co64 (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    43 void qtdemux_dump_dcom (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    44 void qtdemux_dump_cmvd (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    45 void qtdemux_dump_ctts (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    46 void qtdemux_dump_unknown (GstQTDemux * qtdemux, guint8 * buffer, int depth);
       
    47 
       
    48 void qtdemux_node_dump (GstQTDemux * qtdemux, GNode * node);
       
    49 
       
    50 G_END_DECLS
       
    51 
       
    52 #endif /* __GST_QTDEMUX_DUMP_H__ */