diff faac.c @ 4170:f97a2081b5b1 libavcodec

make some symbols static
author mru
date Sat, 11 Nov 2006 20:54:48 +0000
parents c8c591fe26f8
children d77c5a6824e4
line wrap: on
line diff
--- a/faac.c	Sat Nov 11 19:46:53 2006 +0000
+++ b/faac.c	Sat Nov 11 20:54:48 2006 +0000
@@ -95,8 +95,8 @@
     return 0;
 }
 
-int Faac_encode_frame(AVCodecContext *avctx,
-                      unsigned char *frame, int buf_size, void *data)
+static int Faac_encode_frame(AVCodecContext *avctx,
+                             unsigned char *frame, int buf_size, void *data)
 {
     FaacAudioContext *s = avctx->priv_data;
     int bytes_written;
@@ -110,7 +110,7 @@
     return bytes_written;
 }
 
-int Faac_encode_close(AVCodecContext *avctx)
+static int Faac_encode_close(AVCodecContext *avctx)
 {
     FaacAudioContext *s = avctx->priv_data;