Lines Matching refs:bitpool
78 guint blocks, guint bitpool);
81 GstSbcAllocationMethod * alloc_method, guint * n_subbands, guint * bitpool);
121 sbcparse->bitpool = -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
202 &alloc_method, &n_subbands, &bitpool); in gst_sbc_parse_handle_frame()
213 || sbcparse->n_subbands != n_subbands || sbcparse->bitpool != bitpool) { in gst_sbc_parse_handle_frame()
224 "bitpool", G_TYPE_INT, bitpool, "parsed", G_TYPE_BOOLEAN, TRUE, NULL); in gst_sbc_parse_handle_frame()
241 sbcparse->bitpool = bitpool; in gst_sbc_parse_handle_frame()
259 &n_blocks, &ch_mode, &alloc_method, &n_subbands, &bitpool); in gst_sbc_parse_handle_frame()
264 sbcparse->bitpool != bitpool) { in gst_sbc_parse_handle_frame()
424 guint blocks, guint bitpool) in gst_sbc_calc_framelen() argument
428 return 4 + (subbands * 1) / 2 + ((blocks * 1 * bitpool) + 7) / 8; in gst_sbc_calc_framelen()
430 return 4 + (subbands * 2) / 2 + ((blocks * 2 * bitpool) + 7) / 8; in gst_sbc_calc_framelen()
432 return 4 + (subbands * 2) / 2 + ((blocks * bitpool) + 7) / 8; in gst_sbc_calc_framelen()
434 return 4 + (subbands * 2) / 2 + ((subbands + blocks * bitpool) + 7) / 8; in gst_sbc_calc_framelen()
445 guint * n_subbands, guint * bitpool) in gst_sbc_parse_header() argument
461 *bitpool = data[2]; in gst_sbc_parse_header()
465 *n_subbands, *bitpool); in gst_sbc_parse_header()
467 if (*bitpool < 2) in gst_sbc_parse_header()
500 return gst_sbc_calc_framelen (*n_subbands, *ch_mode, *n_blocks, *bitpool); in gst_sbc_parse_header()