* Process subpacket 12 * * @param q context * @param node pointer to node with packet * @param length packet length in bits */
| 1133 | * @param length packet length in bits |
| 1134 | */ |
| 1135 | static void process_subpacket_12 (QDM2Context *q, QDM2SubPNode *node, int length) |
| 1136 | { |
| 1137 | GetBitContext gb; |
| 1138 | |
| 1139 | init_get_bits(&gb, ((node == NULL) ? empty_buffer : node->packet->data), ((node == NULL) ? 0 : node->packet->size*8)); |
| 1140 | synthfilt_build_sb_samples(q, &gb, length, 8, QDM2_SB_USED(q->sub_sampling)); |
| 1141 | } |
| 1142 | |
| 1143 | /* |
| 1144 | * Process new subpackets for synthesis filter |
no test coverage detected