diff options
author | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
commit | 699b3f99d0376a8fd5159bdad857228bda59cff6 (patch) | |
tree | 5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavcodec/h261data.h | |
parent | 99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff) | |
download | ffmpeg-699b3f99d0376a8fd5159bdad857228bda59cff6.tar.gz |
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h261data.h')
-rw-r--r-- | libavcodec/h261data.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/h261data.h b/libavcodec/h261data.h index a7074eb0c6..1831c894ac 100644 --- a/libavcodec/h261data.h +++ b/libavcodec/h261data.h @@ -24,6 +24,9 @@ * H.261 tables. */ +#ifndef AVCODEC_H261DATA_H +#define AVCODEC_H261DATA_H + #include <stdint.h> #include "h261.h" @@ -157,3 +160,5 @@ static RLTable h261_rl_tcoeff = { h261_tcoeff_run, h261_tcoeff_level, }; + +#endif |