Remove potentially unstable filenames from comments in generated files.
authorDiego Biurrun <diego@biurrun.de>
Thu, 19 May 2011 16:12:17 +0000 (18:12 +0200)
committerDiego Biurrun <diego@biurrun.de>
Thu, 19 May 2011 17:30:12 +0000 (19:30 +0200)
libavcodec/costablegen.c
libavcodec/tableprint.c

index 65c4926..6bfb8ea 100644 (file)
@@ -54,7 +54,7 @@ int main(int argc, char *argv[])
     int fixed  = argc > 2 && !strcmp(argv[2], "fixed");
     double (*func)(double) = do_sin ? sin : cos;
 
-    printf("/* This file was generated by libavcodec/costablegen */\n");
+    printf("/* This file was automatically generated. */\n");
     printf("#define CONFIG_FFT_FLOAT %d\n", !fixed);
     printf("#include \"libavcodec/%s\"\n", do_sin ? "rdft.h" : "fft.h");
     for (i = 4; i <= BITS; i++) {
index da77525..362dc24 100644 (file)
@@ -36,6 +36,6 @@ WRITE_2D_FUNC(uint32_t)
 WRITE_2D_FUNC(float)
 
 void write_fileheader(void) {
-    printf("/* This file was generated by libavcodec/tableprint */\n");
+    printf("/* This file was automatically generated. */\n");
     printf("#include <stdint.h>\n");
 }