diff h264.h @ 10883:4701b9355d93 libavcodec

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.
author michael
date Fri, 15 Jan 2010 03:42:56 +0000
parents 7101061bfa0f
children 2aafcafbe1f0
line wrap: on
line diff
--- 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 */