Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-apps-camogm
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-apps-camogm
Commits
27c6e9f4
Commit
27c6e9f4
authored
Mar 30, 2017
by
Mikhail Karpenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make disk geomentry available in status xml before recording starts
parent
2431adb3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
camogm.c
src/camogm.c
+3
-0
camogm_jpeg.c
src/camogm_jpeg.c
+1
-2
camogm_jpeg.h
src/camogm_jpeg.h
+1
-0
No files found.
src/camogm.c
View file @
27c6e9f4
...
...
@@ -1468,6 +1468,9 @@ int parse_cmd(camogm_state *state, FILE* npipe)
}
else
if
(
strcmp
(
cmd
,
"rawdev_path"
)
==
0
)
{
if
(
args
)
{
camogm_set_prefix
(
state
,
args
,
RAW_PATH
);
// make disk geometry available in status xml before recording starts
get_disk_info
(
state
);
open_state_file
(
&
state
->
rawdev
,
&
state
->
writer_params
.
lba_current
);
}
else
{
state
->
rawdev_op
=
0
;
state
->
rawdev
.
rawdev_path
[
0
]
=
'\0'
;
...
...
src/camogm_jpeg.c
View file @
27c6e9f4
...
...
@@ -40,7 +40,6 @@
/* forward declarations */
static
void
*
jpeg_writer
(
void
*
thread_args
);
static
int
save_state_file
(
const
rawdev_buffer
*
rawdev
,
uint64_t
current_pos
);
static
int
open_state_file
(
const
rawdev_buffer
*
rawdev
,
uint64_t
*
current_pos
);
/** Get starting and endign LBAs of the partition specified as raw device buffer */
static
int
get_disk_range
(
struct
range
*
range
)
...
...
@@ -99,7 +98,7 @@ static int find_state(FILE *f, uint64_t *pos, const rawdev_buffer *rawdev)
}
/** Read state from file and restore disk write pointer */
static
int
open_state_file
(
const
rawdev_buffer
*
rawdev
,
uint64_t
*
current_pos
)
int
open_state_file
(
const
rawdev_buffer
*
rawdev
,
uint64_t
*
current_pos
)
{
int
fd
,
len
;
FILE
*
f
;
...
...
src/camogm_jpeg.h
View file @
27c6e9f4
...
...
@@ -25,5 +25,6 @@ int camogm_start_jpeg(camogm_state *state);
int
camogm_frame_jpeg
(
camogm_state
*
state
);
int
camogm_end_jpeg
(
camogm_state
*
state
);
void
camogm_free_jpeg
(
camogm_state
*
state
);
int
open_state_file
(
const
rawdev_buffer
*
rawdev
,
uint64_t
*
current_pos
);
#endif
/* _CAMOGM_JPEG_H */
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