diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-02-03 14:58:59 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-19 18:41:00 +0200 |
commit | 41d0eb1c81c0d266824dfdbd040a54a6afeec81a (patch) | |
tree | 016d1199a47c58edd240e5dc25b46927365badfe /libavcodec/opt.h | |
parent | 01a4259b8db344586b371528973439109f3e2ace (diff) | |
download | ffmpeg-41d0eb1c81c0d266824dfdbd040a54a6afeec81a.tar.gz |
lavc: remove the FF_API_SET_STRING_OLD cruft.
Diffstat (limited to 'libavcodec/opt.h')
-rw-r--r-- | libavcodec/opt.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/libavcodec/opt.h b/libavcodec/opt.h deleted file mode 100644 index ece54aad24..0000000000 --- a/libavcodec/opt.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * AVOptions - * copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at> - * - * This file is part of Libav. - * - * Libav is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * Libav is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with Libav; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef AVCODEC_OPT_H -#define AVCODEC_OPT_H - -/** - * @file - * AVOptions - */ - -#include "libavutil/rational.h" -#include "avcodec.h" -#include "libavutil/opt.h" - -#if FF_API_SET_STRING_OLD -/** - * @see av_set_string2() - */ -attribute_deprecated const AVOption *av_set_string(void *obj, const char *name, const char *val); - -/** - * @return a pointer to the AVOption corresponding to the field set or - * NULL if no matching AVOption exists, or if the value val is not - * valid - * @see av_set_string3() - */ -attribute_deprecated const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc); -#endif - -#endif /* AVCODEC_OPT_H */ |