diff options
Diffstat (limited to 'contrib/ffmpeg/libavcodec/imcdata.h')
-rw-r--r-- | contrib/ffmpeg/libavcodec/imcdata.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/ffmpeg/libavcodec/imcdata.h b/contrib/ffmpeg/libavcodec/imcdata.h index 92ed275f1..75f4fd744 100644 --- a/contrib/ffmpeg/libavcodec/imcdata.h +++ b/contrib/ffmpeg/libavcodec/imcdata.h @@ -19,9 +19,13 @@ * 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 - * */ +#ifndef FFMPEG_IMCDATA_H +#define FFMPEG_IMCDATA_H + +#include <stdint.h> + static const uint16_t band_tab[33] = { 0, 3, 6, 9, 12, 16, 20, 24, 29, 34, 40, 46, 53, 60, 68, 76, 84, 93, 102, 111, 121, 131, @@ -162,3 +166,4 @@ static const uint16_t imc_huffman_bits[4][4][18] = { } }; +#endif /* FFMPEG_IMCDATA_H */ |