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
38f6a374
Commit
38f6a374
authored
8 years ago
by
Mikhail Karpenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug with wrong buffer pointer
parent
b78c1115
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
camogm.c
camogm.c
+2
-2
No files found.
camogm.c
View file @
38f6a374
...
@@ -164,7 +164,7 @@ const char *ctlFileNames[] = { "/dev/frameparsall0", "/dev/frameparsall1",
...
@@ -164,7 +164,7 @@ const char *ctlFileNames[] = { "/dev/frameparsall0", "/dev/frameparsall1",
const
char
*
circbufFileNames
[]
=
{
"/dev/circbuf0"
,
"/dev/circbuf1"
,
const
char
*
circbufFileNames
[]
=
{
"/dev/circbuf0"
,
"/dev/circbuf1"
,
"/dev/circbuf2"
,
"/dev/circbuf3"
"/dev/circbuf2"
,
"/dev/circbuf3"
};
};
unsigned
long
*
ccam_dma_buf
[
SENSOR_PORTS
];
/* mmapped array */
unsigned
long
*
ccam_dma_buf
[
SENSOR_PORTS
];
/* mmapped array
s
*/
int
lastDaemonBit
[
SENSOR_PORTS
]
=
{
DAEMON_BIT_CAMOGM
};
int
lastDaemonBit
[
SENSOR_PORTS
]
=
{
DAEMON_BIT_CAMOGM
};
struct
framepars_all_t
*
frameParsAll
[
SENSOR_PORTS
];
struct
framepars_all_t
*
frameParsAll
[
SENSOR_PORTS
];
...
@@ -665,7 +665,7 @@ int sendImageFrame(camogm_state *state)
...
@@ -665,7 +665,7 @@ int sendImageFrame(camogm_state *state)
state
->
packetchunks
[
state
->
chunk_index
++
].
chunk
=
(
unsigned
char
*
)
&
ccam_dma_buf
[
state
->
port_num
][
state
->
cirbuf_rp
>>
2
];
state
->
packetchunks
[
state
->
chunk_index
++
].
chunk
=
(
unsigned
char
*
)
&
ccam_dma_buf
[
state
->
port_num
][
state
->
cirbuf_rp
>>
2
];
/*! copy from the beginning of the buffer to the end of the frame */
/*! copy from the beginning of the buffer to the end of the frame */
state
->
packetchunks
[
state
->
chunk_index
].
bytes
=
state
->
jpeg_len
-
(
state
->
circ_buff_size
-
state
->
cirbuf_rp
);
state
->
packetchunks
[
state
->
chunk_index
].
bytes
=
state
->
jpeg_len
-
(
state
->
circ_buff_size
-
state
->
cirbuf_rp
);
state
->
packetchunks
[
state
->
chunk_index
++
].
chunk
=
(
unsigned
char
*
)
&
ccam_dma_buf
[
0
];
state
->
packetchunks
[
state
->
chunk_index
++
].
chunk
=
(
unsigned
char
*
)
&
ccam_dma_buf
[
state
->
port_num
][
0
];
}
else
{
// single segment
}
else
{
// single segment
D3
(
fprintf
(
debug_file
,
"_11_"
));
D3
(
fprintf
(
debug_file
,
"_11_"
));
...
...
This diff is collapsed.
Click to expand it.
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