Browse Source

Try to clarify the semantics of AVPacket.duration.

Originally committed as revision 15178 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
a82630deb2
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      libavformat/avformat.h

+ 5
- 1
libavformat/avformat.h View File

@@ -70,7 +70,11 @@ typedef struct AVPacket {
int size;
int stream_index;
int flags;
int duration; ///< presentation duration in time_base units (0 if not available)
/**
* Duration of this packet in time_base units, 0 if unknown.
* Equals next_pts - this_pts in presentation order.
*/
int duration;
void (*destruct)(struct AVPacket *);
void *priv;
int64_t pos; ///< byte position in stream, -1 if unknown


Loading…
Cancel
Save