Browse Source

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

Originally committed as revision 15439 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Diego Biurrun 17 years ago
parent
commit
fff5e687a1
2 changed files with 1 additions and 3 deletions
  1. +1
    -0
      libavformat/avformat.h
  2. +0
    -3
      libavformat/utils.c

+ 1
- 0
libavformat/avformat.h View File

@@ -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 */


+ 0
- 3
libavformat/utils.c View File

@@ -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;


Loading…
Cancel
Save