diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-05 08:43:36 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-07-05 08:43:36 +0000 |
| commit | eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4 (patch) | |
| tree | 74c9b4d7e08b2378b499d63f13c8ea70f74f8351 /firmware/export | |
| parent | a10bb59331b5e48adf307c4538333e9a4e036db9 (diff) | |
| download | rockbox-eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4.zip rockbox-eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4.tar.gz rockbox-eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4.tar.bz2 rockbox-eaf8b2d76d3f69b919ff1c3a55e7ad2f07456bd4.tar.xz | |
Patch #1232549 by Ryan Jackson, adds seeking and comments to Vorbis playback
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7025 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
| -rw-r--r-- | firmware/export/id3.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/export/id3.h b/firmware/export/id3.h index a1fff90..8fd41a1 100644 --- a/firmware/export/id3.h +++ b/firmware/export/id3.h @@ -78,6 +78,9 @@ struct mp3entry { unsigned int length; /* song length */ unsigned int elapsed; /* ms played */ + /* Added for Vorbis */ + unsigned long samples; /* number of samples in track */ + /* MP3 stream specific info */ long bpf; /* bytes per frame */ long tpf; /* time per frame */ |