From 7b49ce2e344a5f8864d8365d57f3c6c743f0c8f7 Mon Sep 17 00:00:00 2001 From: Stefan Huehner Date: Sun, 18 Jun 2006 11:33:14 +0000 Subject: Add const to (mostly) char* and make some functions static, which aren't used outside their declaring source file and which have no corresponding prototype. patch by Stefan Huehner stefan^^@^^huehner^^.^^org Originally committed as revision 5497 to svn://svn.ffmpeg.org/ffmpeg/trunk --- vhook/watermark.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vhook/watermark.c') diff --git a/vhook/watermark.c b/vhook/watermark.c index cf89e60994..e88dd1b30b 100644 --- a/vhook/watermark.c +++ b/vhook/watermark.c @@ -164,7 +164,7 @@ int Configure(void **ctxp, int argc, char *argv[]) /**************************************************************************** * For mode 0 (the original one) ****************************************************************************/ -void Process0(void *ctx, +static void Process0(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int src_width, @@ -276,7 +276,7 @@ void Process0(void *ctx, /**************************************************************************** * For mode 1 (the original one) ****************************************************************************/ -void Process1(void *ctx, +static void Process1(void *ctx, AVPicture *picture, enum PixelFormat pix_fmt, int src_width, -- cgit v1.2.3