summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/demuxers/demux_mpeg.c')
-rw-r--r--src/demuxers/demux_mpeg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/demux_mpeg.c b/src/demuxers/demux_mpeg.c
index b9d2ac18d..fdb9b7b7f 100644
--- a/src/demuxers/demux_mpeg.c
+++ b/src/demuxers/demux_mpeg.c
@@ -19,7 +19,7 @@
*/
/*
- * $Id: demux_mpeg.c,v 1.136 2004/04/09 16:07:10 miguelfreitas Exp $
+ * $Id: demux_mpeg.c,v 1.137 2004/04/22 21:30:10 miguelfreitas Exp $
*
* demultiplexer for mpeg 1/2 program streams
* reads streams of variable blocksizes
@@ -733,8 +733,8 @@ static uint32_t parse_pack(demux_mpeg_t *this) {
this->rate = (buf << 14);
buf = read_bytes (this, 1);
this->rate |= (buf << 6);
+ buf = read_bytes (this, 1);
this->rate |= (buf >> 2);
- read_bytes (this, 1);
} else {
read_bytes(this,3);
}