diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-15 03:41:28 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-15 03:41:28 +0000 |
commit | e2dd8586d85c5f88c534b79dc8a992ec12ba744f (patch) | |
tree | fa465f1bc3b3d88be46f40d63ac0516bf562253f /libavcodec/h264_mvpred.h | |
parent | 798339fb46a2646bddc0121733a90afc3d860f29 (diff) | |
download | ffmpeg-e2dd8586d85c5f88c534b79dc8a992ec12ba744f.tar.gz |
Add forgotton multiple inclusion guards to h264_mvpred.h.
Originally committed as revision 21220 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264_mvpred.h')
-rw-r--r-- | libavcodec/h264_mvpred.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/h264_mvpred.h b/libavcodec/h264_mvpred.h index f6c503a976..675187d906 100644 --- a/libavcodec/h264_mvpred.h +++ b/libavcodec/h264_mvpred.h @@ -25,6 +25,9 @@ * @author Michael Niedermayer <michaelni@gmx.at> */ +#ifndef AVCODEC_H264_MVPRED_H +#define AVCODEC_H264_MVPRED_H + #include "internal.h" #include "avcodec.h" #include "h264.h" @@ -235,3 +238,5 @@ static inline void pred_pskip_motion(H264Context * const h, int * const mx, int return; } + +#endif /* AVCODEC_H264_MVPRED_H */ |