mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/realmedia/rmdemux.c: This was supposed to part of the last checkin. Same idea.
Original commit message from CVS: * gst/realmedia/rmdemux.c: This was supposed to part of the last checkin. Same idea.
This commit is contained in:
parent
f1b6c80c23
commit
02cf48a709
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-04-20 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/realmedia/rmdemux.c: This was supposed to part of the
|
||||
last checkin. Same idea.
|
||||
|
||||
2004-04-20 Daniel Gazard <daniel.gazard@epita.fr>
|
||||
|
||||
reviewed by David Schleef
|
||||
|
|
|
@ -26,9 +26,9 @@
|
|||
#include <string.h>
|
||||
#include <zlib.h>
|
||||
|
||||
#define RMDEMUX_GUINT32_GET(a) GUINT32_FROM_BE(*(guint32 *)(a))
|
||||
#define RMDEMUX_GUINT16_GET(a) GUINT16_FROM_BE(*(guint16 *)(a))
|
||||
#define RMDEMUX_FOURCC_GET(a) GUINT32_FROM_LE(*(guint32 *)(a))
|
||||
#define RMDEMUX_GUINT32_GET(a) GST_READ_UINT32_BE(a)
|
||||
#define RMDEMUX_GUINT16_GET(a) GST_READ_UINT16_BE(a)
|
||||
#define RMDEMUX_FOURCC_GET(a) GST_READ_UINT32_LE(a)
|
||||
|
||||
typedef struct _GstRMDemuxIndex GstRMDemuxIndex;
|
||||
|
||||
|
|
Loading…
Reference in a new issue