Searched refs:channels (Results 151 - 175 of 1277) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dpcmdec.c32 int channels; member in struct:PCMAudioDemuxerContext
48 st->codec->channels = s1->channels;
56 st->codec->bits_per_coded_sample * st->codec->channels / 8;
64 { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
150 { "channels", "", offsetof(PCMAudioDemuxerContext, channels), AV_OPT_TYPE_INT, {.i64 = 1}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
H A Davr.c32 if (!AV_RB16(p->buf+12) || AV_RB16(p->buf+12) > 256) // channels
56 st->codec->channels = 1;
58 st->codec->channels = 2;
84 st->codec->block_align = bps * st->codec->channels / 8;
H A Dcafenc.c54 static uint32_t samples_per_packet(enum AVCodecID codec_id, int channels, int block_align) { argument
90 return 2048 * channels;
94 return (block_align - 4 * channels) * 8 / (4 * channels) + 1;
96 return (block_align - 7 * channels) * 2 / channels + 2;
149 frame_size = samples_per_packet(enc->codec_id, enc->channels, enc->block_align);
162 avio_wb32(pb, enc->channels); //< mChannelsPerFrame
262 avio_wb64(pb, caf->packets * samples_per_packet(enc->codec_id, enc->channels, enc->block_align)); ///< mNumberValidFrames
H A Ddaudenc.c27 if (codec->channels!=6 || codec->sample_rate!=96000)
H A Dg722.c38 st->codec->channels = 1;
H A Doggparsespeex.c67 st->codec->channels = AV_RL32(p + 48);
68 if (st->codec->channels < 1 || st->codec->channels > 2) {
72 st->codec->channel_layout = st->codec->channels == 1 ? AV_CH_LAYOUT_MONO :
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dwavpack.mak42 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-channels-monofloat
43 fate-wavpack-channels-monofloat: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/num_channels/mono_float-partial.wv -f f32le
45 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-channels-monoint
46 fate-wavpack-channels-monoint: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/num_channels/mono_16bit_int.wv -f s16le
48 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-channels-4.0
49 fate-wavpack-channels-4.0: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/num_channels/edward_4.0_16bit-partial.wv -f s16le
51 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-channels-5.1
52 fate-wavpack-channels-5.1: CMD = md5 -i $(TARGET_SAMPLES)/wavpack/num_channels/panslab_sample_5.1_16bit-partial.wv -f s16le
54 FATE_WAVPACK-$(call DEMDEC, WV, WAVPACK) += fate-wavpack-channels-6.1
55 fate-wavpack-channels
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/wireless/iwmc3200wifi/
H A Deeprom.c71 {"HT channels capabilities", IWM_EEPROM_FAT_CHANNELS_CAP_OFF,
158 u16 *channels, i; local
160 channels = (u16 *)iwm_eeprom_access(iwm, IWM_EEPROM_FAT_CHANNELS_CAP);
161 if (IS_ERR(channels))
162 return PTR_ERR(channels);
168 if (!(channels[i] & IWM_EEPROM_FAT_CHANNEL_ENABLED))
174 if (!(channels[i] & IWM_EEPROM_FAT_CHANNEL_ENABLED))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Ddsddec.c98 s = av_malloc_array(sizeof(DSDContext), avctx->channels);
102 for (i = 0; i < avctx->channels; i++) {
128 frame->nb_samples = avpkt->size / avctx->channels;
135 src_stride = avctx->channels;
141 for (i = 0; i < avctx->channels; i++) {
149 return frame->nb_samples * avctx->channels;
H A Dpsymodel.c38 ctx->ch = av_mallocz_array(sizeof(ctx->ch[0]), avctx->channels * 2);
45 /* assign channels to groups (with virtual channels for coupling) */
115 ctx->fstate = av_mallocz_array(sizeof(ctx->fstate[0]), avctx->channels);
116 for (i = 0; i < avctx->channels; i++)
125 void ff_psy_preprocess(struct FFPsyPreprocessContext *ctx, float **audio, int channels) argument
132 for (ch = 0; ch < channels; ch++)
143 for (i = 0; i < ctx->avctx->channels; i++)
H A Dmlp_parser.c103 int channels = 0, i; local
106 channels += thd_chancount[i] * ((chanmap >> i) & 1);
108 return channels;
338 if(!avctx->channels || !avctx->channel_layout) {
345 avctx->channels = 2;
354 avctx->channels = 2;
357 avctx->channels = mh.channels_mlp;
366 avctx->channels = 2;
370 avctx->channels = mh.channels_thd_stream1;
379 avctx->channels
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dpulse.c44 int channels; member in struct:PulseData
80 pd->channels };
110 st->codec->channels = pd->channels;
115 (pd->sample_rate * pd->channels * av_get_bits_per_sample(codec_id));
169 { "channels", "number of audio channels", OFFSET(channels), AV_OPT_TYPE_INT, {.dbl = 2}, 1, INT_MAX, D },
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dau.c63 avio_wb32(pb, (uint32_t)enc->channels);
127 unsigned int id, channels, rate; local
140 channels = avio_rb32(pb);
161 st->codec->channels = channels;
175 s->streams[0]->codec->channels *
H A Dmp3enc.c141 int64_t xing_offset = (codec->channels == 2) ? 32 : 17;
144 int srate_idx, i, channels; local
156 switch (codec->channels) {
157 case 1: channels = MPA_MONO; break;
158 case 2: channels = MPA_STEREO; break;
159 default: av_log(s, AV_LOG_ERROR, "Unsupported number of channels.\n"); return;
166 header |= channels << 6;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/oss/
H A Dcopy.c39 nchannels = plugin->src_format.channels;
78 if (snd_BUG_ON(src_format->channels != dst_format->channels))
H A Dpcm_plugin.c61 size = frames * format->channels * width;
76 for (channel = 0; channel < format->channels; channel++, c++) {
82 c->area.step = format->channels * width;
85 if (snd_BUG_ON(size % format->channels))
87 size /= format->channels;
88 for (channel = 0; channel < format->channels; channel++, c++) {
137 struct snd_pcm_plugin_channel **channels)
139 *channels = plugin->buf_channels;
151 unsigned int channels; local
171 channels
135 snd_pcm_plugin_client_channels(struct snd_pcm_plugin *plugin, snd_pcm_uframes_t frames, struct snd_pcm_plugin_channel **channels) argument
538 snd_pcm_plug_client_channels_buf(struct snd_pcm_substream *plug, char *buf, snd_pcm_uframes_t count, struct snd_pcm_plugin_channel **channels) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/alsa-lib-1.0.26/src/conf/cards/
H A DENS1370.conf89 channels 2
98 channels 2
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dalsa-audio-dec.c72 ret = ff_alsa_open(s1, SND_PCM_STREAM_CAPTURE, &s->sample_rate, s->channels,
82 st->codec->channels = s->channels;
137 { "channels", "", offsetof(AlsaData, channels), AV_OPT_TYPE_INT, {.i64 = 2}, 1, INT_MAX, AV_OPT_FLAG_DECODING_PARAM },
H A Doss_audio.c53 int channels; member in struct:__anon3308
129 tmp = (s->channels == 2);
166 s->channels = st->codec->channels;
232 st->codec->channels = s->channels;
264 cur_time -= (bdelay * 1000000LL) / (s->sample_rate * s->channels);
269 if (s->flip_left && s->channels == 2) {
292 { "channels", "", offsetof(AudioData, channels), AV_OPT_TYPE_IN
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/
H A Ddither.h69 int channels, int sample_rate, int apply_map);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/
H A Du_audio.h37 int channels; member in struct:gaudio_snd_dev
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/
H A Dreplaygain_synthesis.h49 size_t FLAC__replaygain_synthesis__apply_gain(FLAC__byte *data_out, FLAC__bool little_endian_data_out, FLAC__bool unsigned_data_out, const FLAC__int32 * const input[], unsigned wide_samples, unsigned channels, const unsigned source_bps, const unsigned target_bps, const double scale, const FLAC__bool hard_limit, FLAC__bool do_dithering, DitherContext *dither_context);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_seeking/
H A Dmain.c41 unsigned channels; member in struct:__anon3894
106 unsigned channels = 0, bps = 0, samples, i, j; local
121 channels = streaminfo.data.stream_info.channels;
131 ok = ok && (channels = FLAC__metadata_iterator_get_block(it)->data.stream_info.channels);
141 if(channels > 2) {
142 printf("ERROR: PCM verification requires 1 or 2 channels, got %u\n", channels);
149 samples = rawfilesize / channels / (bp
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Daac_ac3_parser.h47 int channels; member in struct:AACAC3ParseContext
H A Dbinkaudio.c54 int channels; member in struct:__anon1882
94 if (avctx->channels > MAX_CHANNELS) {
95 av_log(avctx, AV_LOG_ERROR, "too many channels: %d\n", avctx->channels);
103 sample_rate *= avctx->channels;
104 s->channels = 1;
106 frame_len_bits += av_log2(avctx->channels);
108 s->channels = avctx->channels;
113 s->block_size = (s->frame_len - s->overlap_len) * s->channels;
[all...]

Completed in 130 milliseconds

1234567891011>>