diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-02-09 19:57:23 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-02-09 19:57:23 +0000 |
commit | f0b00aba8970d4d39b3931aab4d9ae66a9e6ac88 (patch) | |
tree | aa539d03ff16cdc42b158b0d2016c121d6639d5e /libavformat/avformat.h | |
parent | be3e68b277328b996d87272e2454ff7fc023b0b6 (diff) | |
download | ffmpeg-f0b00aba8970d4d39b3931aab4d9ae66a9e6ac88.tar.gz |
Try to clarify doxy of avformat_seek_file().
Originally committed as revision 17102 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-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 0dc3313014..dd48f64e86 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -901,7 +901,7 @@ int av_seek_frame(AVFormatContext *s, int stream_index, int64_t timestamp, * if flags contain AVSEEK_FLAG_FRAME then all timestamps are in frames * in the stream with stream_index (this may not be supported by all demuxers). * else all timestamps are in units of the stream selected by stream_index or - * if its -1 AV_TIME_BASE units. + * if stream_index is -1, AV_TIME_BASE units. * if flags contain AVSEEK_FLAG_ANY then non keyframes are treated as * keyframes (this may not be supported by all demuxers). * |