diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-02-19 10:09:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-02-19 10:09:46 +0000 |
commit | 6f2162b4713ab5e6c5181708590555b031d4ce2b (patch) | |
tree | 66a6557edaf2089e47bf2628d7fac00a591ce194 /tests/audiogen.c | |
parent | 859bb3cfee28efff9c965d4c9320c7837b85849e (diff) | |
download | ffmpeg-6f2162b4713ab5e6c5181708590555b031d4ce2b.tar.gz |
Mark functions only used within the test programs as static.
Originally committed as revision 17454 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/audiogen.c')
-rw-r--r-- | tests/audiogen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/audiogen.c b/tests/audiogen.c index f96110e968..38ca5dd22a 100644 --- a/tests/audiogen.c +++ b/tests/audiogen.c @@ -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); |