Commit 80902018 authored by Andrey Filippov's avatar Andrey Filippov

running camvc on NC393

parent e773687b
...@@ -1096,8 +1096,8 @@ input { ...@@ -1096,8 +1096,8 @@ input {
<div id="idColor_ALL" style="float:right;"> <div id="idColor_ALL" style="float:right;">
<div id="idColor_LBTN" class="float_icon"></div> <div id="idColor_LBTN" class="float_icon"></div>
<select name="ColorSelect" id="idColorSelect" onchange="updateColor();"> <select name="ColorSelect" id="idColorSelect" onchange="updateColor();">
<option value="0">mono</option> <option value="0">color</option>
<option value="1">color</option> <option value="1">mono</option>
<option value="2">jp46</option> <option value="2">jp46</option>
<option value="3">jp46dc</option> <option value="3">jp46dc</option>
<!-- <option value="4">color20</option>--> <!-- <option value="4">color20</option>-->
...@@ -1113,8 +1113,8 @@ input { ...@@ -1113,8 +1113,8 @@ input {
<!-- <!--
0 - mono6, monochrome (color YCbCr 4:2:0 with zeroed out color componets)` 0 - color, YCbCr 4:2:0, 3x3 pixels`
1 - color, YCbCr 4:2:0, 3x3 pixels` 1 - mono6, monochrome (color YCbCr 4:2:0 with zeroed out color componets)`
2 - jp46 - original jp4, encoded as 4:2:0 with zeroed color components` 2 - jp46 - original jp4, encoded as 4:2:0 with zeroed color components`
3 - jp46dc, modified jp46 so each color component uses individual DC diffenential encoding` 3 - jp46dc, modified jp46 so each color component uses individual DC diffenential encoding`
4 - reserved for color with 5x5 conversion (not yet implemented)` 4 - reserved for color with 5x5 conversion (not yet implemented)`
......
...@@ -455,7 +455,7 @@ checkBadUrl(this.url,"Requests.prototype.sendHttpReq"); ...@@ -455,7 +455,7 @@ checkBadUrl(this.url,"Requests.prototype.sendHttpReq");
} else { } else {
if ((document.cameraParametersAcquired) || (gXML_req.status)) /// Status 0 is common when the page is reloaded with some request pending if ((document.cameraParametersAcquired) || (gXML_req.status)) /// Status 0 is common when the page is reloaded with some request pending
if (gXML_req.status || document.cameraParametersAcquired) { /// Ignoring stray responces when page is reloaded if (gXML_req.status || document.cameraParametersAcquired) { /// Ignoring stray responces when page is reloaded
alert_once("There was a problem retrieving the XML data:\n" + (gXML_req.status?gXML_req.statusText:"gXML_req.status==0")+ ", document.cameraParametersAcquired="+document.cameraParametersAcquired+ alert_once("There was a problem retrieving the XML data:\nRequests.prototype.sendHttpReq\n" + this.url+"\n"+(gXML_req.status?gXML_req.statusText:"gXML_req.status==0")+ ", document.cameraParametersAcquired="+document.cameraParametersAcquired+
"\nYou may safely ignore this message if you just reloaded this page"); "\nYou may safely ignore this message if you just reloaded this page");
} }
} }
......
...@@ -441,7 +441,7 @@ function receivedConfigsXML() { ...@@ -441,7 +441,7 @@ function receivedConfigsXML() {
{ // { //
configs_mainLoop(); // **** back to main loop **** configs_mainLoop(); // **** back to main loop ****
} else { } else {
alert_once("There was a problem retrieving the XML data:\n" + configXML_req.statusText); alert_once("There was a problem retrieving the XML data (receivedConfigsXML):\n" + configXML_req.statusText);
} }
} }
} }
......
...@@ -140,7 +140,7 @@ function req_DVR_rec() { ...@@ -140,7 +140,7 @@ function req_DVR_rec() {
// ...processing statements go here... // ...processing statements go here...
req_DVR_rec_got(); // **** back to main loop **** req_DVR_rec_got(); // **** back to main loop ****
} else { } else {
alert_once("There was a problem retrieving the XML data:\n" + alert_once("There was a problem retrieving the XML data (req_DVR_rec):\n" +
DVRxml_req.statusText); DVRxml_req.statusText);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment