Searched refs:chl (Results 1 - 7 of 7) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | af_join.c | 252 static enum AVChannel channel_list_pop(ChannelList *chl, int idx) in channel_list_pop() argument 254 enum AVChannel ret = chl->ch[idx]; in channel_list_pop() 255 memmove(chl->ch + idx, chl->ch + idx + 1, in channel_list_pop() 256 (chl->nb_ch - idx - 1) * sizeof(*chl->ch)); in channel_list_pop() 257 chl->nb_ch--; in channel_list_pop() 262 * If ch is present in chl, remove it from the list and return it. 265 static enum AVChannel channel_list_pop_ch(ChannelList *chl, enum AVChannel ch) in channel_list_pop_ch() argument 267 for (int i = 0; i < chl in channel_list_pop_ch() 316 AVChannelLayout *chl = &inlink->ch_layout; join_config_output() local [all...] |
H A D | src_movie.c | 194 AVChannelLayout chl = { 0 }; in guess_channel_layout() local 196 av_channel_layout_default(&chl, dec_par->ch_layout.nb_channels); in guess_channel_layout() 198 if (!KNOWN(&chl)) { in guess_channel_layout() 206 av_channel_layout_describe(&chl, buf, sizeof(buf)); in guess_channel_layout() 211 return av_channel_layout_copy(&dec_par->ch_layout, &chl); in guess_channel_layout()
|
H A D | f_ebur128.c | 457 const enum AVChannel chl = av_channel_layout_channel_from_index(&outlink->ch_layout, i); in config_audio_output() local 458 if (chl == AV_CHAN_LOW_FREQUENCY || chl == AV_CHAN_LOW_FREQUENCY_2) { in config_audio_output() 460 } else if (chl < 64 && (1ULL << chl) & BACK_MASK) { in config_audio_output()
|
/third_party/ffmpeg/libavutil/ |
H A D | channel_layout.c | 930 int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1) in av_channel_layout_compare() argument 935 if (chl->nb_channels != chl1->nb_channels) in av_channel_layout_compare() 939 if ((chl->order == AV_CHANNEL_ORDER_UNSPEC) != in av_channel_layout_compare() 943 else if (chl->order == AV_CHANNEL_ORDER_UNSPEC) in av_channel_layout_compare() 947 if ((chl->order == AV_CHANNEL_ORDER_NATIVE || in av_channel_layout_compare() 948 chl->order == AV_CHANNEL_ORDER_AMBISONIC) && in av_channel_layout_compare() 949 chl->order == chl1->order) in av_channel_layout_compare() 950 return chl->u.mask != chl1->u.mask; in av_channel_layout_compare() 953 for (i = 0; i < chl->nb_channels; i++) in av_channel_layout_compare() 954 if (av_channel_layout_channel_from_index(chl, in av_channel_layout_compare() [all...] |
H A D | channel_layout.h | 737 * @param chl input channel layout 739 * @return 0 if chl and chl1 are equal, 1 if they are not equal. A negative 742 int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1);
|
/third_party/python/Modules/ |
H A D | selectmodule.c | 2116 struct kevent *chl = NULL; in select_kqueue_control_impl() local 2168 chl = PyMem_New(struct kevent, nchanges); in select_kqueue_control_impl() 2169 if (chl == NULL) { in select_kqueue_control_impl() 2182 chl[i] = ((kqueue_event_Object *)ei)->e; in select_kqueue_control_impl() 2203 gotevents = kevent(self->kqfd, chl, nchanges, in select_kqueue_control_impl() 2246 PyMem_Free(chl); in select_kqueue_control_impl() 2251 PyMem_Free(chl); in select_kqueue_control_impl()
|
/third_party/ffmpeg/libavcodec/ |
H A D | audiotoolboxenc.c | 205 AVChannelLayout chl; in get_aac_tag() member 225 if (!av_channel_layout_compare(in_layout, &map[i].chl)) in get_aac_tag()
|
Completed in 10 milliseconds