From 101e1f6ff90c3365bfde05469ae26d2ee7f71f3e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= <flameeyes@gmail.com>
Date: Tue, 25 Jan 2011 02:29:36 +0100
Subject: [PATCH] Make ff_interleave_compare_dts static to utils.c.

Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
---
 libavformat/audiointerleave.h | 1 -
 libavformat/utils.c           | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavformat/audiointerleave.h b/libavformat/audiointerleave.h
index c948c366fbf..b37c8aefbd8 100644
--- a/libavformat/audiointerleave.h
+++ b/libavformat/audiointerleave.h
@@ -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.
diff --git a/libavformat/utils.c b/libavformat/utils.c
index c208bd994fc..4f51c26697d 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -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];
-- 
GitLab