Browse Source

lavf: remove disabled FF_API_PARSE_DATE cruft

tags/n0.11
Anton Khirnov 14 years ago
parent
commit
ecd5f41a06
3 changed files with 0 additions and 26 deletions
  1. +0
    -12
      libavformat/avformat.h
  2. +0
    -11
      libavformat/utils.c
  3. +0
    -3
      libavformat/version.h

+ 0
- 12
libavformat/avformat.h View File

@@ -1737,18 +1737,6 @@ void av_dump_format(AVFormatContext *ic,
const char *url,
int is_output);

#if FF_API_PARSE_DATE
/**
* Parse datestr and return a corresponding number of microseconds.
*
* @param datestr String representing a date or a duration.
* See av_parse_time() for the syntax of the provided string.
* @deprecated in favor of av_parse_time()
*/
attribute_deprecated
int64_t parse_date(const char *datestr, int duration);
#endif

/**
* Get the current time in microseconds.
*/


+ 0
- 11
libavformat/utils.c View File

@@ -3373,17 +3373,6 @@ uint64_t ff_ntp_time(void)
return (av_gettime() / 1000) * 1000 + NTP_OFFSET_US;
}

#if FF_API_PARSE_DATE
#include "libavutil/parseutils.h"

int64_t parse_date(const char *timestr, int duration)
{
int64_t timeval;
av_parse_time(&timeval, timestr, duration);
return timeval;
}
#endif

#if FF_API_FIND_INFO_TAG
#include "libavutil/parseutils.h"



+ 0
- 3
libavformat/version.h View File

@@ -47,9 +47,6 @@
* Those FF_API_* defines are not part of public API.
* They may change, break or disappear at any time.
*/
#ifndef FF_API_PARSE_DATE
#define FF_API_PARSE_DATE (LIBAVFORMAT_VERSION_MAJOR < 54)
#endif
#ifndef FF_API_FIND_INFO_TAG
#define FF_API_FIND_INFO_TAG (LIBAVFORMAT_VERSION_MAJOR < 54)
#endif


Loading…
Cancel
Save