diff options
author | waker <wakeroid@gmail.com> | 2011-03-24 21:30:11 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2011-03-24 21:30:11 +0100 |
commit | fd04c7a395f4ac26942222e29e2dd9a8901bff41 (patch) | |
tree | 0ed33d33f0171603c7f6503b52f5512770e59fcd /plugins/shn | |
parent | 2278425be18b7600c055e54e5777b44858e1af4e (diff) |
got rid of filetype field in playitem structure
Diffstat (limited to 'plugins/shn')
-rw-r--r-- | plugins/shn/shn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/shn/shn.c b/plugins/shn/shn.c index 7d33de5e..87440ee2 100644 --- a/plugins/shn/shn.c +++ b/plugins/shn/shn.c @@ -894,7 +894,7 @@ shn_insert (DB_playItem_t *after, const char *fname) { } DB_playItem_t *it = deadbeef->pl_item_alloc_init (fname, plugin.plugin.id); - it->filetype = "Shorten"; + deadbeef->pl_add_meta (it, ":FILETYPE", "Shorten"); deadbeef->pl_set_item_duration (it, tmp_file->wave_header.length); int apeerr = deadbeef->junk_apev2_read (it, tmp_file->vars.fd); |