diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-10-09 15:04:38 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-10-25 16:27:48 +0200 |
commit | f172132f825cec4e446a5bdde4ffa9065ba9061f (patch) | |
tree | 96839afb55479392166d12cc205dc825eb49ec34 /libavformat/avformat.h | |
parent | 28287045ca3ee34e4ea980628ec8314fd2d819ae (diff) | |
download | ffmpeg-f172132f825cec4e446a5bdde4ffa9065ba9061f.tar.gz |
mpegenc: add preload private option.
Deprecate AVFormatContext.preload.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 65f66d84d3..74c7140e35 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -743,7 +743,9 @@ typedef struct AVFormatContext { attribute_deprecated int mux_rate; #endif unsigned int packet_size; - int preload; +#if FF_API_PRELOAD + attribute_deprecated int preload; +#endif int max_delay; #if FF_API_LOOP_OUTPUT |