]> git.sesse.net Git - ffmpeg/blobdiff - doc/tablegen.txt
Merge commit '4d56f7ab8f627aa140c1ede1bb61305f01cefcdd'
[ffmpeg] / doc / tablegen.txt
index 6fd0ae9a41c17be077e44f7f9ea17c2fe54f67d1..4c4f036e6a76eab3f059c5880e6d6ea9522f3de8 100644 (file)
@@ -28,9 +28,14 @@ them.
 The printing code typically looks like this:
     write_fileheader();
     printf("static const uint8_t my_array[100] = {\n");
-    write_uint8_array(my_array, 100);
+    write_uint8_t_array(my_array, 100);
     printf("};\n");
 
+This is the more generic form, in case you need to do something special.
+Usually you should instead use the short form:
+    write_fileheader();
+    WRITE_ARRAY("static const", uint8_t, my_array);
+
 write_fileheader() adds some minor things like a "this is a generated file"
 comment and some standard includes.
 tablegen.h defines some write functions for one- and two-dimensional arrays