# HG changeset patch # User astrange # Date 1263185824 0 # Node ID f6afc7837f83a8228dfc0a4bc3d3030237a3018f # Parent 77dbd6ab2db918a9cbac285706747564b7b468ea Add missing internal.h to files calling ff_match_2uint16(). Fixes warnings: libavcodec/mpegvideo_enc.c:574: warning: implicit declaration of function 'ff_match_2uint16' libavcodec/ituh263enc.c:143: warning: implicit declaration of function 'ff_match_2uint16' libavcodec/svq1enc.c:97: warning: implicit declaration of function 'ff_match_2uint16' diff -r 77dbd6ab2db9 -r f6afc7837f83 ituh263enc.c --- a/ituh263enc.c Mon Jan 11 02:52:50 2010 +0000 +++ b/ituh263enc.c Mon Jan 11 04:57:04 2010 +0000 @@ -38,6 +38,7 @@ #include "unary.h" #include "flv.h" #include "mpeg4video.h" +#include "internal.h" //#undef NDEBUG //#include diff -r 77dbd6ab2db9 -r f6afc7837f83 mpegvideo_enc.c --- a/mpegvideo_enc.c Mon Jan 11 02:52:50 2010 +0000 +++ b/mpegvideo_enc.c Mon Jan 11 04:57:04 2010 +0000 @@ -38,6 +38,7 @@ #include "aandcttab.h" #include "flv.h" #include "mpeg4video.h" +#include "internal.h" #include //#undef NDEBUG diff -r 77dbd6ab2db9 -r f6afc7837f83 svq1enc.c --- a/svq1enc.c Mon Jan 11 02:52:50 2010 +0000 +++ b/svq1enc.c Mon Jan 11 04:57:04 2010 +0000 @@ -31,6 +31,7 @@ #include "dsputil.h" #include "mpegvideo.h" #include "h263.h" +#include "internal.h" #include "svq1.h" #include "svq1enc_cb.h"