1
0
Fork 0
forked from len0rd/rockbox

WMA clean-up commit - fix 64-bit sim warnings, set svn keywords property, and add new files to apps/FILES

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13771 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2007-07-03 10:21:23 +00:00
parent fe163c5178
commit 9cb40ea5e3
5 changed files with 7 additions and 5 deletions

View file

@ -28,6 +28,7 @@ codecs/libmusepack/*
codecs/libspeex/* codecs/libspeex/*
codecs/libspeex/speex/* codecs/libspeex/speex/*
codecs/libwavpack/* codecs/libwavpack/*
codecs/libwma/*
codecs/spc/* codecs/spc/*
codecs/Tremor/* codecs/Tremor/*
eqs/*.cfg eqs/*.cfg

View file

@ -4,7 +4,7 @@
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
# \/ \/ \/ \/ \/ # \/ \/ \/ \/ \/
# $Id: Makefile 11401 2006-10-30 18:14:12Z learman $ # $Id$
# #
INCLUDES=-I$(APPSDIR) -I.. -I. -I$(FIRMDIR)/include -I$(FIRMDIR)/export \ INCLUDES=-I$(APPSDIR) -I.. -I. -I$(FIRMDIR)/include -I$(FIRMDIR)/export \

View file

@ -5,7 +5,7 @@
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/ * \/ \/ \/ \/ \/
* $Id: flac.c 12830 2007-03-18 09:50:53Z learman $ * $Id$
* *
* Copyright (C) 2005 Dave Chapman * Copyright (C) 2005 Dave Chapman
* *

View file

@ -151,7 +151,7 @@ static int asf_parse_header(int fd, struct mp3entry* id3)
/* Two reserved bytes - do we need to read them? */ /* Two reserved bytes - do we need to read them? */
lseek(fd, 2, SEEK_CUR); lseek(fd, 2, SEEK_CUR);
DEBUGF("Read header - size=%d, subobjects=%lu\n",(int)header.size, subobjects); DEBUGF("Read header - size=%d, subobjects=%d\n",(int)header.size, (int)subobjects);
if (subobjects > 0) { if (subobjects > 0) {
header.datalen = header.size - 30; header.datalen = header.size - 30;
@ -328,13 +328,13 @@ static int asf_parse_header(int fd, struct mp3entry* id3)
case 3: /* 32-bit int */ case 3: /* 32-bit int */
read_uint32le(fd, &tmp32); read_uint32le(fd, &tmp32);
DEBUGF("Value=%lu\n",tmp32); DEBUGF("Value=%u\n",(unsigned int)tmp32);
lseek(fd,length - 4,SEEK_CUR); lseek(fd,length - 4,SEEK_CUR);
break; break;
case 4: /* 64-bit int */ case 4: /* 64-bit int */
read_uint64le(fd, &tmp64); read_uint64le(fd, &tmp64);
DEBUGF("Value=%llu\n",tmp64); DEBUGF("Value=[64-bit int]\n");
lseek(fd,length - 8,SEEK_CUR); lseek(fd,length - 8,SEEK_CUR);
break; break;

View file

@ -118,6 +118,7 @@ nim.c
mp3_encoder.c mp3_encoder.c
midiplay.c midiplay.c
wav2wv.c wav2wv.c
test_codec.c
#else /* hardware codec platforms */ #else /* hardware codec platforms */
#ifndef HAVE_MMC /* not for Ondio, has no remote control pin */ #ifndef HAVE_MMC /* not for Ondio, has no remote control pin */
alpine_cdc.c alpine_cdc.c