Searched refs:channel_layout_map (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Daudioconvert.c64 } channel_layout_map[] = { variable in typeref:struct:__anon2291
84 if (!strcmp(channel_layout_map[i].name, name))
85 return channel_layout_map[i].layout;
87 } while (channel_layout_map[i].name);
100 for (i = 0; channel_layout_map[i].name; i++)
101 if (nb_channels == channel_layout_map[i].nb_channels &&
102 channel_layout == channel_layout_map[i].layout) {
103 av_strlcpy(buf, channel_layout_map[i].name, buf_size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dchannel_layout.c78 } channel_layout_map[] = { variable in typeref:struct:__anon3674
118 for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++) {
119 if (strlen(channel_layout_map[i].name) == name_len &&
120 !memcmp(channel_layout_map[i].name, name, name_len))
121 return channel_layout_map[i].layout;
197 for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map); i++)
198 if (nb_channels == channel_layout_map[i].nb_channels &&
199 channel_layout == channel_layout_map[i].layout) {
200 av_bprintf(bp, "%s", channel_layout_map[i].name);
239 for (i = 0; i < FF_ARRAY_ELEMS(channel_layout_map);
[all...]

Completed in 50 milliseconds