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
e4317c11
Commit
e4317c11
authored
Mar 30, 2017
by
Mikhail Karpenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wait for writer to finish last frame before stopping
parent
54bbff55
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
camogm_jpeg.c
src/camogm_jpeg.c
+3
-0
No files found.
src/camogm_jpeg.c
View file @
e4317c11
...
@@ -365,6 +365,9 @@ int camogm_end_jpeg(camogm_state *state)
...
@@ -365,6 +365,9 @@ int camogm_end_jpeg(camogm_state *state)
if
(
state
->
rawdev_op
)
{
if
(
state
->
rawdev_op
)
{
// write any remaining data, do not use writer thread as there can be only one block left CHUNK_REM buffer
// write any remaining data, do not use writer thread as there can be only one block left CHUNK_REM buffer
pthread_mutex_lock
(
&
state
->
writer_params
.
writer_mutex
);
pthread_mutex_lock
(
&
state
->
writer_params
.
writer_mutex
);
while
(
state
->
writer_params
.
data_ready
)
// wait for previous frame to be recorded first if it has not be recorded by the moment
pthread_cond_wait
(
&
state
->
writer_params
.
main_cond
,
&
state
->
writer_params
.
writer_mutex
);
bytes
=
prep_last_block
(
state
);
bytes
=
prep_last_block
(
state
);
if
(
bytes
>
0
)
{
if
(
bytes
>
0
)
{
D6
(
fprintf
(
debug_file
,
"Write last block of data, size = %d
\n
"
,
bytes
));
D6
(
fprintf
(
debug_file
,
"Write last block of data, size = %d
\n
"
,
bytes
));
...
...
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