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
8489e90c
Commit
8489e90c
authored
Oct 23, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pcm_channels: added 24 bit implementations
The 24 bit implementation is mostly copy'n'paste of the 16 bit version, except that the data type is int32_t instead of int16_t.
parent
a0bcbb37
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
0 deletions
+84
-0
pcm_channels.c
src/pcm_channels.c
+79
-0
pcm_channels.h
src/pcm_channels.h
+5
-0
No files found.
src/pcm_channels.c
View file @
8489e90c
...
@@ -100,3 +100,82 @@ pcm_convert_channels_16(int8_t dest_channels,
...
@@ -100,3 +100,82 @@ pcm_convert_channels_16(int8_t dest_channels,
return
buf
;
return
buf
;
}
}
static
void
pcm_convert_channels_24_1_to_2
(
int32_t
*
dest
,
const
int32_t
*
src
,
unsigned
num_frames
)
{
while
(
num_frames
--
>
0
)
{
int32_t
value
=
*
src
++
;
*
dest
++
=
value
;
*
dest
++
=
value
;
}
}
static
void
pcm_convert_channels_24_2_to_1
(
int32_t
*
dest
,
const
int32_t
*
src
,
unsigned
num_frames
)
{
while
(
num_frames
--
>
0
)
{
int32_t
a
=
*
src
++
,
b
=
*
src
++
;
*
dest
++
=
(
a
+
b
)
/
2
;
}
}
static
void
pcm_convert_channels_24_n_to_2
(
int32_t
*
dest
,
unsigned
src_channels
,
const
int32_t
*
src
,
unsigned
num_frames
)
{
unsigned
c
;
assert
(
src_channels
>
0
);
while
(
num_frames
--
>
0
)
{
int32_t
sum
=
0
;
int32_t
value
;
for
(
c
=
0
;
c
<
src_channels
;
++
c
)
sum
+=
*
src
++
;
value
=
sum
/
(
int
)
src_channels
;
/* XXX this is actually only mono ... */
*
dest
++
=
value
;
*
dest
++
=
value
;
}
}
const
int32_t
*
pcm_convert_channels_24
(
int8_t
dest_channels
,
int8_t
src_channels
,
const
int32_t
*
src
,
size_t
src_size
,
size_t
*
dest_size_r
)
{
static
int32_t
*
buf
;
static
size_t
len
;
unsigned
num_frames
=
src_size
/
src_channels
/
sizeof
(
*
src
);
unsigned
dest_size
=
num_frames
*
dest_channels
*
sizeof
(
*
src
);
if
(
dest_size
>
len
)
{
len
=
dest_size
;
buf
=
xrealloc
(
buf
,
len
);
}
*
dest_size_r
=
dest_size
;
if
(
src_channels
==
1
&&
dest_channels
==
2
)
pcm_convert_channels_24_1_to_2
(
buf
,
src
,
num_frames
);
else
if
(
src_channels
==
2
&&
dest_channels
==
1
)
pcm_convert_channels_24_2_to_1
(
buf
,
src
,
num_frames
);
else
if
(
dest_channels
==
2
)
pcm_convert_channels_24_n_to_2
(
buf
,
src_channels
,
src
,
num_frames
);
else
{
ERROR
(
"conversion %u->%u channels is not supported
\n
"
,
src_channels
,
dest_channels
);
return
NULL
;
}
return
buf
;
}
src/pcm_channels.h
View file @
8489e90c
...
@@ -27,4 +27,9 @@ pcm_convert_channels_16(int8_t dest_channels,
...
@@ -27,4 +27,9 @@ pcm_convert_channels_16(int8_t dest_channels,
int8_t
src_channels
,
const
int16_t
*
src
,
int8_t
src_channels
,
const
int16_t
*
src
,
size_t
src_size
,
size_t
*
dest_size_r
);
size_t
src_size
,
size_t
*
dest_size_r
);
const
int32_t
*
pcm_convert_channels_24
(
int8_t
dest_channels
,
int8_t
src_channels
,
const
int32_t
*
src
,
size_t
src_size
,
size_t
*
dest_size_r
);
#endif
#endif
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