summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_elem.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-09-10 03:04:48 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-09-10 03:04:48 +0000
commit6fdc5685796399e9ddea30b7dcffc607bd4c10b3 (patch)
tree4b180a7aa74abbc6b6d8be29520fa27ef0cb848c /src/demuxers/demux_elem.c
parent148419cfcd693508fc7a23158b393070a32f97d0 (diff)
downloadxine-lib-6fdc5685796399e9ddea30b7dcffc607bd4c10b3.tar.gz
xine-lib-6fdc5685796399e9ddea30b7dcffc607bd4c10b3.tar.bz2
a quicktime demuxer based on openquicktime, cinepack support fixed, minor bugfixes regarding buffer type handling
CVS patchset: 600 CVS date: 2001/09/10 03:04:48
Diffstat (limited to 'src/demuxers/demux_elem.c')
-rw-r--r--src/demuxers/demux_elem.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/demuxers/demux_elem.c b/src/demuxers/demux_elem.c
index 8bfad002c..41e02acbd 100644
--- a/src/demuxers/demux_elem.c
+++ b/src/demuxers/demux_elem.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: demux_elem.c,v 1.18 2001/09/04 16:19:27 guenter Exp $
+ * $Id: demux_elem.c,v 1.19 2001/09/10 03:04:48 guenter Exp $
*
* demultiplexer for elementary mpeg streams
*
@@ -251,10 +251,11 @@ static int demux_mpeg_elem_open(demux_plugin_t *this_gen,
bs = 4;
if (input->read(input, this->scratch, bs) == bs) {
-
+ /*
printf ("demux_elem: %02x %02x %02x %02x (bs=%d)\n",
this->scratch[0], this->scratch[1],
this->scratch[2], this->scratch[3], bs);
+ */
if (this->scratch[0] || this->scratch[1]
|| (this->scratch[2] != 0x01) || (this->scratch[3] != 0xb3))