From c328f313d876350f95b317a698c344b1cb8bfedd Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= <mans@mansr.com>
Date: Sat, 11 Nov 2006 19:46:53 +0000
Subject: [PATCH] make two functions static

Originally committed as revision 6970 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/x264.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/x264.c b/libavcodec/x264.c
index 71fc7dbb976..b08678779a2 100644
--- a/libavcodec/x264.c
+++ b/libavcodec/x264.c
@@ -66,7 +66,7 @@ encode_nals(uint8_t *buf, int size, x264_nal_t *nals, int nnal)
     return p - buf;
 }
 
-extern int
+static int
 X264_frame(AVCodecContext *ctx, uint8_t *buf, int bufsize, void *data)
 {
     X264Context *x4 = ctx->priv_data;
@@ -130,7 +130,7 @@ X264_close(AVCodecContext *avctx)
     return 0;
 }
 
-extern int
+static int
 X264_init(AVCodecContext *avctx)
 {
     X264Context *x4 = avctx->priv_data;
-- 
GitLab