diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-03 12:25:54 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-19 18:28:38 +0200 |
commit | 761ad429680637411882552921a9d5acb6aff59e (patch) | |
tree | ba03954b8cfd4196ff5d6016d292a0d203faaf87 /libavformat/avformat.h | |
parent | aad2f2f477d6804f5f79ccce55b3d7f54b00f715 (diff) | |
download | ffmpeg-761ad429680637411882552921a9d5acb6aff59e.tar.gz |
lavf: remove FF_API_MAX_STREAMS cruft
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 55808f13b8..6f7b6a5116 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -672,10 +672,6 @@ typedef struct AVChapter { AVMetadata *metadata; } AVChapter; -#if FF_API_MAX_STREAMS -#define MAX_STREAMS 20 -#endif - /** * Format I/O context. * New fields can be added to the end with minor version bumps. @@ -691,11 +687,7 @@ typedef struct AVFormatContext { void *priv_data; AVIOContext *pb; unsigned int nb_streams; -#if FF_API_MAX_STREAMS - AVStream *streams[MAX_STREAMS]; -#else AVStream **streams; -#endif char filename[1024]; /**< input or output filename */ /* stream info */ int64_t timestamp; |