Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-web-camvc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
elphel-web-camvc
Commits
bbde16ff
Commit
bbde16ff
authored
Nov 02, 2016
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hardware frame number 8->16
parent
96fec446
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
camvc_circbuf.js
src/camvc_circbuf.js
+3
-2
No files found.
src/camvc_circbuf.js
View file @
bbde16ff
...
...
@@ -145,7 +145,7 @@ function showCircbufFrame(frame_num) {
}
function
parseExif
(
xml
)
{
var
v
;
var
v
,
f
;
var
needsRedraw
=
false
;
if
(
typeof
(
xml
.
getElementsByTagName
(
'ImageDescription'
)[
0
])
==
'undefined'
)
{
if
(
document
.
getElementById
(
'idImageDescription_ALL'
).
style
.
display
!=
'none'
)
needsRedraw
=
true
;;
...
...
@@ -175,7 +175,8 @@ function parseExif(xml) {
}
else
{
if
(
document
.
getElementById
(
'idExifFrameNumber_ALL'
).
style
.
display
==
'none'
)
needsRedraw
=
true
;;
document
.
getElementById
(
"idExifFrameNumber_ALL"
).
style
.
display
=
""
;
document
.
getElementById
(
"idExifFrameNumber"
).
innerHTML
=
parseInt
(
v
)
+
" ("
+
(
parseInt
(
v
)
&
7
)
+
")"
;
f
=
parseInt
(
v
)
&
15
;
document
.
getElementById
(
"idExifFrameNumber"
).
innerHTML
=
parseInt
(
v
)
+
" ("
+
((
f
<
10
)?
" "
:
""
)
+
f
+
")"
;
}
v
=
getIfDefinedFCNV
(
xml
.
getElementsByTagName
(
'ExposureTime'
)[
0
]);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment