mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-31 15:07:12 +08:00
tableprint: use the type name as-is for the functions' names.
This drops one parameter from the functions' macros, and require structures to be typedeffed, but ensures that it is possible to map 1-to-1 the type to the function name. Originally committed as revision 23820 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -32,7 +32,7 @@ int main(void)
|
||||
write_fileheader();
|
||||
|
||||
printf("static const uint32_t cbrt_tab[1<<13] = {\n");
|
||||
write_uint32_array(cbrt_tab, 1 << 13);
|
||||
write_uint32_t_array(cbrt_tab, 1 << 13);
|
||||
printf("};\n");
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user