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

Function write_float_3d_array

libavcodec/aacps_tablegen.c:28–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26#include "tableprint.h"
27
28void write_float_3d_array (const void *p, int b, int c, int d)
29{
30 int i;
31 const float *f = p;
32 for (i = 0; i < b; i++) {
33 printf("{\n");
34 write_float_2d_array(f, c, d);
35 printf("},\n");
36 f += c * d;
37 }
38}
39
40void write_float_4d_array (const void *p, int a, int b, int c, int d)
41{

Callers 2

write_float_4d_arrayFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected