gst/mpegstream/gstmpegparse.c: Use the GST_READ macro I meant to in the previous...
authorDavid Schleef <ds@schleef.org>
Tue, 12 Dec 2006 21:09:16 +0000 (21:09 +0000)
committerDavid Schleef <ds@schleef.org>
Tue, 12 Dec 2006 21:09:16 +0000 (21:09 +0000)
Original commit message from CVS:
* gst/mpegstream/gstmpegparse.c: Use the GST_READ macro I meant
to in the previous checkin.  see #385192.  You can have your
cheese back now.

ChangeLog
gst/mpegstream/gstmpegparse.c

index 840ef2aed9a4056bc179bb924ac6191e382a80fd..89cc319e517583fa12538f563a5fa3f13295d99b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-12-12  David Schleef  <ds@schleef.org>
+
+       * gst/mpegstream/gstmpegparse.c: Use the GST_READ macro I meant
+         to in the previous checkin.  see #385192.  You can have your
+         cheese back now.
+
 2006-12-12  David Schleef  <ds@schleef.org>
 
        * gst/mpegstream/gstmpegparse.c: Fix unaligned load that loads
index 36a6973a1a23a66b86a2de7d72fc0a2a349e5d12..f38999a8d884d8dd18492240377b33930d3bbd2b 100644 (file)
@@ -515,7 +515,7 @@ gst_mpeg_parse_parse_packhead (GstMPEGParse * mpeg_parse, GstBuffer * buffer)
         scr - mpeg_parse->current_scr);
 
     buf += 6;
-    new_rate = (GUINT32_FROM_BE (buf) & 0xfffffc00) >> 10;
+    new_rate = (GST_READ_UINT32_BE (buf) & 0xfffffc00) >> 10;
   } else {
     scr = ((guint64) scr1 & 0x0e000000) << 5;
     scr |= ((guint64) scr1 & 0x00fffe00) << 6;