Home
last modified time | relevance | path

Searched refs:channel_counts (Results 1 – 3 of 3) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dlibfdk-aacdec.c117 int channel_counts[0x24] = { 0 }; in get_stream_info() local
143 if (ctype <= ACT_NONE || ctype >= FF_ARRAY_ELEMS(channel_counts)) { in get_stream_info()
147 channel_counts[ctype]++; in get_stream_info()
152 channel_counts[ACT_FRONT], channel_counts[ACT_SIDE], in get_stream_info()
153 channel_counts[ACT_BACK], channel_counts[ACT_LFE], in get_stream_info()
154 channel_counts[ACT_FRONT_TOP] + channel_counts[ACT_SIDE_TOP] + in get_stream_info()
155 channel_counts[ACT_BACK_TOP] + channel_counts[ACT_TOP]); in get_stream_info()
157 switch (channel_counts[ACT_FRONT]) { in get_stream_info()
174 channel_counts[ACT_FRONT]); in get_stream_info()
178 if (channel_counts[ACT_SIDE] > 0) { in get_stream_info()
[all …]
/third_party/ffmpeg/libavfilter/
Dbuffersink.c56 int *channel_counts; ///< list of accepted channel counts member
74 int nb_counts = NB_ITEMS(buf->channel_counts); in cleanup_redundant_layouts()
79 if (buf->channel_counts[i] < 64) in cleanup_redundant_layouts()
80 counts |= (uint64_t)1 << buf->channel_counts[i]; in cleanup_redundant_layouts()
296 CHECK_LIST_SIZE(channel_counts) in asink_query_formats()
318 for (i = 0; i < NB_ITEMS(buf->channel_counts); i++) { in asink_query_formats()
319 layout = FF_COUNT2LAYOUT(buf->channel_counts[i]); in asink_query_formats()
390 … OFFSET(channel_counts), AV_OPT_TYPE_BINARY, .flags = FLAGS | AV_OPT_FLAG_DEPRECATED },
Dbuffersink.h119 const int *channel_counts; ///< list of allowed channel counts, terminated by -1 member