diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-20 21:47:15 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-30 16:16:23 +0200 |
commit | e926b5ceb1962833f0c884a328382bc2eca67aff (patch) | |
tree | 2376b74aa6d0d7d2cd25363ebfc22c47afb0380f /libavformat/mux.c | |
parent | 7f75f2f2bd692857c1c1ca7f414eb30ece3de93d (diff) | |
download | ffmpeg-e926b5ceb1962833f0c884a328382bc2eca67aff.tar.gz |
avformat: Drop unnecessary ff_ name prefixes from static functions
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r-- | libavformat/mux.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index 0b537b8c1f..a7e2e9ad15 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -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++) |