summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2014-11-28 22:43:56 +0100
committerMichael Giacomelli <giac2000@hotmail.com>2014-11-28 23:04:50 +0100
commitd924c83066759792f8a7622ed8794a97ca98bf4b (patch)
tree176631667c5678ac5d42de508c1493f8816482d4 /lib/rbcodec/metadata
parentaa2c55e1057c0c220a1eb37c99d2c251bfe850ab (diff)
downloadrockbox-d924c83066759792f8a7622ed8794a97ca98bf4b.zip
rockbox-d924c83066759792f8a7622ed8794a97ca98bf4b.tar.gz
rockbox-d924c83066759792f8a7622ed8794a97ca98bf4b.tar.bz2
rockbox-d924c83066759792f8a7622ed8794a97ca98bf4b.tar.xz
Fix warning in WMA Pro and remove a c++ comment.
Change-Id: Id9b50c1fdeca4d87f158da717de8958330f027ef
Diffstat (limited to 'lib/rbcodec/metadata')
-rw-r--r--lib/rbcodec/metadata/asf.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/rbcodec/metadata/asf.c b/lib/rbcodec/metadata/asf.c
index 50e021b..0d11509 100644
--- a/lib/rbcodec/metadata/asf.c
+++ b/lib/rbcodec/metadata/asf.c
@@ -279,13 +279,12 @@ static int asf_parse_header(int fd, struct mp3entry* id3,
* (little endian byte order) */
lseek(fd, 32, SEEK_CUR);
read_uint64le(fd, &wfx->numpackets);
- //DEBUGF("read packets: %llx %lld\n", wfx->numpackets, wfx->numpackets);
+ /*DEBUGF("read packets: %llx %lld\n", wfx->numpackets, wfx->numpackets);*/
/* Now get the play duration - uint64_t at offset 40 */
- //lseek(fd, 4, SEEK_CUR);
read_uint64le(fd, &play_duration);
id3->length = play_duration / 10000;
- //DEBUGF("****** length = %lums\n", id3->length);
+ /*DEBUGF("****** length = %lums\n", id3->length);*/
/* Read the packet size - uint32_t at offset 68 */
lseek(fd, 20, SEEK_CUR);