summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorFabrice Bellard <fabrice@bellard.org>2002-07-25 16:07:39 +0000
committerFabrice Bellard <fabrice@bellard.org>2002-07-25 16:07:39 +0000
commit2c4ae653afbd5903976b69f0306331daa3d5d2f6 (patch)
tree072e94a56050da08288159c86007acec949b0a70 /ffmpeg.c
parent910fdd21b59645cb833ae3b16ee3ffc14d51b2d6 (diff)
renamed gettime() av_gettime() - same for register_all()
Originally committed as revision 808 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 5414607117..1d8b65cee2 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -890,7 +890,7 @@ static int av_encode(AVFormatContext **output_files,
#endif
term_init();
- start_time = gettime();
+ start_time = av_gettime();
min_pts = 0;
stream_no_data = 0;
key = -1;
@@ -1959,7 +1959,7 @@ INT64 getutime(void)
#else
INT64 getutime(void)
{
- return gettime();
+ return av_gettime();
}
#endif
@@ -2134,7 +2134,7 @@ int main(int argc, char **argv)
const OptionDef *po;
INT64 ti;
- register_all();
+ av_register_all();
/* detect if invoked as player */
i = strlen(argv[0]);