comparison h264_mvpred.h @ 10882:5d34ab807e91 libavcodec

Add forgotton multiple inclusion guards to h264_mvpred.h.
author michael
date Fri, 15 Jan 2010 03:41:28 +0000
parents e3f5eb016712
children 84c0a4d9d7f5
comparison
equal deleted inserted replaced
10881:798c62217427 10882:5d34ab807e91
22 /** 22 /**
23 * @file libavcodec/h264_mvpred.h 23 * @file libavcodec/h264_mvpred.h
24 * H.264 / AVC / MPEG4 part10 motion vector predicion. 24 * H.264 / AVC / MPEG4 part10 motion vector predicion.
25 * @author Michael Niedermayer <michaelni@gmx.at> 25 * @author Michael Niedermayer <michaelni@gmx.at>
26 */ 26 */
27
28 #ifndef AVCODEC_H264_MVPRED_H
29 #define AVCODEC_H264_MVPRED_H
27 30
28 #include "internal.h" 31 #include "internal.h"
29 #include "avcodec.h" 32 #include "avcodec.h"
30 #include "h264.h" 33 #include "h264.h"
31 34
233 236
234 pred_motion(h, 0, 4, 0, 0, mx, my); 237 pred_motion(h, 0, 4, 0, 0, mx, my);
235 238
236 return; 239 return;
237 } 240 }
241
242 #endif /* AVCODEC_H264_MVPRED_H */