Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
b0a04b3d
Commit
b0a04b3d
authored
Aug 26, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test/run_filter: pass ConstBuffer<void> to FullWrite()
parent
9617bd6c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
run_filter.cxx
test/run_filter.cxx
+11
-8
No files found.
test/run_filter.cxx
View file @
b0a04b3d
...
...
@@ -95,20 +95,23 @@ FullRead(FileDescriptor fd, void *_buffer, size_t size)
}
static
void
FullWrite
(
FileDescriptor
fd
,
const
void
*
_buffer
,
size_t
size
)
FullWrite
(
FileDescriptor
fd
,
ConstBuffer
<
uint8_t
>
src
)
{
auto
buffer
=
(
const
uint8_t
*
)
_buffer
;
while
(
size
>
0
)
{
size_t
nbytes
=
WriteOrThrow
(
fd
,
buffer
,
size
);
while
(
!
src
.
empty
())
{
size_t
nbytes
=
WriteOrThrow
(
fd
,
src
.
data
,
src
.
size
);
if
(
nbytes
==
0
)
throw
std
::
runtime_error
(
"Write failed"
);
buffer
+=
nbytes
;
size
-=
nbytes
;
src
.
skip_front
(
nbytes
);
}
}
static
void
FullWrite
(
FileDescriptor
fd
,
ConstBuffer
<
void
>
src
)
{
FullWrite
(
fd
,
ConstBuffer
<
uint8_t
>::
FromVoid
(
src
));
}
static
size_t
ReadFrames
(
FileDescriptor
fd
,
void
*
_buffer
,
size_t
size
,
size_t
frame_size
)
{
...
...
@@ -177,7 +180,7 @@ try {
break
;
auto
dest
=
filter
->
FilterPCM
({(
const
void
*
)
buffer
,
(
size_t
)
nbytes
});
FullWrite
(
output_fd
,
dest
.
data
,
dest
.
size
);
FullWrite
(
output_fd
,
dest
);
}
/* cleanup and exit */
...
...
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