diff options
author | Måns Rullgård | 2007-06-17 00:01:30 +0000 |
---|---|---|
committer | Måns Rullgård | 2007-06-17 00:01:30 +0000 |
commit | 699b3f99d0376a8fd5159bdad857228bda59cff6 (patch) | |
tree | 5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavcodec/h264data.h | |
parent | 99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff) |
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r-- | libavcodec/h264data.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h index c9e71853fc..6a15aa239f 100644 --- a/libavcodec/h264data.h +++ b/libavcodec/h264data.h @@ -27,6 +27,9 @@ * @author Michael Niedermayer <michaelni@gmx.at> */ +#ifndef AVCODEC_H264DATA_H +#define AVCODEC_H264DATA_H + #include <stdint.h> #include "mpegvideo.h" #include "rational.h" @@ -1325,3 +1328,5 @@ static const int cabac_context_init_PB[3][460][2] = { 31, 12 }, { 37, 23 }, { 31, 38 }, { 20, 64 }, } }; + +#endif |