diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2007-08-02 04:47:33 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2007-08-02 04:47:33 +0000 |
| commit | 206e883e78fe6bb5d65b150b757d7a9af76f472e (patch) | |
| tree | 424b5c80c9ebe6f587dbd3bb93fcdb59b6374140 /apps/metadata/asf.c | |
| parent | 66029a58aeac41340f57d6b6c4f5c79eae04cc4a (diff) | |
| download | rockbox-206e883e78fe6bb5d65b150b757d7a9af76f472e.zip rockbox-206e883e78fe6bb5d65b150b757d7a9af76f472e.tar.gz rockbox-206e883e78fe6bb5d65b150b757d7a9af76f472e.tar.bz2 rockbox-206e883e78fe6bb5d65b150b757d7a9af76f472e.tar.xz | |
Initial attept at supporting Line Spectral Pairs. Various issues remain, and the ffmpeg decoder itself often fails on certain valid LSP files. Expect some issues.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14134 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/metadata/asf.c')
| -rw-r--r-- | apps/metadata/asf.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/metadata/asf.c b/apps/metadata/asf.c index e255346..fcc41c2 100644 --- a/apps/metadata/asf.c +++ b/apps/metadata/asf.c @@ -498,11 +498,6 @@ bool get_asf_metadata(int fd, struct mp3entry* id3) return false; } - if (wfx.bitrate < 20000) { - DEBUGF("ASF: < 20kbps files not supported\n"); - return false; - } - asf_read_object_header(&obj, fd); if (!asf_guid_match(&obj.guid, &asf_guid_data)) { |