diff options
Diffstat (limited to 'contrib/ffmpeg/libavcodec/cookdata.h')
-rw-r--r-- | contrib/ffmpeg/libavcodec/cookdata.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/ffmpeg/libavcodec/cookdata.h b/contrib/ffmpeg/libavcodec/cookdata.h index 395c9a7dd..38beef41c 100644 --- a/contrib/ffmpeg/libavcodec/cookdata.h +++ b/contrib/ffmpeg/libavcodec/cookdata.h @@ -18,7 +18,6 @@ * 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 - * */ /** @@ -26,6 +25,11 @@ * Cook AKA RealAudio G2 compatible decoderdata */ +#ifndef FFMPEG_COOKDATA_H +#define FFMPEG_COOKDATA_H + +#include <stdint.h> + /* various data tables */ static const int expbits_tab[8] = { @@ -557,3 +561,5 @@ static const float cplscale6[63] = { static const float* cplscales[5] = { cplscale2, cplscale3, cplscale4, cplscale5, cplscale6, }; + +#endif /* FFMPEG_COOKDATA_H */ |