summaryrefslogtreecommitdiff
path: root/apps/metadata/asf.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/metadata/asf.c')
-rw-r--r--apps/metadata/asf.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/apps/metadata/asf.c b/apps/metadata/asf.c
index c445e485a2..56d5c87f9d 100644
--- a/apps/metadata/asf.c
+++ b/apps/metadata/asf.c
@@ -456,18 +456,8 @@ static int asf_parse_header(int fd, struct mp3entry* id3,
456 lseek(fd, length, SEEK_CUR); 456 lseek(fd, length, SEEK_CUR);
457 } 457 }
458 } else if (!strncmp("replaygain_", utf8buf, 11)) { 458 } else if (!strncmp("replaygain_", utf8buf, 11)) {
459 char* value = id3buf;
460 int buf_len = id3buf_remaining;
461 int len;
462 asf_utf16LEdecode(fd, length, &id3buf, &id3buf_remaining); 459 asf_utf16LEdecode(fd, length, &id3buf, &id3buf_remaining);
463 len = parse_replaygain(utf8buf, value, id3, 460 parse_replaygain(utf8buf, id3buf, id3);
464 value, buf_len);
465
466 if (len == 0) {
467 /* Don't need to keep the value */
468 id3buf = value;
469 id3buf_remaining = buf_len;
470 }
471 } else if (!strcmp("MusicBrainz/Track Id", utf8buf)) { 461 } else if (!strcmp("MusicBrainz/Track Id", utf8buf)) {
472 id3->mb_track_id = id3buf; 462 id3->mb_track_id = id3buf;
473 asf_utf16LEdecode(fd, length, &id3buf, &id3buf_remaining); 463 asf_utf16LEdecode(fd, length, &id3buf, &id3buf_remaining);