diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-12-13 15:52:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-12-13 15:52:11 +0000 |
commit | 02b398ef4957ec5d8278043218977a3ecccd9297 (patch) | |
tree | 9a01210d1e1dd956404e388b2978267a9a9e6766 /libavformat/avformat.h | |
parent | 1261b07f5f3965cbaf2562ebfa71ed951140bd7c (diff) | |
download | ffmpeg-02b398ef4957ec5d8278043218977a3ecccd9297.tar.gz |
Add avg_frame_rate.
Originally committed as revision 20826 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 507a491104..b67a1b4f6e 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -466,6 +466,11 @@ typedef struct AVStream { * used internally, NOT PART OF PUBLIC API, dont read or write from outside of libav* */ struct AVPacketList *last_in_packet_buffer; + + /** + * Average framerate + */ + AVRational avg_frame_rate; } AVStream; #define AV_PROGRAM_RUNNING 1 |