Add missing deprecation attributes

pull/37/head
Diego Biurrun 12 years ago
parent 5b097399ba
commit bf4b0ed1d5
  1. 3
      libavcodec/avcodec.h
  2. 5
      libavfilter/avfilter.h
  3. 4
      libavutil/pixdesc.h

@ -29,6 +29,7 @@
#include <errno.h> #include <errno.h>
#include "libavutil/samplefmt.h" #include "libavutil/samplefmt.h"
#include "libavutil/attributes.h"
#include "libavutil/avutil.h" #include "libavutil/avutil.h"
#include "libavutil/buffer.h" #include "libavutil/buffer.h"
#include "libavutil/cpu.h" #include "libavutil/cpu.h"
@ -1772,7 +1773,7 @@ typedef struct AVCodecContext {
* - decoding: Set by user. * - decoding: Set by user.
* @deprecated Deprecated in favor of request_channel_layout. * @deprecated Deprecated in favor of request_channel_layout.
*/ */
int request_channels; attribute_deprecated int request_channels;
#endif #endif
/** /**

@ -33,6 +33,7 @@
* @{ * @{
*/ */
#include "libavutil/attributes.h"
#include "libavutil/avutil.h" #include "libavutil/avutil.h"
#include "libavutil/frame.h" #include "libavutil/frame.h"
#include "libavutil/log.h" #include "libavutil/log.h"
@ -563,14 +564,14 @@ struct AVFilterContext {
AVFilterPad *input_pads; ///< array of input pads AVFilterPad *input_pads; ///< array of input pads
AVFilterLink **inputs; ///< array of pointers to input links AVFilterLink **inputs; ///< array of pointers to input links
#if FF_API_FOO_COUNT #if FF_API_FOO_COUNT
unsigned input_count; ///< @deprecated use nb_inputs attribute_deprecated unsigned input_count; ///< @deprecated use nb_inputs
#endif #endif
unsigned nb_inputs; ///< number of input pads unsigned nb_inputs; ///< number of input pads
AVFilterPad *output_pads; ///< array of output pads AVFilterPad *output_pads; ///< array of output pads
AVFilterLink **outputs; ///< array of pointers to output links AVFilterLink **outputs; ///< array of pointers to output links
#if FF_API_FOO_COUNT #if FF_API_FOO_COUNT
unsigned output_count; ///< @deprecated use nb_outputs attribute_deprecated unsigned output_count; ///< @deprecated use nb_outputs
#endif #endif
unsigned nb_outputs; ///< number of output pads unsigned nb_outputs; ///< number of output pads

@ -23,6 +23,8 @@
#define AVUTIL_PIXDESC_H #define AVUTIL_PIXDESC_H
#include <inttypes.h> #include <inttypes.h>
#include "attributes.h"
#include "pixfmt.h" #include "pixfmt.h"
typedef struct AVComponentDescriptor{ typedef struct AVComponentDescriptor{
@ -136,7 +138,7 @@ typedef struct AVPixFmtDescriptor{
/** /**
* The array of all the pixel format descriptors. * 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 #endif
/** /**

Loading…
Cancel
Save