Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-02-03 14:25:54 +0300
committerAnton Khirnov <anton@khirnov.net>2011-04-19 20:28:38 +0400
commit761ad429680637411882552921a9d5acb6aff59e (patch)
treeba03954b8cfd4196ff5d6016d292a0d203faaf87 /libavformat/avformat.h
parentaad2f2f477d6804f5f79ccce55b3d7f54b00f715 (diff)
lavf: remove FF_API_MAX_STREAMS cruft
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h8
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;