diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-10-31 12:22:32 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-10-31 12:22:32 +0000 |
commit | e40fed0b62f5b8cb1736f6783b384c576455e7f1 (patch) | |
tree | 949648d3da14605e66492162b91605f50966a935 /libav/avformat.h | |
parent | 6bb925f47dbcb073ee505ed71231c6662aec5ed1 (diff) | |
download | ffmpeg-e40fed0b62f5b8cb1736f6783b384c576455e7f1.tar.gz |
* removed extra_data from AVStream (it's part of Codec)
* removed pts*1000 for paket timing (using ms)
Originally committed as revision 1128 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/avformat.h')
-rw-r--r-- | libav/avformat.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libav/avformat.h b/libav/avformat.h index 1fc099a145..37a2a13e5a 100644 --- a/libav/avformat.h +++ b/libav/avformat.h @@ -136,8 +136,6 @@ typedef struct AVStream { AVCodecContext codec; /* codec context */ int r_frame_rate; /* real frame rate of the stream */ uint64_t time_length; /* real length of the stream in miliseconds */ - void* extra_data; /* some extra data - i.e. longer WAVEFORMATEX */ - int extra_data_size; /* size of extra data chunk */ void *priv_data; /* internal data used in av_find_stream_info() */ int codec_info_state; |