Commit fff5e687 authored by Diego Biurrun's avatar Diego Biurrun

Move doxygen comments for av_gettime from utils.c to avformat.h.

Originally committed as revision 15439 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9bce82fa
...@@ -1034,6 +1034,7 @@ attribute_deprecated int parse_frame_rate(int *frame_rate, int *frame_rate_base, ...@@ -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); int64_t parse_date(const char *datestr, int duration);
/** Gets the current time in microseconds. */
int64_t av_gettime(void); int64_t av_gettime(void);
/* ffm specific for ffserver */ /* ffm specific for ffserver */
......
...@@ -2853,9 +2853,6 @@ int parse_frame_rate(int *frame_rate_num, int *frame_rate_den, const char *arg) ...@@ -2853,9 +2853,6 @@ int parse_frame_rate(int *frame_rate_num, int *frame_rate_den, const char *arg)
return ret; return ret;
} }
/**
* Gets the current time in microseconds.
*/
int64_t av_gettime(void) int64_t av_gettime(void)
{ {
struct timeval tv; struct timeval tv;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment