comparison avformat.h @ 844:35e372e6a6c3 libavformat

time_base description by Rich Felker | dalias, aerifal cx
author michael
date Sun, 21 Aug 2005 22:31:01 +0000
parents 43210d766412
children f5a33919749a
comparison
equal deleted inserted replaced
843:dcf6e35ddb72 844:35e372e6a6c3
227 /* internal data used in av_find_stream_info() */ 227 /* internal data used in av_find_stream_info() */
228 int64_t codec_info_duration; 228 int64_t codec_info_duration;
229 int codec_info_nb_frames; 229 int codec_info_nb_frames;
230 /* encoding: PTS generation when outputing stream */ 230 /* encoding: PTS generation when outputing stream */
231 AVFrac pts; 231 AVFrac pts;
232
233 /**
234 * this is the fundamental unit of time (in seconds) in terms
235 * of which frame timestamps are represented. for fixed-fps content,
236 * timebase should be 1/framerate and timestamp increments should be
237 * identically 1.
238 */
232 AVRational time_base; 239 AVRational time_base;
233 int pts_wrap_bits; /* number of bits in pts (used for wrapping control) */ 240 int pts_wrap_bits; /* number of bits in pts (used for wrapping control) */
234 /* ffmpeg.c private use */ 241 /* ffmpeg.c private use */
235 int stream_copy; /* if TRUE, just copy stream */ 242 int stream_copy; /* if TRUE, just copy stream */
236 enum AVDiscard discard; ///< selects which packets can be discarded at will and dont need to be demuxed 243 enum AVDiscard discard; ///< selects which packets can be discarded at will and dont need to be demuxed