diff options
author | Andreas Mair <andreas@vdr-developer.org> | 2010-05-29 15:01:25 +0200 |
---|---|---|
committer | Andreas Mair <andreas@vdr-developer.org> | 2010-05-29 15:05:49 +0200 |
commit | 61966ead5b86f5791e150d63386f51d58390f497 (patch) | |
tree | ddfe71ebb7d104cb689549d16a4eb702a68cf2c1 /tools.c | |
parent | 23f4f2114e7d48bb4bbe5e50aa6ddce0f1c21bd2 (diff) | |
download | vdr-plugin-extrecmenu-61966ead5b86f5791e150d63386f51d58390f497.tar.gz vdr-plugin-extrecmenu-61966ead5b86f5791e150d63386f51d58390f497.tar.bz2 |
Version 1.2-test1-am1v1.2-test1-am1
- fixed wrong help keys if selected recording finishes cutting.
- plugins/extrecmenu/dircmds.conf for recording directory commands (same as reccmds.conf)
- "nice" the action thread.
- Use LimitBandwidth setting also for cutting.
Diffstat (limited to 'tools.c')
-rw-r--r-- | tools.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -282,6 +282,8 @@ void WorkerThread::Action() { CutterListItem *cutteritem=NULL; MoveListItem *moveitem=NULL; + + SetPriority(19); while(Running()) { @@ -500,6 +502,9 @@ void WorkerThread::Cut(string From,string To) else lastmark=true; } + + if(mysetup.LimitBandwidth) + usleep(10); } if(!Running() || cancelcut || error) { |