mirror of https://git.ffmpeg.org/ffmpeg.git
avutil/channel_layout: fix some (un)initialization issues in av_channel_layout_from_string()
Also make initialization/uninitialization behaviour more explicit in the docs, and make sure we do not leak a channel map on error. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
95d31db82c
commit
a688fbfb88
|
@ -302,6 +302,10 @@ int av_channel_layout_from_string(AVChannelLayout *channel_layout,
|
|||
}
|
||||
}
|
||||
|
||||
/* This function is a channel layout initializer, so we have to
|
||||
* zero-initialize before we start setting fields individually. */
|
||||
memset(channel_layout, 0, sizeof(*channel_layout));
|
||||
|
||||
/* ambisonic */
|
||||
if (!strncmp(str, "ambisonic ", 10)) {
|
||||
const char *p = str + 10;
|
||||
|
@ -343,6 +347,7 @@ int av_channel_layout_from_string(AVChannelLayout *channel_layout,
|
|||
for (i = 0; i < extra.nb_channels; i++) {
|
||||
enum AVChannel ch = av_channel_layout_channel_from_index(&extra, i);
|
||||
if (CHAN_IS_AMBI(ch)) {
|
||||
av_channel_layout_uninit(channel_layout);
|
||||
av_channel_layout_uninit(&extra);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
|
|
@ -512,10 +512,14 @@ int av_channel_layout_from_mask(AVChannelLayout *channel_layout, uint64_t mask);
|
|||
* - the number of unordered channels (eg. "4C" or "4 channels")
|
||||
* - the ambisonic order followed by optional non-diegetic channels (eg.
|
||||
* "ambisonic 2+stereo")
|
||||
* On error, the channel layout will remain uninitialized, but not necessarily
|
||||
* untouched.
|
||||
*
|
||||
* @param channel_layout input channel layout
|
||||
* @param channel_layout uninitialized channel layout for the result
|
||||
* @param str string describing the channel layout
|
||||
* @return 0 channel layout was detected, AVERROR_INVALIDATATA otherwise
|
||||
* @return 0 on success parsing the channel layout
|
||||
* AVERROR(EINVAL) if an invalid channel layout string was provided
|
||||
* AVERROR(ENOMEM) if there was not enough memory
|
||||
*/
|
||||
int av_channel_layout_from_string(AVChannelLayout *channel_layout,
|
||||
const char *str);
|
||||
|
|
Loading…
Reference in New Issue