summaryrefslogtreecommitdiffstats
path: root/options/options.c
diff options
context:
space:
mode:
authorChristoph Heinrich <christoph.heinrich@student.tugraz.at>2023-02-21 03:07:51 +0100
committerDudemanguy <random342@airmail.cc>2023-02-21 17:15:17 +0000
commitc0807e98fbc808b50d58ae88b4ae05b0cd956e69 (patch)
treec1461b0e82d1a6a6f8c043926d5d6ffe691066f2 /options/options.c
parent07545657bf73ebb4da38e26950d5203466298ec1 (diff)
downloadmpv-c0807e98fbc808b50d58ae88b4ae05b0cd956e69.tar.bz2
mpv-c0807e98fbc808b50d58ae88b4ae05b0cd956e69.tar.xz
options: remove explicit initialization of integers to 0
Diffstat (limited to 'options/options.c')
-rw-r--r--options/options.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/options/options.c b/options/options.c
index 41643111f1..2beb5d01b8 100644
--- a/options/options.c
+++ b/options/options.c
@@ -974,7 +974,6 @@ static const struct MPOpts mp_default_opts = {
.msg_color = true,
.softvol_max = 130,
.softvol_volume = 100,
- .softvol_mute = 0,
.gapless_audio = -1,
.wintitle = "${?media-title:${media-title}}${!media-title:No file} - mpv",
.stop_screensaver = 1,
@@ -1022,7 +1021,6 @@ static const struct MPOpts mp_default_opts = {
.playlist_pos = -1,
.play_frames = -1,
.rebase_start_time = true,
- .keep_open = 0,
.keep_open_pause = true,
.image_display_duration = 1.0,
.stream_id = { { [STREAM_AUDIO] = -1,
@@ -1037,9 +1035,7 @@ static const struct MPOpts mp_default_opts = {
.audio_output_format = 0, // AF_FORMAT_UNKNOWN
.playback_speed = 1.,
.pitch_correction = true,
- .sub_auto = 0,
.audiofile_auto = -1,
- .coverart_auto = 0,
.coverart_whitelist = true,
.osd_bar_visible = true,
.screenshot_template = "mpv-shot%n",