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:
parent
fe163c5178
commit
9cb40ea5e3
5 changed files with 7 additions and 5 deletions
|
@ -28,6 +28,7 @@ codecs/libmusepack/*
|
|||
codecs/libspeex/*
|
||||
codecs/libspeex/speex/*
|
||||
codecs/libwavpack/*
|
||||
codecs/libwma/*
|
||||
codecs/spc/*
|
||||
codecs/Tremor/*
|
||||
eqs/*.cfg
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
# \/ \/ \/ \/ \/
|
||||
# $Id: Makefile 11401 2006-10-30 18:14:12Z learman $
|
||||
# $Id$
|
||||
#
|
||||
|
||||
INCLUDES=-I$(APPSDIR) -I.. -I. -I$(FIRMDIR)/include -I$(FIRMDIR)/export \
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id: flac.c 12830 2007-03-18 09:50:53Z learman $
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2005 Dave Chapman
|
||||
*
|
||||
|
|
|
@ -151,7 +151,7 @@ static int asf_parse_header(int fd, struct mp3entry* id3)
|
|||
/* Two reserved bytes - do we need to read them? */
|
||||
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) {
|
||||
header.datalen = header.size - 30;
|
||||
|
@ -328,13 +328,13 @@ static int asf_parse_header(int fd, struct mp3entry* id3)
|
|||
|
||||
case 3: /* 32-bit int */
|
||||
read_uint32le(fd, &tmp32);
|
||||
DEBUGF("Value=%lu\n",tmp32);
|
||||
DEBUGF("Value=%u\n",(unsigned int)tmp32);
|
||||
lseek(fd,length - 4,SEEK_CUR);
|
||||
break;
|
||||
|
||||
case 4: /* 64-bit int */
|
||||
read_uint64le(fd, &tmp64);
|
||||
DEBUGF("Value=%llu\n",tmp64);
|
||||
DEBUGF("Value=[64-bit int]\n");
|
||||
lseek(fd,length - 8,SEEK_CUR);
|
||||
break;
|
||||
|
||||
|
|
|
@ -118,6 +118,7 @@ nim.c
|
|||
mp3_encoder.c
|
||||
midiplay.c
|
||||
wav2wv.c
|
||||
test_codec.c
|
||||
#else /* hardware codec platforms */
|
||||
#ifndef HAVE_MMC /* not for Ondio, has no remote control pin */
|
||||
alpine_cdc.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue