diff options
author | Gildas Bazin <gbazi@altern.org> | 2006-01-22 18:34:17 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-22 18:34:17 +0000 |
commit | ac44871c7773fb9a6b18d362cec9a4630055fc50 (patch) | |
tree | d887ca20cd31f65cf427b50793cf03ca20f5374b /libavformat/utils.c | |
parent | 0e6c947df3a834484c04c3e9a646004ab7ccda65 (diff) | |
download | ffmpeg-ac44871c7773fb9a6b18d362cec9a4630055fc50.tar.gz |
WinCE cross-compilation support
patch by Gildas Bazin < gbazin **@** altern **.** org >
Originally committed as revision 4881 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index f8ecd04595..5ed508dbce 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2739,6 +2739,7 @@ int parse_frame_rate(int *frame_rate, int *frame_rate_base, const char *arg) * S+[.m...] * @endcode */ +#ifndef CONFIG_WINCE int64_t parse_date(const char *datestr, int duration) { const char *p; @@ -2846,6 +2847,7 @@ int64_t parse_date(const char *datestr, int duration) } return negative ? -t : t; } +#endif /* CONFIG_WINCE */ /** * Attempts to find a specific tag in a URL. |