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

Function read_decode_block

libavcodec/alsdec.c:971–983  ·  view source on GitHub ↗

Reads and decodes block data successively. */

Source from the content-addressed store, hash-verified

969/** Reads and decodes block data successively.
970 */
971static int read_decode_block(ALSDecContext *ctx, ALSBlockData *bd)
972{
973 int ret;
974
975 ret = read_block(ctx, bd);
976
977 if (ret)
978 return ret;
979
980 ret = decode_block(ctx, bd);
981
982 return ret;
983}
984
985
986/** Computes the number of samples left to decode for the current frame and

Callers 2

decode_blocks_indFunction · 0.85
decode_blocksFunction · 0.85

Calls 2

read_blockFunction · 0.85
decode_blockFunction · 0.70

Tested by

no test coverage detected