From ac014798ff719c69a895aff0189a794ed9046554 Mon Sep 17 00:00:00 2001 From: Diego Pettenò Date: Sun, 27 Jun 2010 12:20:39 +0000 Subject: 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 --- libavcodec/motionpixels_tablegen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/motionpixels_tablegen.c') diff --git a/libavcodec/motionpixels_tablegen.c b/libavcodec/motionpixels_tablegen.c index 5f1220aff5..31e5cdf710 100644 --- a/libavcodec/motionpixels_tablegen.c +++ b/libavcodec/motionpixels_tablegen.c @@ -34,7 +34,7 @@ int main(void) write_fileheader(); printf("static const YuvPixel mp_rgb_yuv_table[1 << 15] = {\n"); - write_int8_2d_array(mp_rgb_yuv_table, 1 << 15, 3); + write_int8_t_2d_array(mp_rgb_yuv_table, 1 << 15, 3); printf("};\n"); return 0; -- cgit v1.2.3