avformat: Drop unnecessary ff_ name prefixes from static functions

This commit is contained in:
Diego Biurrun
2013-04-20 21:47:15 +02:00
parent 7f75f2f2bd
commit e926b5ceb1
8 changed files with 34 additions and 30 deletions

View File

@@ -479,7 +479,8 @@ next_non_null:
*next_point = this_pktl;
}
static int ff_interleave_compare_dts(AVFormatContext *s, AVPacket *next, AVPacket *pkt)
static int interleave_compare_dts(AVFormatContext *s, AVPacket *next,
AVPacket *pkt)
{
AVStream *st = s->streams[pkt->stream_index];
AVStream *st2 = s->streams[next->stream_index];
@@ -499,7 +500,7 @@ int ff_interleave_packet_per_dts(AVFormatContext *s, AVPacket *out,
int i;
if (pkt) {
ff_interleave_add_packet(s, pkt, ff_interleave_compare_dts);
ff_interleave_add_packet(s, pkt, interleave_compare_dts);
}
for (i = 0; i < s->nb_streams; i++)