diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-08 21:09:50 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-02-08 21:09:50 +0000 |
commit | 18099ade6fbacf793e1c4d75ca71906c5abd40e8 (patch) | |
tree | 05b465689a96a5cbb777c5eab06ae287d31e549c /libavformat/audiointerleave.c | |
parent | 61ccbc52ea0e963630688204fcefe28c876ca480 (diff) | |
download | ffmpeg-18099ade6fbacf793e1c4d75ca71906c5abd40e8.tar.gz |
Declare ff_interleave_new_audio_packet as static, it is not used
outside of audiointerleave.c. Also remove the function declaration
from the header as it is now static.
Originally committed as revision 17068 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/audiointerleave.c')
-rw-r--r-- | libavformat/audiointerleave.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/audiointerleave.c b/libavformat/audiointerleave.c index 056fbe1942..fac68d0bf3 100644 --- a/libavformat/audiointerleave.c +++ b/libavformat/audiointerleave.c @@ -67,7 +67,7 @@ int ff_audio_interleave_init(AVFormatContext *s, return 0; } -int ff_interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt, +static int ff_interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt, int stream_index, int flush) { AVStream *st = s->streams[stream_index]; |