From e25c25ebd8173e2b3eec469bd059de9306d628ec Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Wed, 4 Jul 2018 18:54:44 +0200 Subject: [PATCH] lavc/atrac9tab: Add inclusion guards. Fixes fate-source. --- libavcodec/atrac9tab.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libavcodec/atrac9tab.h b/libavcodec/atrac9tab.h index adb10fb027..f245656fd9 100644 --- a/libavcodec/atrac9tab.h +++ b/libavcodec/atrac9tab.h @@ -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 enum ATRAC9BlockType { @@ -1624,3 +1627,5 @@ static const HuffmanCodebook at9_huffman_coeffs[][8][4] = { }, }, }; + +#endif /* AVCODEC_ATRAC9TAB_H */