comparison avformat.h @ 6166:474f78ca41d8 libavformat

Mention how "now" is interpreted in the parse_date() doxy.
author stefano
date Tue, 22 Jun 2010 22:54:32 +0000
parents df361adebc1d
children 4fc5e0e4e1cd
comparison
equal deleted inserted replaced
6165:df361adebc1d 6166:474f78ca41d8
1277 /** 1277 /**
1278 * Parses datestr and returns a corresponding number of microseconds. 1278 * Parses datestr and returns a corresponding number of microseconds.
1279 * @param datestr String representing a date or a duration. 1279 * @param datestr String representing a date or a duration.
1280 * - If a date the syntax is: 1280 * - If a date the syntax is:
1281 * @code 1281 * @code
1282 * [{YYYY-MM-DD|YYYYMMDD}[T|t| ]]{{HH[:MM[:SS[.m...]]]}|{HH[MM[SS[.m...]]]}}[Z|z] 1282 * now|{[{YYYY-MM-DD|YYYYMMDD}[T|t| ]]{{HH[:MM[:SS[.m...]]]}|{HH[MM[SS[.m...]]]}}[Z|z]}
1283 * @endcode 1283 * @endcode
1284 * If the value is "now" it takes the current time.
1284 * Time is local time unless Z is appended, in which case it is 1285 * Time is local time unless Z is appended, in which case it is
1285 * interpreted as UTC. 1286 * interpreted as UTC.
1286 * If the year-month-day part is not specified it takes the current 1287 * If the year-month-day part is not specified it takes the current
1287 * year-month-day. 1288 * year-month-day.
1288 * Returns the number of microseconds since 1st of January, 1970 up to 1289 * Returns the number of microseconds since 1st of January, 1970 up to