diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-02-28 19:24:29 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-07-27 16:08:49 +0200 |
commit | bf4b0ed1d5d323050a87c9f0ad1dd40860eb3da2 (patch) | |
tree | b760a6548cea40fcb5a0b82c1abaf1144cdc38f2 /libavutil | |
parent | 5b097399baa2e38cc513939cfab3a9b6fdbc33df (diff) | |
download | ffmpeg-bf4b0ed1d5d323050a87c9f0ad1dd40860eb3da2.tar.gz |
Add missing deprecation attributes
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pixdesc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h index 143c0fa8b2..b1ba03f089 100644 --- a/libavutil/pixdesc.h +++ b/libavutil/pixdesc.h @@ -23,6 +23,8 @@ #define AVUTIL_PIXDESC_H #include <inttypes.h> + +#include "attributes.h" #include "pixfmt.h" typedef struct AVComponentDescriptor{ @@ -136,7 +138,7 @@ typedef struct AVPixFmtDescriptor{ /** * The array of all the pixel format descriptors. */ -extern const AVPixFmtDescriptor av_pix_fmt_descriptors[]; +extern attribute_deprecated const AVPixFmtDescriptor av_pix_fmt_descriptors[]; #endif /** |