diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-17 16:58:04 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-21 13:48:10 +0200 |
commit | 153382e1b6b428a1dcb8dc3f06f64a6959d722c5 (patch) | |
tree | 1ff13033a808528d90b44a288dbf9bcc7c19b34e /libavformat/spdif.h | |
parent | d49051e0742c09345495ae0486c3601a15222ac4 (diff) | |
download | ffmpeg-153382e1b6b428a1dcb8dc3f06f64a6959d722c5.tar.gz |
multiple inclusion guard cleanup
Add missing multiple inclusion guards; clean up #endif comments;
add missing library prefixes; keep guard names consistent.
Diffstat (limited to 'libavformat/spdif.h')
-rw-r--r-- | libavformat/spdif.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/spdif.h b/libavformat/spdif.h index dedb4e8832..b2a6b63be4 100644 --- a/libavformat/spdif.h +++ b/libavformat/spdif.h @@ -19,6 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef AVFORMAT_SPDIF_H +#define AVFORMAT_SPDIF_H + #include <stdint.h> #define SYNCWORD1 0xF872 @@ -55,3 +58,5 @@ static const uint16_t spdif_mpeg_pkt_offset[2][3] = { }; void ff_spdif_bswap_buf16(uint16_t *dst, const uint16_t *src, int w); + +#endif /* AVFORMAT_SPDIF_H */ |