summaryrefslogtreecommitdiffstats
path: root/libavcodec/cbrt_tablegen.c
diff options
context:
space:
mode:
authorDiego Pettenò <flameeyes@gmail.com>2010-06-27 12:20:39 +0000
committerDiego Pettenò <flameeyes@gmail.com>2010-06-27 12:20:39 +0000
commitac014798ff719c69a895aff0189a794ed9046554 (patch)
treef53db1d845bbecfa50224c0c5ed2e1c53403b21f /libavcodec/cbrt_tablegen.c
parent07ece20c696edad327b2e3fefd14f52279f60035 (diff)
downloadffmpeg-streaming-ac014798ff719c69a895aff0189a794ed9046554.zip
ffmpeg-streaming-ac014798ff719c69a895aff0189a794ed9046554.tar.gz
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
Diffstat (limited to 'libavcodec/cbrt_tablegen.c')
-rw-r--r--libavcodec/cbrt_tablegen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cbrt_tablegen.c b/libavcodec/cbrt_tablegen.c
index dbbd632..5cbceb2 100644
--- a/libavcodec/cbrt_tablegen.c
+++ b/libavcodec/cbrt_tablegen.c
@@ -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;
OpenPOWER on IntegriCloud