diff options
author | David Schleef <ds@schleef.org> | 2003-06-16 17:39:26 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-06-16 17:39:26 +0000 |
commit | bea8637738b4b608d61f624465ca155522fe583d (patch) | |
tree | 0c0d3801331c4d2e59d4c8c1faafaccafbedc52e /gst/qtdemux/qtdemux.h | |
parent | 4a65aa251d81e2bb41a7d960b7adb66301459055 (diff) | |
download | gst-plugins-bad-bea8637738b4b608d61f624465ca155522fe583d.tar.gz gst-plugins-bad-bea8637738b4b608d61f624465ca155522fe583d.tar.bz2 gst-plugins-bad-bea8637738b4b608d61f624465ca155522fe583d.zip |
Handle compressed headers. Fix inappropriate use of bytestream_flush().
Original commit message from CVS:
Handle compressed headers. Fix inappropriate use of bytestream_flush().
Code cleanup. Added getcaps and _link functions for src pads. Extract
and set the size,rate,channels correctly. Fix some of the caps to
agree with avidemux and/or ffmpeg.
Diffstat (limited to 'gst/qtdemux/qtdemux.h')
-rw-r--r-- | gst/qtdemux/qtdemux.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst/qtdemux/qtdemux.h b/gst/qtdemux/qtdemux.h index 53af27b7..108faab1 100644 --- a/gst/qtdemux/qtdemux.h +++ b/gst/qtdemux/qtdemux.h @@ -60,12 +60,15 @@ struct _GstQTDemux { GstByteStream *bs; GNode *moov_node; + GNode *moov_node_compressed; guint32 timescale; guint32 duration; int state; + int offset; + /* track stuff */ }; |