mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
lavf: remove disabled FF_API_PARSE_DATE cruft
This commit is contained in:
parent
997420abf2
commit
ecd5f41a06
@ -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.
|
||||
*/
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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…
Reference in New Issue
Block a user