diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-06-22 22:54:29 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-06-22 22:54:29 +0000 |
commit | 82fd4f4a077aa0c1c6d7b775323f746a51009152 (patch) | |
tree | 85a232965a3a81cf634848b3fb33fa20b5a8d2f5 | |
parent | c31a25e79c1fa034a1a528d93796e2fc98a6adda (diff) | |
download | ffmpeg-82fd4f4a077aa0c1c6d7b775323f746a51009152.tar.gz |
Fix date specification accepted by parse_date().
Originally committed as revision 23724 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 861d60e63f..71e241dad0 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1279,7 +1279,7 @@ attribute_deprecated int parse_frame_rate(int *frame_rate, int *frame_rate_base, * @param datestr String representing a date or a duration. * - If a date the syntax is: * @code - * [{YYYY-MM-DD|YYYYMMDD}]{T| }{HH[:MM[:SS[.m...]]][Z]|HH[MM[SS[.m...]]][Z]} + * [{YYYY-MM-DD|YYYYMMDD}[T|t| ]]{{HH[:MM[:SS[.m...]]]}|{HH[MM[SS[.m...]]]}}[Z|z] * @endcode * Time is local time unless Z is appended, in which case it is * interpreted as UTC. |