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

Function write_float_4d_array

libavcodec/aacps_tablegen.c:40–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38}
39
40void write_float_4d_array (const void *p, int a, int b, int c, int d)
41{
42 int i;
43 const float *f = p;
44 for (i = 0; i < a; i++) {
45 printf("{\n");
46 write_float_3d_array(f, b, c, d);
47 printf("},\n");
48 f += b * c * d;
49 }
50}
51
52int main(void)
53{

Callers 1

mainFunction · 0.85

Calls 1

write_float_3d_arrayFunction · 0.85

Tested by

no test coverage detected