diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2010-09-30 20:34:35 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2010-09-30 20:34:35 +0000 |
commit | 838dc131f1d6f1892878de372c7e2ea75fc205d3 (patch) | |
tree | c1044aae5121e56f7c8263bad2ec69be599e2521 /libavcodec/opt.c | |
parent | 0743de4ffd063d17df7a66aa579746c4f427ae1a (diff) | |
download | ffmpeg-838dc131f1d6f1892878de372c7e2ea75fc205d3.tar.gz |
add FF_API_SET_STRING_OLD define to disable the deprecated av_set_string API
Originally committed as revision 25276 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/opt.c')
-rw-r--r-- | libavcodec/opt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/opt.c b/libavcodec/opt.c index fed9ae9930..ffa422ec93 100644 --- a/libavcodec/opt.c +++ b/libavcodec/opt.c @@ -65,7 +65,7 @@ FF_SYMVER(void, av_opt_set_defaults2, (void *s, int mask, int flags), "LIBAVCODE } #endif -#if LIBAVCODEC_VERSION_MAJOR < 53 +#if FF_API_SET_STRING_OLD const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc){ const AVOption *o; if (av_set_string3(obj, name, val, alloc, &o) < 0) |