Searched refs:bps (Results 51 - 75 of 170) sorted by relevance

1234567

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dtta.c51 int format, channels, bps; member in struct:TTAContext
106 if (s->bps < 3) {
155 s->bps = (avctx->bits_per_raw_sample + 7) / 8;
168 switch(s->bps) {
193 av_log(avctx, AV_LOG_DEBUG, "format: %d chans: %d bps: %d rate: %d block: %d\n",
241 if (s->bps == 3)
248 ff_tta_filter_init(filter, ff_tta_filter_configs[s->bps-1]);
316 switch (s->bps) {
352 switch (s->bps) {
381 if (s->bps
[all...]
H A Dttaenc.c30 int bps; member in struct:TTAEncContext
53 s->bps = avctx->bits_per_raw_sample >> 3;
119 if ((ret = ff_alloc_packet2(avctx, avpkt, frame->nb_samples * 2 * avctx->channels * s->bps)) < 0)
126 ff_tta_filter_init(&s->ch_ctx[i].filter, ff_tta_filter_configs[s->bps - 1]);
148 switch (s->bps) {
H A Dhuffyuv.h65 int bps; member in struct:HYuvContext
66 int n; // 1<<bps
67 int vlc_n; // number of vlc codes (FFMIN(1<<bps, MAX_VLC_N))
H A Dtak.h135 int bps; member in struct:TAKStreamInfo
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/serial/
H A Dark3116.c117 static inline int calc_divisor(int bps) argument
124 return (12000000 + 2*bps) / (4*bps);
234 int bps = tty_get_baud_rate(tty); local
268 dbg("%s - setting bps to %d", __func__, bps);
270 switch (bps) {
275 if ((bps < 75) || (bps > 3000000))
276 bps
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Daiffdec.c36 static enum CodecID aiff_codec_get_id(int bps) argument
38 if (bps <= 8)
40 if (bps <= 16)
42 if (bps <= 24)
44 if (bps <= 32)
H A Dtta.c45 int i, channels, bps, samplerate, datalen, framelen; local
57 bps = avio_rl16(s->pb);
102 st->codec->bits_per_coded_sample = bps;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/
H A Dresample.c413 int bps = av_get_bytes_per_sample(c->avr->internal_sample_fmt); local
422 memcpy(c->buffer->data[ch] + bps * i,
423 c->buffer->data[ch] + bps * (2 * c->padding_size - i), bps);
425 memset(c->buffer->data[ch] + bps * i, 0, bps);
432 int bps = av_get_bytes_per_sample(c->avr->internal_sample_fmt); local
444 memcpy(c->buffer->data[ch] + bps * (in_leftover + i),
445 c->buffer->data[ch] + bps * (in_leftover - i - 1),
446 bps);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/mmedia/
H A Dsndaiff.cpp137 wxUint16 channels, bps; local
143 data >> channels >> num_samples >> bps >> srate;
147 sndformat.SetBPS(bps);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dzs.h52 #define ZS_BPS_TO_BRG(bps, freq) ((((freq) + (bps)) / (2 * (bps))) - 2)
H A Dsh-sci.h591 * You "speedist"! How will I use my 110bps ASR-33 teletype with paper
599 #define SCBRR_VALUE(bps, clk) ((clk+16*bps)/(16*bps)-1)
606 #define SCBRR_VALUE(bps, clk) (((clk*2)+16*bps)/(32*bps)-1)
609 static inline int scbrr_calc(struct uart_port *port, int bps, int clk) argument
612 return (clk+16*bps)/(32*bps)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/radeon/
H A Dr600_audio.c126 int bps = r600_audio_bits_per_sample(rdev); local
135 changes |= bps != rdev->audio_bits_per_sample;
142 rdev->audio_bits_per_sample = bps;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/tests/fate/
H A Dqt.mak1 FATE_TESTS += fate-8bps
2 fate-8bps: CMD = framecrc -i $(SAMPLES)/8bps/full9iron-partial.mov -pix_fmt rgb24
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/tc/
H A Dtc_util.c134 double bps = strtod(str, &p); local
141 *rate = bps / 8.; /* assume bytes/sec */
147 *rate = (bps * s->scale) / 8.;
458 prefix, sprint_rate(re.bps, b1), re.pps);
496 if (st.bps || st.pps || st.qlen || st.backlog) {
498 if (st.bps || st.pps) {
500 if (st.bps)
501 fprintf(fp, "%s ", sprint_rate(st.bps, b1));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_seeking/
H A Dmain.c106 unsigned channels = 0, bps = 0, samples, i, j; local
122 bps = streaminfo.data.stream_info.bits_per_sample;
132 ok = ok && (bps = FLAC__metadata_iterator_get_block(it)->data.stream_info.bits_per_sample);
145 if(bps != 8 && bps != 16) {
146 printf("ERROR: PCM verification requires 8 or 16 bps, got %u\n", bps);
149 samples = rawfilesize / channels / (bps>>3);
165 if(bps == 8) {
174 else { /* bps
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswresample/
H A Dswresample.c80 a->bps = av_get_bytes_per_sample(fmt);
315 if(count < 0 || count > INT_MAX/2/a->bps/a->ch_count)
323 countb= FFALIGN(count*a->bps, ALIGN);
326 av_assert0(a->bps);
333 a->ch[i]= a->data + i*(a->planar ? countb : a->bps);
334 if(a->planar) memcpy(a->ch[i], old.ch[i], a->count*a->bps);
336 if(!a->planar) memcpy(a->ch[0], old.ch[0], a->count*a->ch_count*a->bps);
346 av_assert0(out->bps == in->bps);
351 memcpy(out->ch[ch], in->ch[ch], count*out->bps);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dmetadata.h22 char *bps; member in struct:metadata_s
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/docs/latex/mmedia/
H A Dsndfpcm.tex23 \func{}{wxSoundFormatPcm}{\param{wxUint32 }{srate = 22500}, \param{wxUint8 }{bps = 8}, \param{wxUint16 }{channels = 2}, \param{bool }{sign = TRUE}, \param{int }{order = wxLITTLE\_ENDIAN}}
38 \func{void}{SetBPS}{\param{wxUint8 }{bps}}
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/include/share/grabbag/
H A Dreplaygain.h48 /* 'bps' must be valid for FLAC, i.e. >=4 and <= 32 */
49 FLAC__bool grabbag__replaygain_analyze(const FLAC__int32 * const input[], FLAC__bool is_stereo, unsigned bps, unsigned samples);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Daiffdec.c41 static enum AVCodecID aiff_codec_get_id(int bps) argument
43 if (bps <= 8)
45 if (bps <= 16)
47 if (bps <= 24)
49 if (bps <= 32)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dtta.c64 int format, channels, bps; member in struct:TTAContext
241 s->bps = (avctx->bits_per_coded_sample + 7) / 8;
254 switch(s->bps) {
279 av_log(s->avctx, AV_LOG_DEBUG, "format: %d chans: %d bps: %d rate: %d block: %d\n",
301 if (s->bps == 2) {
352 if (s->bps == 3)
358 ttafilter_init(&s->ch_ctx[i].filter, ttafilter_configs[s->bps-1][0], ttafilter_configs[s->bps-1][1]);
416 switch (s->bps) {
443 if (s->bps
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/test_streams/
H A Dmain.c202 /* a mono one-sample 16bps stream */
221 /* a stereo one-sample 16bps stream */
242 /* a mono five-sample 16bps stream */
263 /* a stereo five-sample 16bps stream */
284 /* a mono full-scale deflection 8bps stream */
310 /* a mono full-scale deflection 16bps stream */
336 /* a stereo wasted-bits-per-sample 16bps stream */
361 /* a mono full-scale deflection 24bps stream */
387 /* a mono sine-wave 8bps stream */
414 /* a stereo sine-wave 8bps strea
615 generate_aiff(const char *filename, unsigned sample_rate, unsigned channels, unsigned bps, unsigned samples) argument
671 generate_wav(const char *filename, unsigned sample_rate, unsigned channels, unsigned bps, unsigned samples, FLAC__bool strict) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dqt.mak1 FATE_QT-$(call DEMDEC, MOV, EIGHTBPS) += fate-8bps
2 fate-8bps: CMD = framecrc -i $(TARGET_SAMPLES)/8bps/full9iron-partial.mov -pix_fmt rgb24
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/tiff/
H A Dtif_dirinfo.c382 uint32 bps = TIFFhowmany8(tif->tif_dir.td_bitspersample); local
386 return (bps == 4 ? TIFF_FLOAT : TIFF_DOUBLE);
388 return (bps <= 1 ? TIFF_SBYTE :
389 bps <= 2 ? TIFF_SSHORT : TIFF_SLONG);
391 return (bps <= 1 ? TIFF_BYTE :
392 bps <= 2 ? TIFF_SHORT : TIFF_LONG);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dencode.c130 static FLAC__bool EncoderSession_init_encoder(EncoderSession *e, encode_options_t options, FLAC__uint32 channel_mask, unsigned channels, unsigned bps, unsigned sample_rate, const foreign_metadata_t *foreign_metadata, FLACDecoderData *flac_decoder_data);
135 static FLAC__bool format_input(FLAC__int32 *dest[], unsigned wide_samples, FLAC__bool is_big_endian, FLAC__bool is_unsigned_samples, unsigned channels, unsigned bps, unsigned shift, size_t *channel_map);
169 unsigned int channels= 0U, bps= 0U, shift= 0U, sample_rate= 0U, sample_frames= 0U; local
277 bps= x;
278 shift= (bps%8)? 8-(bps%8) : 0; /* SSND data is always byte-aligned, left-justified but format_input() will double-check */
279 bps+= shift;
356 const size_t bytes_per_frame= channels*(bps>>3);
451 if(!EncoderSession_init_encoder(&encoder_session, options.common, /*channel_mask=*/0, channels, bps-shift, sample_rate, options.foreign_metadata, /*flac_decoder_data=*/0))
501 if(!format_input(input_, frames, is_big_endian_pcm, /*is_unsigned_samples=*/false, channels, bps, shif
613 unsigned channels = 0, bps = 0, sample_rate = 0, shift = 0; local
1789 EncoderSession_init_encoder(EncoderSession *e, encode_options_t options, FLAC__uint32 channel_mask, unsigned channels, unsigned bps, unsigned sample_rate, const foreign_metadata_t *foreign_metadata, FLACDecoderData *flac_decoder_data) argument
2374 format_input(FLAC__int32 *dest[], unsigned wide_samples, FLAC__bool is_big_endian, FLAC__bool is_unsigned_samples, unsigned channels, unsigned bps, unsigned shift, size_t *channel_map) argument
[all...]

Completed in 305 milliseconds

1234567