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/pthread.c | |
parent | 9073ca6c6ebb9e3e9b60d968b7aa16cc8b6d558d (diff) | |
download | ffmpeg-streaming-8ed2ae09a25e5860342b97f7c2c7729fffaec320.zip ffmpeg-streaming-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/pthread.c')
-rw-r--r-- | libavcodec/pthread.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c index d6086d6..c40fde3 100644 --- a/libavcodec/pthread.c +++ b/libavcodec/pthread.c @@ -380,7 +380,9 @@ static void update_context_from_user(AVCodecContext *dst, AVCodecContext *src) dst->release_buffer = src->release_buffer; dst->opaque = src->opaque; +#if FF_API_HURRY_UP dst->hurry_up = src->hurry_up; +#endif dst->dsp_mask = src->dsp_mask; dst->debug = src->debug; dst->debug_mv = src->debug_mv; |