Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2010-03-16 02:15:24 +0300
committerAurelien Jacobs <aurel@gnuage.org>2010-03-16 02:15:24 +0300
commit972ffe6220ac9100fee4140fedb27e24679425de (patch)
tree628f24ca7925023bb9b9d71565259b5a253d92a5 /libavformat/seek.c
parent588af13feec4c56dc2a1089420b5d7cf8e13e762 (diff)
rename av_read_frame_flush to ff_read_frame_flush
it is an internal function, not part of public API Originally committed as revision 22562 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/seek.c')
-rw-r--r--libavformat/seek.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/seek.c b/libavformat/seek.c
index a2e09a2fd4..a2900b46e0 100644
--- a/libavformat/seek.c
+++ b/libavformat/seek.c
@@ -237,7 +237,7 @@ static void search_hi_lo_keyframes(AVFormatContext *s,
}
// Clean up the parser.
- av_read_frame_flush(s);
+ ff_read_frame_flush(s);
}
int64_t ff_gen_syncpoint_search(AVFormatContext *s,
@@ -451,7 +451,7 @@ void ff_restore_parser_state(AVFormatContext *s, AVParserState *state)
int i;
AVStream *st;
AVParserStreamState *ss;
- av_read_frame_flush(s);
+ ff_read_frame_flush(s);
if (!state)
return;