diff options
author | Edward Hervey <bilboed@bilboed.com> | 2007-03-28 15:17:27 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2007-03-28 15:17:27 +0000 |
commit | 365437cbc0a210a71756528331c5b3b6fd667813 (patch) | |
tree | 5a3d79e0c4bd47a4fca4379bbd8730ba7e9544d6 /gst/qtdemux/qtdemux_dump.h | |
parent | 51ef42dd966c7574daf56034902054390727db49 (diff) | |
download | gst-plugins-bad-365437cbc0a210a71756528331c5b3b6fd667813.tar.gz gst-plugins-bad-365437cbc0a210a71756528331c5b3b6fd667813.tar.bz2 gst-plugins-bad-365437cbc0a210a71756528331c5b3b6fd667813.zip |
gst/qtdemux/: Process 'ctts' atoms, which are present in AVC ISO files (.mov files with h264 video).
Original commit message from CVS:
* gst/qtdemux/qtdemux.c: (gst_qtdemux_prepare_current_sample),
(gst_qtdemux_chain), (qtdemux_parse_samples):
* gst/qtdemux/qtdemux_dump.c: (qtdemux_dump_ctts):
* gst/qtdemux/qtdemux_dump.h:
* gst/qtdemux/qtdemux_fourcc.h:
* gst/qtdemux/qtdemux_types.c:
Process 'ctts' atoms, which are present in AVC ISO files (.mov files
with h264 video).
Use the offset present in 'ctts' to calculate the PTS for each packet
and set the PTS on outgoing buffers.
Fixes #423283
Diffstat (limited to 'gst/qtdemux/qtdemux_dump.h')
-rw-r--r-- | gst/qtdemux/qtdemux_dump.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux_dump.h b/gst/qtdemux/qtdemux_dump.h index ce26acc3..adfbeae4 100644 --- a/gst/qtdemux/qtdemux_dump.h +++ b/gst/qtdemux/qtdemux_dump.h @@ -41,6 +41,7 @@ void qtdemux_dump_stco (GstQTDemux * qtdemux, guint8 * buffer, int depth); void qtdemux_dump_co64 (GstQTDemux * qtdemux, guint8 * buffer, int depth); void qtdemux_dump_dcom (GstQTDemux * qtdemux, guint8 * buffer, int depth); void qtdemux_dump_cmvd (GstQTDemux * qtdemux, guint8 * buffer, int depth); +void qtdemux_dump_ctts (GstQTDemux * qtdemux, guint8 * buffer, int depth); void qtdemux_dump_unknown (GstQTDemux * qtdemux, guint8 * buffer, int depth); void qtdemux_node_dump (GstQTDemux * qtdemux, GNode * node); |