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
883e31d5
Commit
883e31d5
authored
Feb 25, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mvp: moved code to mvp_find_sample_rate()
Moved the table lookup code to a separate function.
parent
b4c65cac
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
9 deletions
+17
-9
mvp_plugin.c
src/output/mvp_plugin.c
+17
-9
No files found.
src/output/mvp_plugin.c
View file @
883e31d5
...
...
@@ -83,6 +83,21 @@ static const unsigned mvp_sample_rates[][3] = {
{
15
,
96000
,
48000
}
};
/**
* Translate a sample rate to a MVP sample rate.
*
* @param sample_rate the sample rate in Hz
*/
static
unsigned
mvp_find_sample_rate
(
unsigned
sample_rate
)
{
for
(
unsigned
i
=
0
;
i
<
G_N_ELEMENTS
(
mvp_sample_rates
);
++
i
)
if
(
mvp_sample_rates
[
i
][
1
]
==
sample_rate
)
return
mvp_sample_rates
[
i
][
0
];
return
(
unsigned
)
-
1
;
}
static
bool
mvp_output_test_default_device
(
void
)
{
...
...
@@ -121,7 +136,6 @@ mvp_output_finish(void *data)
static
bool
mvp_set_pcm_params
(
struct
mvp_data
*
md
,
struct
audio_format
*
audio_format
)
{
unsigned
iloop
;
unsigned
mix
[
5
];
switch
(
audio_format
->
channels
)
{
...
...
@@ -165,14 +179,8 @@ mvp_set_pcm_params(struct mvp_data *md, struct audio_format *audio_format)
/*
* if there is an exact match for the frequency, use it.
*/
for
(
iloop
=
0
;
iloop
<
G_N_ELEMENTS
(
mvp_sample_rates
);
iloop
++
)
{
if
(
audio_format
->
sample_rate
==
mvp_sample_rates
[
iloop
][
1
])
{
mix
[
2
]
=
mvp_sample_rates
[
iloop
][
0
];
break
;
}
}
if
(
iloop
>=
G_N_ELEMENTS
(
mvp_sample_rates
))
{
mix
[
2
]
=
mvp_find_sample_rate
(
audio_format
->
sample_rate
);
if
(
mix
[
2
]
==
(
unsigned
)
-
1
)
{
g_warning
(
"Can not find suitable output frequency for %u
\n
"
,
audio_format
->
sample_rate
);
return
false
;
...
...
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