Skip to content

Commit

Permalink
Initial all Config struct members
Browse files Browse the repository at this point in the history
  • Loading branch information
complexlogic committed Aug 7, 2024
1 parent ca53c18 commit bd6754e
Showing 1 changed file with 28 additions and 14 deletions.
42 changes: 28 additions & 14 deletions src/easymode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// MP2 config
Expand All @@ -72,7 +73,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// MP3 config
Expand All @@ -90,7 +92,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// FLAC config
Expand All @@ -108,7 +111,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// OGG config
Expand All @@ -126,7 +130,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// OPUS config
Expand All @@ -144,7 +149,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// M4A config
Expand All @@ -162,7 +168,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// WMA config
Expand All @@ -180,7 +187,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// WAV config
Expand All @@ -198,7 +206,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// AIFF config
Expand All @@ -216,7 +225,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// Wavpack config
Expand All @@ -234,7 +244,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// APE config
Expand All @@ -252,7 +263,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// TAK config
Expand All @@ -270,7 +282,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
},

// Musepack config
Expand All @@ -288,7 +301,8 @@ static Config configs[] = {
.lowercase = false,
.id3v2version = ID3V2_KEEP,
.opus_mode = 'd',
.skip_mp4 = false
.skip_mp4 = false,
.preserve_mtimes = false
}
};

Expand Down

0 comments on commit bd6754e

Please sign in to comment.