plugins/id3: we parse adts files as well
authorLucas De Marchi <lucas.demarchi@intel.com>
Wed, 7 Aug 2013 19:35:05 +0000 (16:35 -0300)
committerLucas De Marchi <lucas.demarchi@intel.com>
Wed, 7 Aug 2013 21:49:39 +0000 (18:49 -0300)
.adts files are the same as .aac, but usually without ID3.

src/plugins/id3/id3.c

index 6f62fb3..6df31e7 100644 (file)
@@ -159,7 +159,8 @@ struct plugin {
 static const char _name[] = "id3";
 static const struct lms_string_size _exts[] = {
     LMS_STATIC_STRING_SIZE(".mp3"),
-    LMS_STATIC_STRING_SIZE(".aac")
+    LMS_STATIC_STRING_SIZE(".aac"),
+    LMS_STATIC_STRING_SIZE(".adts"),
 };
 static const char *_cats[] = {
     "multimedia",