• Home
  • Raw
  • Download

Lines Matching refs:n_blocks

80     guint * n_blocks, GstSbcChannelMode * ch_mode,
119 sbcparse->n_blocks = -1; in gst_sbc_parse_reset()
193 guint rate = 0, n_blocks = 0, n_subbands = 0, bitpool = 0; in gst_sbc_parse_handle_frame() local
201 frame_len = gst_sbc_parse_header (map.data, &rate, &n_blocks, &ch_mode, in gst_sbc_parse_handle_frame()
212 || sbcparse->n_blocks != n_blocks in gst_sbc_parse_handle_frame()
221 "blocks", G_TYPE_INT, n_blocks, "subbands", G_TYPE_INT, n_subbands, in gst_sbc_parse_handle_frame()
231 avg_bitrate = (8 * frame_len * rate) / (n_subbands * n_blocks); in gst_sbc_parse_handle_frame()
234 gst_base_parse_set_frame_rate (parse, rate, n_subbands * n_blocks, 0, 0); in gst_sbc_parse_handle_frame()
239 sbcparse->n_blocks = n_blocks; in gst_sbc_parse_handle_frame()
254 max_frames = MIN (map.size / frame_len, n_blocks * n_subbands * 5); in gst_sbc_parse_handle_frame()
259 &n_blocks, &ch_mode, &alloc_method, &n_subbands, &bitpool); in gst_sbc_parse_handle_frame()
263 sbcparse->n_blocks != n_blocks || sbcparse->n_subbands != n_subbands || in gst_sbc_parse_handle_frame()
273 sbcparse->n_subbands * sbcparse->n_blocks * i, 0, 0); in gst_sbc_parse_handle_frame()
443 gst_sbc_parse_header (const guint8 * data, guint * rate, guint * n_blocks, in gst_sbc_parse_header() argument
457 *n_blocks = sbc_blocks[(data[1] >> 4) & 0x03]; in gst_sbc_parse_header()
464 "n_subbands=%u, bitpool=%u", *rate, *n_blocks, *ch_mode, *alloc_method, in gst_sbc_parse_header()
500 return gst_sbc_calc_framelen (*n_subbands, *ch_mode, *n_blocks, *bitpool); in gst_sbc_parse_header()