comparison avformat.h @ 2386:2beaa59babad libavformat

elaborate a little on AVStream.start_time, it seems the comment is not clear enough, not that the clearer NEVER comment in AVFormatContext.start_time stoped people from posting stupid patches
author michael
date Thu, 16 Aug 2007 12:07:05 +0000
parents cbe3f8440741
children 28f19eb568a2
comparison
equal deleted inserted replaced
2385:8a7b2fac0a98 2386:2beaa59babad
306 enum AVDiscard discard; ///< selects which packets can be discarded at will and do not need to be demuxed 306 enum AVDiscard discard; ///< selects which packets can be discarded at will and do not need to be demuxed
307 //FIXME move stuff to a flags field? 307 //FIXME move stuff to a flags field?
308 /** quality, as it has been removed from AVCodecContext and put in AVVideoFrame 308 /** quality, as it has been removed from AVCodecContext and put in AVVideoFrame
309 * MN: dunno if that is the right place for it */ 309 * MN: dunno if that is the right place for it */
310 float quality; 310 float quality;
311 /** decoding: pts of the first frame of the stream, in stream time base. */ 311 /**
312 * decoding: pts of the first frame of the stream, in stream time base.
313 * only set this if you are absolutely 100% sure that the value you set
314 * it to really is the pts of the first frame
315 * @note the ASF header does NOT contain a correct start_time the ASF
316 * demuxer must NOT set this
317 */
312 int64_t start_time; 318 int64_t start_time;
313 /** decoding: duration of the stream, in stream time base. */ 319 /** decoding: duration of the stream, in stream time base. */
314 int64_t duration; 320 int64_t duration;
315 321
316 char language[4]; /** ISO 639 3-letter language code (empty string if undefined) */ 322 char language[4]; /** ISO 639 3-letter language code (empty string if undefined) */