1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

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
This commit is contained in:
Baptiste Coudurier 2009-02-08 21:09:50 +00:00
parent 61ccbc52ea
commit 18099ade6f
2 changed files with 1 additions and 3 deletions

View File

@ -67,7 +67,7 @@ int ff_audio_interleave_init(AVFormatContext *s,
return 0; 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) int stream_index, int flush)
{ {
AVStream *st = s->streams[stream_index]; AVStream *st = s->streams[stream_index];

View File

@ -40,8 +40,6 @@ int ff_audio_interleave_init(AVFormatContext *s, const int *samples_per_frame, A
void ff_audio_interleave_close(AVFormatContext *s); void ff_audio_interleave_close(AVFormatContext *s);
int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt); int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt);
int ff_interleave_new_audio_packet(AVFormatContext *s, AVPacket *pkt,
int stream_index, int flush);
/** /**
* Rechunk audio pcm packets per AudioInterleaveContext->samples_per_frame * Rechunk audio pcm packets per AudioInterleaveContext->samples_per_frame
* and interleave them correctly. * and interleave them correctly.