diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-02 18:41:21 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-02 18:53:57 +0100 |
commit | eba0e289ae72fbbb13d5dedd80e7678a201d6e6e (patch) | |
tree | ba18cfc95674f422881df1dfa361934bd7067794 /libavutil | |
parent | 146f99cfecb243f55e6e759dc1c754839ae0ade7 (diff) | |
download | ffmpeg-eba0e289ae72fbbb13d5dedd80e7678a201d6e6e.tar.gz |
opt: remove attribute_deprecated from several functions that do not have adequante replacements.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/opt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/opt.h b/libavutil/opt.h index d10b98512a..f8a14e0876 100644 --- a/libavutil/opt.h +++ b/libavutil/opt.h @@ -340,9 +340,9 @@ attribute_deprecated const AVOption *av_set_double(void *obj, const char *name, attribute_deprecated const AVOption *av_set_q(void *obj, const char *name, AVRational n); attribute_deprecated const AVOption *av_set_int(void *obj, const char *name, int64_t n); -attribute_deprecated double av_get_double(void *obj, const char *name, const AVOption **o_out); -attribute_deprecated AVRational av_get_q(void *obj, const char *name, const AVOption **o_out); -attribute_deprecated int64_t av_get_int(void *obj, const char *name, const AVOption **o_out); +double av_get_double(void *obj, const char *name, const AVOption **o_out); +AVRational av_get_q(void *obj, const char *name, const AVOption **o_out); +int64_t av_get_int(void *obj, const char *name, const AVOption **o_out); attribute_deprecated const char *av_get_string(void *obj, const char *name, const AVOption **o_out, char *buf, int buf_len); attribute_deprecated const AVOption *av_next_option(void *obj, const AVOption *last); #endif |