diff options
author | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-07-04 18:54:44 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <ceffmpeg@gmail.com> | 2018-07-04 18:54:44 +0200 |
commit | e25c25ebd8173e2b3eec469bd059de9306d628ec (patch) | |
tree | 4d5cba49caacf9471ce92b779b5632145caacd0e | |
parent | 1ecdcb61b0acf4a1f9bce002bff5d08b8a3e1213 (diff) | |
download | ffmpeg-e25c25ebd8173e2b3eec469bd059de9306d628ec.tar.gz |
lavc/atrac9tab: Add inclusion guards.
Fixes fate-source.
-rw-r--r-- | libavcodec/atrac9tab.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 <stdint.h> enum ATRAC9BlockType { @@ -1624,3 +1627,5 @@ static const HuffmanCodebook at9_huffman_coeffs[][8][4] = { }, }, }; + +#endif /* AVCODEC_ATRAC9TAB_H */ |