]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/dctref.c
Replace Subversion revisions in comments by Git hashes.
[ffmpeg] / libavcodec / dctref.c
index faad057a9a68f50f7e67ed8dcf12a44b5715c71a..ae3dec51cd5497b09c9beb81d359228fc1bf7020 100644 (file)
@@ -2,25 +2,25 @@
  * reference discrete cosine transform (double precision)
  * Copyright (C) 2009 Dylan Yudaken
  *
- * This file is part of FFmpeg.
+ * This file is part of Libav.
  *
- * FFmpeg is free software; you can redistribute it and/or
+ * 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.
  *
- * FFmpeg 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 FFmpeg; if not, write to the Free Software
+ * License along with Libav; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
- * @file libavcodec/dctref.c
+ * @file
  * reference discrete cosine transform (double precision)
  *
  * @author Dylan Yudaken (dyudaken at gmail)
@@ -30,6 +30,8 @@
  */
 
 #include "libavutil/mathematics.h"
+#include "dctref.h"
+
 static double coefficients[8 * 8];
 
 /**