X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Ffaandct.h;h=cd9823618b203bb7a4fbd9a921cfa54f5bd6c2ed;hb=71f7b22dba60524b2285643ae0b49d8f64977129;hp=cf6f128f15faa3257b80a9165c4973a9b4ae6aab;hpb=65e4c8c919c63b947b157bdb8f141685b6553fba;p=ffmpeg diff --git a/libavcodec/faandct.h b/libavcodec/faandct.h index cf6f128f15f..cd9823618b2 100644 --- a/libavcodec/faandct.h +++ b/libavcodec/faandct.h @@ -2,27 +2,36 @@ * Floating point AAN DCT * Copyright (c) 2003 Michael Niedermayer * - * This library is free software; you can redistribute it and/or + * 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 of the License, or (at your option) any later version. + * version 2.1 of the License, or (at your option) any later version. * - * This library is distributed in the hope that it will be useful, + * 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 this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * License along with Libav; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** - * @file faandct.h - * @brief + * @file + * @brief * Floating point AAN DCT * @author Michael Niedermayer */ - + +#ifndef AVCODEC_FAANDCT_H +#define AVCODEC_FAANDCT_H + +#include "dsputil.h" + void ff_faandct(DCTELEM * data); +void ff_faandct248(DCTELEM * data); + +#endif /* AVCODEC_FAANDCT_H */