summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-03-12 10:59:47 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2007-03-12 10:59:47 +0000
commitea486ab3bede4fc68b8cccb70791cdfa589a0fcb (patch)
treed7ff027f4936ad81d7aee4e8765afe39cc05a41e /libavformat/avformat.h
parent17ceb4f9d1b2ec2760604e8d52e0de2ca6008f9e (diff)
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.h2
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;