Merge branch 'master' into multituner

This commit is contained in:
[CST] Focus
2012-03-22 19:14:27 +04:00
3 changed files with 8 additions and 7 deletions

View File

@@ -232,7 +232,7 @@ bool CRecordInstance::Stop(bool remove_event)
CCamManager::getInstance()->Stop(channel_id, CCamManager::RECORD);
if((autoshift && g_settings.auto_delete) /* || autoshift_delete*/) {
snprintf(buf,sizeof(buf), "rm -f %s.ts &", filename);
snprintf(buf,sizeof(buf), "nice -n 20 rm -f %s.ts &", filename);
system(buf);
snprintf(buf,sizeof(buf), "%s.xml", filename);
//autoshift_delete = false;

View File

@@ -2572,7 +2572,9 @@ bool CMovieBrowser::delFile_vlc(CFile& /*file*/)
bool CMovieBrowser::delFile_std(CFile& file)
{
bool result = true;
unlink(file.Name.c_str()); // fix: use full path
char buf[FILENAME_MAX]={0};
snprintf(buf,sizeof(buf), "nice -n 20 rm -f %s &", file.Name.c_str());
system(buf);
TRACE(" delete file: %s\r\n",file.Name.c_str());
return(result);
}

View File

@@ -560,11 +560,6 @@ void CMoviePlayerGui::PlayFile(void)
playback->SetPosition(-10 * 1000);
} else if (msg == CRCInput::RC_0) { // cancel bookmark jump
handleMovieBrowser(CRCInput::RC_0, position);
}
else if (msg == CRCInput::RC_timeout) {
// nothing
} else if (msg == CRCInput::RC_sat || msg == CRCInput::RC_favorites) {
//FIXME do nothing ?
} else if (msg == CRCInput::RC_help || msg == CRCInput::RC_info) {
callInfoViewer(duration, position);
update_lcd = true;
@@ -624,6 +619,10 @@ void CMoviePlayerGui::PlayFile(void)
printf("CMoviePlayerGui::PlayFile: ZAPTO etc..\n");
playstate = CMoviePlayerGui::STOPPED;
g_RCInput->postMsg(msg, data);
} else if (msg == CRCInput::RC_timeout) {
// nothing
} else if (msg == CRCInput::RC_sat || msg == CRCInput::RC_favorites) {
//FIXME do nothing ?
} else {
if (CNeutrinoApp::getInstance()->handleMsg(msg, data) & messages_return::cancel_all) {
printf("CMoviePlayerGui::PlayFile: neutrino handleMsg messages_return::cancel_all\n");