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
4f293ecd
Commit
4f293ecd
authored
Mar 16, 2011
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
audio_format, output_thread: add more audio_format_valid() assertions
parent
b6303313
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
0 deletions
+13
-0
audio_format.h
src/audio_format.h
+6
-0
audio_parser.c
src/audio_parser.c
+1
-0
output_control.c
src/output_control.c
+1
-0
output_thread.c
src/output_thread.c
+5
-0
No files found.
src/audio_format.h
View file @
4f293ecd
...
...
@@ -22,6 +22,7 @@
#include <stdint.h>
#include <stdbool.h>
#include <assert.h>
enum
sample_format
{
SAMPLE_FORMAT_UNDEFINED
=
0
,
...
...
@@ -219,6 +220,9 @@ static inline void
audio_format_mask_apply
(
struct
audio_format
*
af
,
const
struct
audio_format
*
mask
)
{
assert
(
audio_format_valid
(
af
));
assert
(
audio_format_mask_valid
(
mask
));
if
(
mask
->
sample_rate
!=
0
)
af
->
sample_rate
=
mask
->
sample_rate
;
...
...
@@ -227,6 +231,8 @@ audio_format_mask_apply(struct audio_format *af,
if
(
mask
->
channels
!=
0
)
af
->
channels
=
mask
->
channels
;
assert
(
audio_format_valid
(
af
));
}
/**
...
...
src/audio_parser.c
View file @
4f293ecd
...
...
@@ -192,6 +192,7 @@ audio_format_parse(struct audio_format *dest, const char *src,
}
audio_format_init
(
dest
,
rate
,
sample_format
,
channels
);
assert
(
audio_format_valid
(
dest
));
return
true
;
}
src/output_control.c
View file @
4f293ecd
...
...
@@ -115,6 +115,7 @@ audio_output_open(struct audio_output *ao,
{
bool
open
;
assert
(
audio_format_valid
(
audio_format
));
assert
(
mp
!=
NULL
);
if
(
ao
->
fail_timer
!=
NULL
)
{
...
...
src/output_thread.c
View file @
4f293ecd
...
...
@@ -95,6 +95,8 @@ ao_filter_open(struct audio_output *ao,
struct
audio_format
*
audio_format
,
GError
**
error_r
)
{
assert
(
audio_format_valid
(
audio_format
));
/* the replay_gain filter cannot fail here */
if
(
ao
->
replay_gain_filter
!=
NULL
)
filter_open
(
ao
->
replay_gain_filter
,
audio_format
,
error_r
);
...
...
@@ -136,6 +138,7 @@ ao_open(struct audio_output *ao)
assert
(
!
ao
->
open
);
assert
(
ao
->
pipe
!=
NULL
);
assert
(
ao
->
chunk
==
NULL
);
assert
(
audio_format_valid
(
&
ao
->
in_audio_format
));
if
(
ao
->
fail_timer
!=
NULL
)
{
/* this can only happen when this
...
...
@@ -164,6 +167,8 @@ ao_open(struct audio_output *ao)
return
;
}
assert
(
audio_format_valid
(
filter_audio_format
));
ao
->
out_audio_format
=
*
filter_audio_format
;
audio_format_mask_apply
(
&
ao
->
out_audio_format
,
&
ao
->
config_audio_format
);
...
...
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