summaryrefslogtreecommitdiff
path: root/apps/metadata
diff options
context:
space:
mode:
Diffstat (limited to 'apps/metadata')
-rw-r--r--apps/metadata/asf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/metadata/asf.c b/apps/metadata/asf.c
index 7bcfea22f0..cae33ab375 100644
--- a/apps/metadata/asf.c
+++ b/apps/metadata/asf.c
@@ -401,6 +401,11 @@ bool get_asf_metadata(int fd, struct mp3entry* id3)
401 return false; 401 return false;
402 } 402 }
403 403
404 if (wfx.bitrate < 32000) {
405 DEBUGF("ASF: < 32kbps files not supported\n");
406 return false;
407 }
408
404 asf_read_object_header(&obj, fd); 409 asf_read_object_header(&obj, fd);
405 410
406 if (!asf_guid_match(&obj.guid, &asf_guid_data)) { 411 if (!asf_guid_match(&obj.guid, &asf_guid_data)) {