]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/faandct.h
Use enum CodecID where appropriate.
[ffmpeg] / libavcodec / faandct.h
index a7b11dc365badf42c8c93b96635b7ebb1fad18df..a69301c1d4cb5b16e40a1961f7c952e9bcc84e8a 100644 (file)
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
  */
 
 /**
- * @file faandct.h
+ * @file libavcodec/faandct.h
  * @brief
  *     Floating point AAN DCT
  * @author Michael Niedermayer <michaelni@gmx.at>
  */
 
+#ifndef AVCODEC_FAANDCT_H
+#define AVCODEC_FAANDCT_H
+
 #include "dsputil.h"
 
 #define FAAN_POSTSCALE
 
 void ff_faandct(DCTELEM * data);
 void ff_faandct248(DCTELEM * data);
+
+#endif /* AVCODEC_FAANDCT_H */