diff options
author | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-05-09 01:15:45 +0000 |
---|---|---|
committer | Philip Gladstone <philipjsg@users.sourceforge.net> | 2002-05-09 01:15:45 +0000 |
commit | 6d9872f416a2ef0eb215366f815f523b87f017e5 (patch) | |
tree | 0fd71d631d5e2c6afae5ccc78978d4890aa4e493 /libav | |
parent | 1de1cce27d52c0dbb37e58976762812122c5a8c9 (diff) | |
download | ffmpeg-6d9872f416a2ef0eb215366f815f523b87f017e5.tar.gz |
* Add a duration field to the AVPacket
Originally committed as revision 459 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r-- | libav/avformat.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libav/avformat.h b/libav/avformat.h index 0f04e71989..e17c7a514b 100644 --- a/libav/avformat.h +++ b/libav/avformat.h @@ -15,6 +15,7 @@ typedef struct AVPacket { int size; int stream_index; int flags; + int duration; #define PKT_FLAG_KEY 0x0001 #define PKT_FLAG_DROPPED_FRAME 0x0002 } AVPacket; |