Mercurial > libavformat.hg
diff avformat.h @ 2061:f5df68594b30 libavformat
fix AVStream documentation: clarify start_time, start_time and duration are actually in stream base
| author | bcoudurier |
|---|---|
| date | Sat, 28 Apr 2007 13:07:52 +0000 |
| parents | a3e79d6e4e3c |
| children | 64bd1b09cef2 |
line wrap: on
line diff
--- a/avformat.h Fri Apr 27 17:19:07 2007 +0000 +++ b/avformat.h Sat Apr 28 13:07:52 2007 +0000 @@ -306,11 +306,9 @@ /** quality, as it has been removed from AVCodecContext and put in AVVideoFrame * MN:dunno if thats the right place, for it */ float quality; - /** decoding: position of the first frame of the component, in - AV_TIME_BASE fractional seconds. */ + /** decoding: pts of the first frame of the stream, in stream time base. */ int64_t start_time; - /** decoding: duration of the stream, in AV_TIME_BASE fractional - seconds. */ + /** decoding: duration of the stream, in stream time base. */ int64_t duration; char language[4]; /** ISO 639 3-letter language code (empty string if undefined) */
