diff options
author | Mans Rullgard <mans@mansr.com> | 2012-04-20 14:31:08 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-04-21 18:30:01 +0100 |
commit | 95510be8c35753da8f48062b28b65e7acdab965f (patch) | |
tree | a3c2fe786b840cf891a5230f84e3f555ee055c38 /libavcodec/version.h | |
parent | 2994913d70050b8951e83b57c12baa7e4cf7e47e (diff) | |
download | ffmpeg-95510be8c35753da8f48062b28b65e7acdab965f.tar.gz |
avcodec: remove AVCodecContext.dsp_mask
This removes all references to AVCodecContext.dsp_mask and marks
it for eviction at the next version bump. It has been superseded
by av_set_cpu_flag_mask() which, unlike this field, works everywhere.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index 58a228c4a2..5119874379 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -68,5 +68,8 @@ #ifndef FF_API_SUB_ID #define FF_API_SUB_ID (LIBAVCODEC_VERSION_MAJOR < 55) #endif +#ifndef FF_API_DSP_MASK +#define FF_API_DSP_MASK (LIBAVCODEC_VERSION_MAJOR < 55) +#endif #endif /* AVCODEC_VERSION_H */ |