]> git.sesse.net Git - ffmpeg/commitdiff
lavc/atrac9tab: Add inclusion guards.
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>
Wed, 4 Jul 2018 16:54:44 +0000 (18:54 +0200)
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>
Wed, 4 Jul 2018 16:54:44 +0000 (18:54 +0200)
Fixes fate-source.

libavcodec/atrac9tab.h

index adb10fb027d492f9748b9752629497a1668fd84f..f245656fd9143120ceec74ed128109aef4fbcff8 100644 (file)
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#ifndef AVCODEC_ATRAC9TAB_H
+#define AVCODEC_ATRAC9TAB_H
+
 #include <stdint.h>
 
 enum ATRAC9BlockType {
@@ -1624,3 +1627,5 @@ static const HuffmanCodebook at9_huffman_coeffs[][8][4] = {
         },
     },
 };
+
+#endif /* AVCODEC_ATRAC9TAB_H */