/*1* This file is part of FFmpeg.2*3* FFmpeg is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* FFmpeg is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with FFmpeg; if not, write to the Free Software15* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA16*/1718#ifndef AVRESAMPLE_VERSION_H19#define AVRESAMPLE_VERSION_H2021/**22* @file23* @ingroup lavr24* Libavresample version macros.25*/2627#include "libavutil/version.h"2829#define LIBAVRESAMPLE_VERSION_MAJOR 330#define LIBAVRESAMPLE_VERSION_MINOR 031#define LIBAVRESAMPLE_VERSION_MICRO 03233#define LIBAVRESAMPLE_VERSION_INT AV_VERSION_INT(LIBAVRESAMPLE_VERSION_MAJOR, \34LIBAVRESAMPLE_VERSION_MINOR, \35LIBAVRESAMPLE_VERSION_MICRO)36#define LIBAVRESAMPLE_VERSION AV_VERSION(LIBAVRESAMPLE_VERSION_MAJOR, \37LIBAVRESAMPLE_VERSION_MINOR, \38LIBAVRESAMPLE_VERSION_MICRO)39#define LIBAVRESAMPLE_BUILD LIBAVRESAMPLE_VERSION_INT4041#define LIBAVRESAMPLE_IDENT "Lavr" AV_STRINGIFY(LIBAVRESAMPLE_VERSION)4243/**44* FF_API_* defines may be placed below to indicate public API that will be45* dropped at a future version bump. The defines themselves are not part of46* the public API and may change, break or disappear at any time.47*/4849#endif /* AVRESAMPLE_VERSION_H */505152