Commit 3596de55 authored by Anton Khirnov's avatar Anton Khirnov

audioconvert: use av_popcount64 in av_get_channel_layout_nb_channels

parent d7d071a6
...@@ -175,11 +175,7 @@ void av_get_channel_layout_string(char *buf, int buf_size, ...@@ -175,11 +175,7 @@ void av_get_channel_layout_string(char *buf, int buf_size,
int av_get_channel_layout_nb_channels(uint64_t channel_layout) int av_get_channel_layout_nb_channels(uint64_t channel_layout)
{ {
int count; return av_popcount64(channel_layout);
uint64_t x = channel_layout;
for (count = 0; x; count++)
x &= x-1; // unset lowest set bit
return count;
} }
uint64_t av_get_default_channel_layout(int nb_channels) uint64_t av_get_default_channel_layout(int nb_channels)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment