# HG changeset patch # User michael # Date 1263526976 0 # Node ID 4701b9355d93d45679f5ac1a065ed3b4c5b3830b # Parent 5d34ab807e917315d5d8d09369c8cc2f40109b43 Add forgotten include of h264_mvpred.h to h264.h. This could have caused the linking failure of pred_pskip_motion() missing if a compiler included never used static functions. diff -r 5d34ab807e91 -r 4701b9355d93 h264.h --- a/h264.h Fri Jan 15 03:41:28 2010 +0000 +++ b/h264.h Fri Jan 15 03:42:56 2010 +0000 @@ -1298,4 +1298,6 @@ h->prev_mb_skipped= 1; } +#include "h264_mvpred.h" //For pred_pskip_motion() + #endif /* AVCODEC_H264_H */