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