From 25f5254e1b9ddf7dbf57d8cb7353cacaa53a25b9 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 31 Mar 2012 17:38:22 +0000 Subject: [PATCH] Let the user set FFMS2 decoding threads to -1 Originally committed to SVN as r6641. --- aegisub/src/preferences.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/preferences.cpp b/aegisub/src/preferences.cpp index 14c3fe8b1..eb9ba4732 100644 --- a/aegisub/src/preferences.cpp +++ b/aegisub/src/preferences.cpp @@ -585,7 +585,7 @@ Advanced_Video::Advanced_Video(wxTreebook *book, Preferences *parent): OptionPag wxArrayString log_levels_choice(8, log_levels); OptionChoice(ffms, _("Debug log verbosity"), log_levels_choice, "Provider/FFmpegSource/Log Level"); - OptionAdd(ffms, _("Decoding threads"), "Provider/Video/FFmpegSource/Decoding Threads"); + OptionAdd(ffms, _("Decoding threads"), "Provider/Video/FFmpegSource/Decoding Threads", -1); OptionAdd(ffms, _("Enable unsafe seeking"), "Provider/Video/FFmpegSource/Unsafe Seeking"); #if FFMS_VERSION >= ((2 << 24) | (17 << 16) | (1 << 8) | 0) OptionAdd(ffms, _("Force BT.601"), "Provider/Video/FFmpegSource/Force BT.601");