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
3055c126
Commit
3055c126
authored
Jun 08, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/osx: don't use variable-length arrays
parent
931c3a1d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
OSXOutputPlugin.cxx
src/output/plugins/OSXOutputPlugin.cxx
+10
-2
No files found.
src/output/plugins/OSXOutputPlugin.cxx
View file @
3055c126
...
...
@@ -390,7 +390,11 @@ osx_output_set_device_format(AudioDeviceID dev_id, const AudioStreamBasicDescrip
}
const
size_t
n_streams
=
property_size
/
sizeof
(
AudioStreamID
);
AudioStreamID
streams
[
n_streams
];
static
constexpr
size_t
MAX_STREAMS
=
64
;
if
(
n_streams
>
MAX_STREAMS
)
throw
std
::
runtime_error
(
"Too many streams"
);
AudioStreamID
streams
[
MAX_STREAMS
];
err
=
AudioObjectGetPropertyData
(
dev_id
,
&
aopa
,
0
,
NULL
,
&
property_size
,
streams
);
if
(
err
!=
noErr
)
{
throw
FormatRuntimeError
(
"Cannot get streams: %d
\n
"
,
err
);
...
...
@@ -424,7 +428,11 @@ osx_output_set_device_format(AudioDeviceID dev_id, const AudioStreamBasicDescrip
throw
FormatRuntimeError
(
"Unable to get format size s for stream %d. Error = %s"
,
streams
[
i
],
err
);
const
size_t
format_count
=
property_size
/
sizeof
(
AudioStreamRangedDescription
);
AudioStreamRangedDescription
format_list
[
format_count
];
static
constexpr
size_t
MAX_FORMATS
=
256
;
if
(
format_count
>
MAX_FORMATS
)
throw
std
::
runtime_error
(
"Too many formats"
);
AudioStreamRangedDescription
format_list
[
MAX_FORMATS
];
err
=
AudioObjectGetPropertyData
(
stream
,
&
aopa
,
0
,
NULL
,
&
property_size
,
format_list
);
if
(
err
!=
noErr
)
throw
FormatRuntimeError
(
"Unable to get available formats for stream %d. Error = %s"
,
streams
[
i
],
err
);
...
...
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