# HG changeset patch # User diego # Date 1194628668 0 # Node ID cc060c71ad5cf16d88c985070283acaf30dc22c7 # Parent 72466750cdcdcbc5fde21fbaa5444181e5c93c5a Add missing header file, fixes the warnings: In file included from vf_fspp.c:46: ../libavcodec/dsputil.h: In function 'copy_block2': ../libavcodec/dsputil.h:675: warning: implicit declaration of function 'AV_WN16' ../libavcodec/dsputil.h:675: warning: implicit declaration of function 'AV_RN16' ../libavcodec/dsputil.h: In function 'copy_block4': ../libavcodec/dsputil.h:686: warning: implicit declaration of function 'AV_WN32' ../libavcodec/dsputil.h:686: warning: implicit declaration of function 'AV_RN32' diff -r 72466750cdcd -r cc060c71ad5c libmpcodecs/vf_fspp.c --- a/libmpcodecs/vf_fspp.c Fri Nov 09 16:28:37 2007 +0000 +++ b/libmpcodecs/vf_fspp.c Fri Nov 09 17:17:48 2007 +0000 @@ -41,6 +41,7 @@ #include "mp_msg.h" #include "cpudetect.h" +#include "libavutil/intreadwrite.h" #include "libavcodec/avcodec.h" #include "libavcodec/dsputil.h"