]> git.sesse.net Git - ffmpeg/blobdiff - tests/audiogen.c
Remove unused seek-regression.sh script
[ffmpeg] / tests / audiogen.c
index 68ae135869e13253af9508de6f4ae79e7c441f25..38ca5dd22a1a78456a2841a461f67b73c5bc5354 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Generates a synthetic stereo sound
- * NOTE: no floats are used to guaranty a bit exact output.
+ * NOTE: No floats are used to guarantee a bit exact output.
  *
  * Copyright (c) 2002 Fabrice Bellard
  *
@@ -94,7 +94,7 @@ static int int_cos(int a)
 
 FILE *outfile;
 
-void put_sample(int v)
+static void put_sample(int v)
 {
     fputc(v & 0xff, outfile);
     fputc((v >> 8) & 0xff, outfile);