MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / process_subpacket_12

Function process_subpacket_12

libavcodec/qdm2.c:1135–1141  ·  view source on GitHub ↗

* Process subpacket 12 * * @param q context * @param node pointer to node with packet * @param length packet length in bits */

Source from the content-addressed store, hash-verified

1133 * @param length packet length in bits
1134 */
1135static 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

Callers 2

qdm2_decode_super_blockFunction · 0.85

Calls 2

init_get_bitsFunction · 0.85

Tested by

no test coverage detected