Lines Matching defs:bps
90 fi->bps = sample_size_table[bps_code];
148 int ff_flac_get_max_frame_size(int blocksize, int ch, int bps)
157 count += ch * ((7+bps+7)/8); /* subframe headers */
160 count += (( 2*bps+1) * blocksize + 7) / 8;
162 count += ( ch*bps * blocksize + 7) / 8;
230 s->bps = get_bits(&gb, 5) + 1;
232 if (s->bps < 4) {
233 av_log(avctx, AV_LOG_ERROR, "invalid bps: %d\n", s->bps);
234 s->bps = 16;
239 avctx->bits_per_raw_sample = s->bps;