diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-01-31 06:09:31 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-01-31 06:09:31 +0000 |
commit | 34c65ac6689197ee180a6e79e8dd651f8f572eaf (patch) | |
tree | 5a110b6f94388373fa4bf65b3cca5ffc8f2e15c3 /libavformat/oggenc.c | |
parent | fd5583bc2d6134c8c2a99a5f5c68746bb8bdfaf7 (diff) | |
download | ffmpeg-34c65ac6689197ee180a6e79e8dd651f8f572eaf.tar.gz |
function is static
Originally committed as revision 16886 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/oggenc.c')
-rw-r--r-- | libavformat/oggenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index e9152f4260..1e2a93af3c 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -214,7 +214,7 @@ static int ogg_compare_granule(AVFormatContext *s, AVPacket *next, AVPacket *pkt return next_granule > cur_granule; } -int ogg_interleave_per_granule(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush) +static int ogg_interleave_per_granule(AVFormatContext *s, AVPacket *out, AVPacket *pkt, int flush) { AVPacketList *pktl; int stream_count = 0; |