summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-07-12 13:11:14 +0200
committerwm4 <wm4@nowhere>2017-07-12 13:11:14 +0200
commitca512b53a0569a3b49e25c52ab191d48b73d649e (patch)
tree8ae0aa46e39700c5c123560437c9561a6d27597c /player
parent9a996313e659d0f3d3058bd7c893a09f82096f0e (diff)
downloadmpv-ca512b53a0569a3b49e25c52ab191d48b73d649e.tar.bz2
mpv-ca512b53a0569a3b49e25c52ab191d48b73d649e.tar.xz
player: change default section when loading encoding-profiles.conf
It used to use the "encoding" section. Change this to the default section to remove another small special case. encoding-profiles.conf didn't use this by default anyway. The previous revert could mitigate potential impacts of this a little.
Diffstat (limited to 'player')
-rw-r--r--player/configfiles.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/player/configfiles.c b/player/configfiles.c
index acc8f0d60b..3f0b57cde3 100644
--- a/player/configfiles.c
+++ b/player/configfiles.c
@@ -71,10 +71,10 @@ void mp_parse_cfgfiles(struct MPContext *mpctx)
// So we "divert" normal options into a separate section, and the diverted
// section is never used - unless maybe it's explicitly referenced from an
// encoding profile.
- if (encoding) {
+ if (encoding)
section = "playback-default";
- load_all_cfgfiles(mpctx, SECT_ENCODE, "encoding-profiles.conf");
- }
+
+ load_all_cfgfiles(mpctx, NULL, "encoding-profiles.conf");
load_all_cfgfiles(mpctx, section, "mpv.conf|config");