Browse code

Make ff_interleave_compare_dts static to utils.c.

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>

Diego Elio Pettenò authored on 2011/01/25 10:29:36
Showing 2 changed files
... ...
@@ -39,7 +39,6 @@ typedef struct {
39 39
 int ff_audio_interleave_init(AVFormatContext *s, const int *samples_per_frame, AVRational time_base);
40 40
 void ff_audio_interleave_close(AVFormatContext *s);
41 41
 
42
-int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt);
43 42
 /**
44 43
  * Rechunk audio PCM packets per AudioInterleaveContext->samples_per_frame
45 44
  * and interleave them correctly.
... ...
@@ -3000,7 +3000,7 @@ next_non_null:
3000 3000
     *next_point= this_pktl;
3001 3001
 }
3002 3002
 
3003
-int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt)
3003
+static int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt)
3004 3004
 {
3005 3005
     AVStream *st = s->streams[ pkt ->stream_index];
3006 3006
     AVStream *st2= s->streams[ next->stream_index];