summaryrefslogtreecommitdiff
path: root/libav/avformat.h
diff options
context:
space:
mode:
authorJuanjo <pulento@users.sourceforge.net>2002-05-14 21:50:00 +0000
committerJuanjo <pulento@users.sourceforge.net>2002-05-14 21:50:00 +0000
commit76c0441b10bccad512e967be194cd4c882739f7a (patch)
tree138c94dd586f30bb8dab70ed1825b52f1f641821 /libav/avformat.h
parente0a3d744a0d5a9a25fb85c9bba17e3b07d3ba29b (diff)
- Added r_frame_rate in AVStream to store the real frame rate.
- This stuff could be done in AVCodecContext and the real frame rate calculated in utils.c, but we don't changes in that by now ;) Originally committed as revision 497 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/avformat.h')
-rw-r--r--libav/avformat.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libav/avformat.h b/libav/avformat.h
index 3b20a2d335..c982336f42 100644
--- a/libav/avformat.h
+++ b/libav/avformat.h
@@ -76,6 +76,7 @@ typedef struct AVFormat {
typedef struct AVStream {
int id; /* internal stream id */
AVCodecContext codec; /* codec context */
+ int r_frame_rate; /* real frame rate of the stream */
void *priv_data;
} AVStream;