summaryrefslogtreecommitdiff
path: root/libavutil/channel_layout.c
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2022-03-15 20:55:53 +0100
committerMarton Balint <cus@passwd.hu>2022-03-15 23:19:24 +0100
commitab7a929684c64182488b38312e3111ac53553efd (patch)
tree514bb40c6012df67a83f4d3cf1cd2964f57a8e72 /libavutil/channel_layout.c
parent92f27c6728fe08c36b3e09cc64421b8c7388634b (diff)
avutil/channel_layout: do not copy alloc new map for extra channel layout
Also use av_channel_layout_bprint directly for describing channel layout for extra channels. Signed-off-by: Marton Balint <cus@passwd.hu>
Diffstat (limited to 'libavutil/channel_layout.c')
-rw-r--r--libavutil/channel_layout.c17
1 files changed, 4 insertions, 13 deletions
diff --git a/libavutil/channel_layout.c b/libavutil/channel_layout.c
index f107a2dbd8..3615a34d27 100644
--- a/libavutil/channel_layout.c
+++ b/libavutil/channel_layout.c
@@ -705,29 +705,20 @@ static int try_describe_ambisonic(AVBPrint *bp, const AVChannelLayout *channel_l
nb_ambi_channels = (order + 1) * (order + 1);
if (nb_ambi_channels < channel_layout->nb_channels) {
AVChannelLayout extra = { 0 };
- char buf[128];
if (channel_layout->order == AV_CHANNEL_ORDER_AMBISONIC) {
extra.order = AV_CHANNEL_ORDER_NATIVE;
extra.nb_channels = av_popcount64(channel_layout->u.mask);
extra.u.mask = channel_layout->u.mask;
} else {
- const AVChannelCustom *map = channel_layout->u.map;
-
extra.order = AV_CHANNEL_ORDER_CUSTOM;
extra.nb_channels = channel_layout->nb_channels - nb_ambi_channels;
- extra.u.map = av_calloc(extra.nb_channels, sizeof(*extra.u.map));
- if (!extra.u.map)
- return AVERROR(ENOMEM);
-
- memcpy(extra.u.map, &map[nb_ambi_channels],
- sizeof(*extra.u.map) * extra.nb_channels);
+ extra.u.map = channel_layout->u.map + nb_ambi_channels;
}
- av_channel_layout_describe(&extra, buf, sizeof(buf));
- av_channel_layout_uninit(&extra);
-
- av_bprintf(bp, "+%s", buf);
+ av_bprint_chars(bp, '+', 1);
+ av_channel_layout_describe_bprint(&extra, bp);
+ /* Not calling uninit here on extra because we don't own the u.map pointer */
}
return 0;