summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/asf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/asf.c')
-rw-r--r--lib/rbcodec/metadata/asf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/rbcodec/metadata/asf.c b/lib/rbcodec/metadata/asf.c
index 0d115099ec..9a74ada453 100644
--- a/lib/rbcodec/metadata/asf.c
+++ b/lib/rbcodec/metadata/asf.c
@@ -375,6 +375,11 @@ static int asf_parse_header(int fd, struct mp3entry* id3,
375 lseek(fd,current.size - 24 - 72 - wfx->datalen,SEEK_CUR); 375 lseek(fd,current.size - 24 - 72 - wfx->datalen,SEEK_CUR);
376 wfx->audiostream = flags&0x7f; 376 wfx->audiostream = flags&0x7f;
377 id3->codectype = AFMT_WMAVOICE; 377 id3->codectype = AFMT_WMAVOICE;
378 } else if (wfx->codec_id == ASF_CODEC_ID_MP3) {
379 lseek(fd,current.size - 24 - 72,SEEK_CUR);
380 wfx->audiostream = flags&0x7f;
381 id3->codectype = AFMT_MPA_L3;
382 id3->is_asf_stream = true;
378 } else { 383 } else {
379 DEBUGF("Unsupported WMA codec (Lossless, Voice, etc)\n"); 384 DEBUGF("Unsupported WMA codec (Lossless, Voice, etc)\n");
380 lseek(fd,current.size - 24 - 72,SEEK_CUR); 385 lseek(fd,current.size - 24 - 72,SEEK_CUR);