diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-06-15 19:44:44 +0200 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-06-15 19:44:44 +0200 |
commit | b452a6991fe765da0b8e93051a035f5a0113f227 (patch) | |
tree | d59c78768c30bb1c6223494a5e8c316334c3b5ab /plugins | |
parent | e640d63e3e75e92ce4c0ff4e880ef21390cb41b4 (diff) |
acc filetype fix
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/aac/aac.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/aac/aac.c b/plugins/aac/aac.c index 36a48eb5..d7ceaeb4 100644 --- a/plugins/aac/aac.c +++ b/plugins/aac/aac.c @@ -514,10 +514,10 @@ aac_insert (DB_playItem_t *after, const char *fname) { return NULL; } else if (res == 0) { - ftype = "mp4"; + ftype = plugin.filetypes[1]; } else if (res == 1) { - ftype = "aac"; + ftype = plugin.filetypes[0]; } DB_playItem_t *it = deadbeef->pl_item_alloc (); @@ -543,7 +543,7 @@ aac_insert (DB_playItem_t *after, const char *fname) { } static const char * exts[] = { "aac", "mp4", "m4a", NULL }; -static const char *filetypes[] = { "aac", "mp4", NULL }; +static const char *filetypes[] = { "RAW AAC", "MP4 AAC", NULL }; // define plugin interface static DB_decoder_t plugin = { |