Make ff_interleave_compare_dts static to utils.c.

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
(cherry picked from commit 101e1f6ff9)
This commit is contained in:
Diego Elio Pettenò 2011-01-25 02:29:36 +01:00 committed by Michael Niedermayer
parent 0c468f5684
commit d20d1449e0
2 changed files with 1 additions and 2 deletions

View File

@ -39,7 +39,6 @@ typedef struct {
int ff_audio_interleave_init(AVFormatContext *s, const int *samples_per_frame, AVRational time_base);
void ff_audio_interleave_close(AVFormatContext *s);
int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt);
/**
* Rechunk audio PCM packets per AudioInterleaveContext->samples_per_frame
* and interleave them correctly.

View File

@ -3000,7 +3000,7 @@ next_non_null:
*next_point= this_pktl;
}
int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt)
static int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt)
{
AVStream *st = s->streams[ pkt ->stream_index];
AVStream *st2= s->streams[ next->stream_index];