Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-09 05:15:45 +0400
committerPhilip Gladstone <philipjsg@users.sourceforge.net>2002-05-09 05:15:45 +0400
commit6d9872f416a2ef0eb215366f815f523b87f017e5 (patch)
tree0fd71d631d5e2c6afae5ccc78978d4890aa4e493
parent1de1cce27d52c0dbb37e58976762812122c5a8c9 (diff)
* Add a duration field to the AVPacket
Originally committed as revision 459 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libav/avformat.h1
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;