From fff5e687a12e35265a24fe15d087706b8fdc8ca0 Mon Sep 17 00:00:00 2001
From: Diego Biurrun <diego@biurrun.de>
Date: Sat, 27 Sep 2008 17:37:22 +0000
Subject: [PATCH] Move doxygen comments for av_gettime from utils.c to
 avformat.h.

Originally committed as revision 15439 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavformat/avformat.h | 1 +
 libavformat/utils.c    | 3 ---
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 072be396323..89b3b2fd708 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1034,6 +1034,7 @@ attribute_deprecated int parse_frame_rate(int *frame_rate, int *frame_rate_base,
  */
 int64_t parse_date(const char *datestr, int duration);
 
+/** Gets the current time in microseconds. */
 int64_t av_gettime(void);
 
 /* ffm specific for ffserver */
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 8938c499f55..f6101e33b41 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -2853,9 +2853,6 @@ int parse_frame_rate(int *frame_rate_num, int *frame_rate_den, const char *arg)
     return ret;
 }
 
-/**
- * Gets the current time in microseconds.
- */
 int64_t av_gettime(void)
 {
     struct timeval tv;
-- 
GitLab