summaryrefslogtreecommitdiff
path: root/plugins/mpgmad
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-23 20:03:45 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-04-23 20:03:45 +0200
commit9e8acc37dbf85d3fca8f666d687f786ab64cc4f7 (patch)
treefe45d200ba376736272db6551653ffa24dc8846b /plugins/mpgmad
parent64fddf83c0140529c99062051120bb4fc5cf1f6d (diff)
don't write apev2 tags to mp3 files by default
Diffstat (limited to 'plugins/mpgmad')
-rw-r--r--plugins/mpgmad/mpgmad.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mpgmad/mpgmad.c b/plugins/mpgmad/mpgmad.c
index cfd1f47e..b9ac42e2 100644
--- a/plugins/mpgmad/mpgmad.c
+++ b/plugins/mpgmad/mpgmad.c
@@ -1164,8 +1164,8 @@ cmp3_write_metadata (DB_playItem_t *it) {
int strip_id3v1 = deadbeef->conf_get_int ("mp3.strip_id3v1", 0);
int strip_apev2 = deadbeef->conf_get_int ("mp3.strip_apev2", 0);
int write_id3v2 = deadbeef->conf_get_int ("mp3.write_id3v2", 1);
- int write_id3v1 = deadbeef->conf_get_int ("mp3.write_id3v1", 0);
- int write_apev2 = deadbeef->conf_get_int ("mp3.write_apev2", 1);
+ int write_id3v1 = deadbeef->conf_get_int ("mp3.write_id3v1", 1);
+ int write_apev2 = deadbeef->conf_get_int ("mp3.write_apev2", 0);
uint32_t junk_flags = 0;
if (strip_id3v2) {