Searched refs:bps (Results 1 - 25 of 170) sorted by relevance

1234567

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/arm/
H A Dflacdsp_init_arm.c28 int bps)
30 if (bps <= 16 && CONFIG_FLAC_DECODER)
27 ff_flacdsp_init_arm(FLACDSPContext *c, enum AVSampleFormat fmt, int bps) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dflacdsp_init.c31 int bps)
37 if (bps > 16 && CONFIG_FLAC_DECODER)
41 if (bps > 16 && CONFIG_FLAC_DECODER)
30 ff_flacdsp_init_x86(FLACDSPContext *c, enum AVSampleFormat fmt, int bps) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/test/
H A Dtest_streams.sh67 bps=$3
70 echo -n "$name (--channels=$channels --bps=$bps $encode_options): encode..."
71 cmd="run_flac --verify --silent --force --force-raw-format --endian=little --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --no-padding $name.raw"
96 bps=$3
107 cmd="run_flac --verify --silent --force --force-raw-format --endian=little --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --no-padding --stdout $name.raw"
112 cmd="run_flac --verify --silent --force --force-raw-format --endian=little --sign=signed --sample-rate=44100 --bps=$bps
[all...]
H A Dtest_bins.sh66 bps=$3
69 echo -n "$name.bin (--channels=$channels --bps=$bps $encode_options): encode..."
70 cmd="run_flac --verify --silent --force --force-raw-format --endian=big --sign=signed --sample-rate=44100 --bps=$bps --channels=$channels $encode_options --no-padding $name.bin"
97 for bps in 8 16 24 ; do
101 test_file $binfile $channels $bps "-$opt $extras $blocksize $disable"
106 test_file $binfile $channels $bps "--lax -b 16384 -m -r 8 -l 32 -e -p $disable"
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dflacdsp.h34 void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt, int bps);
35 void ff_flacdsp_init_arm(FLACDSPContext *c, enum AVSampleFormat fmt, int bps);
36 void ff_flacdsp_init_x86(FLACDSPContext *c, enum AVSampleFormat fmt, int bps);
H A Dflacdec.c74 int need32 = s->bps > 16;
83 s->sample_shift = 32 - s->bps;
89 s->sample_shift = 16 - s->bps;
115 ff_flacdsp_init(&s->dsp, avctx->sample_fmt, s->bps);
127 av_log(avctx, AV_LOG_DEBUG, " Bits: %d\n", s->bps);
175 ff_flacdsp_init(&s->dsp, s->avctx->sample_fmt, s->bps);
259 int pred_order, int bps)
267 decoded[i] = get_sbits_long(&s->gb, bps);
310 int bps)
318 decoded[i] = get_sbits_long(&s->gb, bps);
258 decode_subframe_fixed(FLACContext *s, int32_t *decoded, int pred_order, int bps) argument
309 decode_subframe_lpc(FLACContext *s, int32_t *decoded, int pred_order, int bps) argument
349 int bps = s->bps; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dpvfdec.c37 int bps, channels, sample_rate; local
44 &bps) != 3)
47 if (channels <= 0 || bps <= 0 || sample_rate <= 0)
57 st->codec->codec_id = ff_get_pcm_codec_id(bps, 0, 1, 0xFFFF);
58 st->codec->bits_per_coded_sample = bps;
59 st->codec->block_align = bps * st->codec->channels / 8;
H A Drsodec.c33 int id, rate, bps; local
50 bps = av_get_bits_per_sample(codec);
51 if (!bps) {
61 st->duration = (size * 8) / bps;
H A Dau.c77 int bps; local
108 bps = av_get_bits_per_sample(codec);
111 bps = 2;
115 bps = bpcss[id - 23];
117 } else if (!bps) {
122 if (channels == 0 || channels >= INT_MAX / (BLOCK_SIZE * bps >> 3)) {
140 st->codec->bits_per_coded_sample = bps;
141 st->codec->bit_rate = channels * rate * bps;
142 st->codec->block_align = FFMAX(bps * st->codec->channels / 8, 1);
144 st->duration = (((int64_t)data_size)<<3) / (st->codec->channels * (int64_t)bps);
[all...]
H A Davr.c34 if (AV_RB16(p->buf+14) > 256) // bps
42 uint16_t chan, sign, bps; local
64 st->codec->bits_per_coded_sample = bps = avio_rb16(s->pb);
78 st->codec->codec_id = ff_get_pcm_codec_id(bps, 0, 1, sign);
80 avpriv_request_sample(s, "Bps %d and sign %d", bps, sign);
84 st->codec->block_align = bps * st->codec->channels / 8;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Drsodec.c33 int id, rate, bps; local
50 bps = av_get_bits_per_sample(codec);
51 if (!bps) {
61 st->duration = (size * 8) / bps;
77 int bps = av_get_bits_per_sample(s->streams[0]->codec->codec_id); local
78 int ret = av_get_packet(s->pb, pkt, BLOCK_SIZE * bps >> 3);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tools/
H A Daviocat.c35 int bps = 0, duration = 0, ret, i; local
47 bps = atoi(argv[i + 1]);
69 if (duration && !bps) {
76 bps = size / duration;
94 if (bps) {
96 while ((av_gettime_relative() - start_time) * bps / AV_TIME_BASE < stream_pos)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/tc/
H A Dtc_core.h10 int tc_calc_rtable(unsigned bps, __u32 *rtab, int cell_log, unsigned mtu, unsigned mpu);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/mmedia/
H A Dsndpcm.cpp23 wxSoundFormatPcm::wxSoundFormatPcm(wxUint32 srate, wxUint8 bps, argument
26 : m_srate(srate), m_bps(bps), m_nchan(nchannels), m_order(order),
40 void wxSoundFormatPcm::SetBPS(wxUint8 bps) argument
42 m_bps = bps;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavdevice/
H A Dsndio_common.h38 int bps; member in struct:__anon2058
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/tools/
H A Daviocat.c34 int bps = 0, ret, i; local
46 bps = atoi(argv[i + 1]);
81 if (bps) {
83 while ((av_gettime() - start_time)*bps/AV_TIME_BASE < stream_pos)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/bench/
H A Dmem-memcpy.c98 double bps = 0.0; local
157 bps = (double)((double)length / timeval2double(&tv_diff));
166 if (bps < K)
167 printf(" %14lf B/Sec\n", bps);
168 else if (bps < K * K)
169 printf(" %14lfd KB/Sec\n", bps / 1024);
170 else if (bps < K * K * K)
171 printf(" %14lf MB/Sec\n", bps / 1024 / 1024);
174 bps / 1024 / 1024 / 1024);
183 printf("%lf\n", bps);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/mmedia/
H A Dsndpcm.h22 wxSoundFormatPcm(wxUint32 srate = 22500, wxUint8 bps = 8,
28 void SetBPS(wxUint8 bps);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/examples/c/decode/file/
H A Dmain.c42 static unsigned bps = 0; variable
113 const FLAC__uint32 total_size = (FLAC__uint32)(total_samples * channels * (bps/8));
122 if(channels != 2 || bps != 16) {
137 !write_little_endian_uint32(f, sample_rate * channels * (bps/8)) ||
138 !write_little_endian_uint16(f, (FLAC__uint16)(channels * (bps/8))) || /* block align */
139 !write_little_endian_uint16(f, (FLAC__uint16)bps) ||
172 bps = metadata->data.stream_info.bits_per_sample;
176 fprintf(stderr, "bits per sample: %u\n", bps);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/examples/cpp/decode/file/
H A Dmain.cpp38 static unsigned bps = 0; variable
118 const FLAC__uint32 total_size = (FLAC__uint32)(total_samples * channels * (bps/8));
125 if(channels != 2 || bps != 16) {
140 !write_little_endian_uint32(f, sample_rate * channels * (bps/8)) ||
141 !write_little_endian_uint16(f, (FLAC__uint16)(channels * (bps/8))) || /* block align */
142 !write_little_endian_uint16(f, (FLAC__uint16)bps) ||
173 bps = metadata->data.stream_info.bits_per_sample;
177 fprintf(stderr, "bits per sample: %u\n", bps);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dflac.h65 int bps; /**< bits-per-sample */\
126 * @param bps bits-per-sample
128 int ff_flac_get_max_frame_size(int blocksize, int ch, int bps);
H A Dflac.c74 fi->bps = sample_size_table[bps_code];
132 int ff_flac_get_max_frame_size(int blocksize, int ch, int bps) argument
141 count += ch * ((7+bps+7)/8); /* subframe headers */
144 count += (( 2*bps+1) * blocksize + 7) / 8;
146 count += ( ch*bps * blocksize + 7) / 8;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/include/linux/
H A Dgen_stats.h29 * @bps: current byte rate
34 __u32 bps; member in struct:gnet_stats_rate_est
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Dsndio_common.h38 int bps; member in struct:SndioData
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/include/winamp2/
H A Din2.h61 void (*SAAddPCMData)(void *PCMData, int nch, int bps, int timestamp);
74 void (*VSAAddPCMData)(void *PCMData, int nch, int bps, int timestamp); // sets the vis data directly from PCM data
97 int (*dsp_dosamples)(short int *samples, int numsamples, int bps, int nch, int srate);

Completed in 151 milliseconds

1234567