diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-12 10:59:47 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-03-12 10:59:47 +0000 |
commit | ea486ab3bede4fc68b8cccb70791cdfa589a0fcb (patch) | |
tree | d7ff027f4936ad81d7aee4e8765afe39cc05a41e /libavformat/avformat.h | |
parent | 17ceb4f9d1b2ec2760604e8d52e0de2ca6008f9e (diff) | |
download | ffmpeg-ea486ab3bede4fc68b8cccb70791cdfa589a0fcb.tar.gz |
remove codec_info_duration/nb_frames from AVStream
Originally committed as revision 8337 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index c2136a65be..b6fefaf33b 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -275,9 +275,11 @@ typedef struct AVStream { */ AVRational r_frame_rate; void *priv_data; +#if LIBAVFORMAT_VERSION_INT < (52<<16) /* internal data used in av_find_stream_info() */ int64_t codec_info_duration; int codec_info_nb_frames; +#endif /** encoding: PTS generation when outputing stream */ AVFrac pts; |