summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-05 21:31:27 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-05 21:31:27 +0000
commit1b4b8c31d05b958fb7b42e17ad4b00d87bbe47bd (patch)
treef53a9d0b871aaa91379de5ccafeba55e7f869738 /libmpdemux
parentfac2bcf4f9c9a399e323478ec4303b03bd1ce9d9 (diff)
downloadmpv-1b4b8c31d05b958fb7b42e17ad4b00d87bbe47bd.tar.bz2
mpv-1b4b8c31d05b958fb7b42e17ad4b00d87bbe47bd.tar.xz
make gcc eating this under hurd
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12122 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/asf_mmst_streaming.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmpdemux/asf_mmst_streaming.c b/libmpdemux/asf_mmst_streaming.c
index 16a032bae1..12ec6b0a4c 100644
--- a/libmpdemux/asf_mmst_streaming.c
+++ b/libmpdemux/asf_mmst_streaming.c
@@ -297,11 +297,11 @@ static int interp_header (uint8_t *header, int header_len)
i += 8;
- if ( (guid_1 == 0x6cce6200aa00d9a6) && (guid_2 == 0x11cf668e75b22630) ) {
+ if ( (guid_1 == 0x6cce6200aa00d9a6ULL) && (guid_2 == 0x11cf668e75b22630ULL) ) {
printf ("header object\n");
- } else if ((guid_1 == 0x6cce6200aa00d9a6) && (guid_2 == 0x11cf668e75b22636)) {
+ } else if ((guid_1 == 0x6cce6200aa00d9a6ULL) && (guid_2 == 0x11cf668e75b22636ULL)) {
printf ("data object\n");
- } else if ((guid_1 == 0x6553200cc000e48e) && (guid_2 == 0x11cfa9478cabdca1)) {
+ } else if ((guid_1 == 0x6553200cc000e48eULL) && (guid_2 == 0x11cfa9478cabdca1ULL)) {
packet_length = get_32(header, i+92-24);
@@ -309,7 +309,7 @@ static int interp_header (uint8_t *header, int header_len)
packet_length, get_32(header, i+96-24));
- } else if ((guid_1 == 0x6553200cc000e68e) && (guid_2 == 0x11cfa9b7b7dc0791)) {
+ } else if ((guid_1 == 0x6553200cc000e68eULL) && (guid_2 == 0x11cfa9b7b7dc0791ULL)) {
int stream_id = header[i+48] | header[i+49] << 8;