diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-02 11:56:21 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-02 16:17:24 +0200 |
commit | 8ed2ae09a25e5860342b97f7c2c7729fffaec320 (patch) | |
tree | f76a64838f4f7c71ec4bc121d8ec238235c40a5a /libavcodec/avcodec.h | |
parent | 9073ca6c6ebb9e3e9b60d968b7aa16cc8b6d558d (diff) | |
download | ffmpeg-8ed2ae09a25e5860342b97f7c2c7729fffaec320.tar.gz |
lavc: mark hurry_up for removal on next major bump
It has been deprecated for about five years, skip_idct/skip_frame should
be used instead.
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 4cd78a373e..2122545131 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -1320,13 +1320,15 @@ typedef struct AVCodecContext { int b_frame_strategy; +#if FF_API_HURRY_UP /** * hurry up amount * - encoding: unused * - decoding: Set by user. 1-> Skip B-frames, 2-> Skip IDCT/dequant too, 5-> Skip everything except header * @deprecated Deprecated in favor of skip_idct and skip_frame. */ - int hurry_up; + attribute_deprecated int hurry_up; +#endif struct AVCodec *codec; |