mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 23:30:20 +01:00
2017-06-26 Fred Gleason <fredg@paravelsystems.com>
* Added a '<fadedownGain>' parameter to the return of the 'ListLog' web API call. * Added 'FADEUP_GAIN' and 'FADEDOWN_GAIN' parameters to the 'SaveLog' web API call.
This commit is contained in:
@@ -344,11 +344,21 @@ void Xport::SaveLog()
|
||||
}
|
||||
ll->setFadeupPoint(integer1,RDLogLine::LogPointer);
|
||||
|
||||
if(!xport_post->getValue(line+"_FADEUP_GAIN",&integer1)) {
|
||||
XmlExit("Missing "+line+"_FADEUP_GAIN",400,"logs.cpp",LINE_NUMBER);
|
||||
}
|
||||
ll->setFadeupGain(integer1);
|
||||
|
||||
if(!xport_post->getValue(line+"_FADEDOWN_POINT",&integer1)) {
|
||||
XmlExit("Missing "+line+"_FADEDOWN_POINT",400,"logs.cpp",LINE_NUMBER);
|
||||
}
|
||||
ll->setFadedownPoint(integer1,RDLogLine::LogPointer);
|
||||
|
||||
if(!xport_post->getValue(line+"_FADEDOWN_GAIN",&integer1)) {
|
||||
XmlExit("Missing "+line+"_FADEDOWN_GAIN",400,"logs.cpp",LINE_NUMBER);
|
||||
}
|
||||
ll->setFadedownGain(integer1);
|
||||
|
||||
if(!xport_post->getValue(line+"_DUCK_UP_GAIN",&integer1)) {
|
||||
XmlExit("Missing "+line+"_DUCK_UP_GAIN",400,"logs.cpp",LINE_NUMBER);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user