diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-12 18:47:13 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2010-03-12 18:47:13 +0000 |
| commit | 2ac401f4861e16c8c26517348f4b96b6dfeed41a (patch) | |
| tree | 9b2d0b4d8cbdbeec9e5f0975f3393dbcaff80901 /apps/codecs | |
| parent | c82cac4c3d6d38b8df8e789c1b31a85cf2bd638e (diff) | |
| download | rockbox-2ac401f4861e16c8c26517348f4b96b6dfeed41a.zip rockbox-2ac401f4861e16c8c26517348f4b96b6dfeed41a.tar.gz rockbox-2ac401f4861e16c8c26517348f4b96b6dfeed41a.tar.bz2 rockbox-2ac401f4861e16c8c26517348f4b96b6dfeed41a.tar.xz | |
Make atrac3 streams in wav containers work again (error was introduced with r24782). Add additional info to atrac3 debug information.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25134 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
| -rw-r--r-- | apps/codecs/atrac3_oma.c | 2 | ||||
| -rw-r--r-- | apps/codecs/atrac3_rm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/atrac3_oma.c b/apps/codecs/atrac3_oma.c index df34999..00a0ec0 100644 --- a/apps/codecs/atrac3_oma.c +++ b/apps/codecs/atrac3_oma.c @@ -60,7 +60,7 @@ next_track: res =atrac3_decode_init(&q, ci->id3); if(res < 0) { - DEBUGF("failed to initialize atrac decoder\n"); + DEBUGF("failed to initialize OMA atrac decoder\n"); return CODEC_ERROR; } diff --git a/apps/codecs/atrac3_rm.c b/apps/codecs/atrac3_rm.c index b8f8489..a0b0fd8 100644 --- a/apps/codecs/atrac3_rm.c +++ b/apps/codecs/atrac3_rm.c @@ -83,7 +83,7 @@ next_track: res =atrac3_decode_init(&q, ci->id3); if(res < 0) { - DEBUGF("failed to initialize atrac decoder\n"); + DEBUGF("failed to initialize RM atrac decoder\n"); return CODEC_ERROR; } |