summaryrefslogtreecommitdiff
path: root/setup_menu.c
diff options
context:
space:
mode:
authorphintuka <phintuka>2007-09-30 16:52:18 +0000
committerphintuka <phintuka>2007-09-30 16:52:18 +0000
commita87ba55fe98134122926f12e25654b4ee0d25bd1 (patch)
tree29633e5aae0200e8883744b274637edb74f1c86c /setup_menu.c
parent15e70fb28e0964a5c55a27b6f989997da8e282ef (diff)
downloadxineliboutput-a87ba55fe98134122926f12e25654b4ee0d25bd1.tar.gz
xineliboutput-a87ba55fe98134122926f12e25654b4ee0d25bd1.tar.bz2
Setup option to limit trick speed
Diffstat (limited to 'setup_menu.c')
-rw-r--r--setup_menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup_menu.c b/setup_menu.c
index e7460dc5..5c3d9510 100644
--- a/setup_menu.c
+++ b/setup_menu.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: setup_menu.c,v 1.39 2007-09-18 14:02:38 phintuka Exp $
+ * $Id: setup_menu.c,v 1.40 2007-09-30 16:52:18 phintuka Exp $
*
*/
@@ -657,6 +657,8 @@ void cMenuSetupVideo::Set(void)
Add(new cMenuEditBoolItem(tr("Smooth fast forward"),
&newconfig.ibp_trickspeed));
#endif
+ Add(new cMenuEditIntItem(tr("Fastest trick speed"),
+ &newconfig.max_trickspeed, 1, 12));
if(current<1) current=1; /* first item is not selectable */
SetCurrent(Get(current));
@@ -755,6 +757,7 @@ void cMenuSetupVideo::Store(void)
SetupStore("Video.Brightness", xc.brightness);
SetupStore("Video.Overscan", xc.overscan);
SetupStore("Video.IBPTrickSpeed", xc.ibp_trickspeed);
+ SetupStore("Video.MaxTrickSpeed", xc.max_trickspeed);
SetupStore("Post.pp.Enable", xc.ffmpeg_pp);
SetupStore("Post.pp.Quality", xc.ffmpeg_pp_quality);
SetupStore("Post.pp.Mode", xc.ffmpeg_pp_mode);