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.

Originally committed as revision 21221 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2010-01-15 03:42:56 +00:00
parent e2dd8586d8
commit 7c2de274e7

View File

@ -1298,4 +1298,6 @@ static void decode_mb_skip(H264Context *h){
h->prev_mb_skipped= 1;
}
#include "h264_mvpred.h" //For pred_pskip_motion()
#endif /* AVCODEC_H264_H */