Commit 25406e50 authored by Baptiste Coudurier's avatar Baptiste Coudurier

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

Originally committed as revision 8855 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6e42e6c4
...@@ -306,11 +306,9 @@ typedef struct AVStream { ...@@ -306,11 +306,9 @@ typedef struct AVStream {
/** quality, as it has been removed from AVCodecContext and put in AVVideoFrame /** quality, as it has been removed from AVCodecContext and put in AVVideoFrame
* MN:dunno if thats the right place, for it */ * MN:dunno if thats the right place, for it */
float quality; float quality;
/** decoding: position of the first frame of the component, in /** decoding: pts of the first frame of the stream, in stream time base. */
AV_TIME_BASE fractional seconds. */
int64_t start_time; int64_t start_time;
/** decoding: duration of the stream, in AV_TIME_BASE fractional /** decoding: duration of the stream, in stream time base. */
seconds. */
int64_t duration; int64_t duration;
char language[4]; /** ISO 639 3-letter language code (empty string if undefined) */ 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