summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-01-15 03:42:56 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-01-15 03:42:56 +0000
commit7c2de274e7ae6743cbd3f3f8b1aeebdf353cfdf5 (patch)
tree36b963233e8863a0232715f7f30c388bc8b294b6
parente2dd8586d85c5f88c534b79dc8a992ec12ba744f (diff)
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
-rw-r--r--libavcodec/h264.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index 68445427ea..cf7fdc618b 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -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 */