Commit 63123bda authored by bcoudurier's avatar bcoudurier

fix AVStream documentation: clarify start_time, start_time and duration are actually in stream base

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8855 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9ab5ce5f
......@@ -306,11 +306,9 @@ typedef struct AVStream {
/** 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) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment