diff options
author | Alexander Strange <astrange@ithinksw.com> | 2010-01-11 04:57:04 +0000 |
---|---|---|
committer | Alexander Strange <astrange@ithinksw.com> | 2010-01-11 04:57:04 +0000 |
commit | 7ffd8332c7fa25174fad540d71e79f538d45a9a3 (patch) | |
tree | 6583dc3e89809e22a439fe61b930b968ed060e5e | |
parent | 2c8077621b6466da205ba26fd20a9c906bb71893 (diff) | |
download | ffmpeg-7ffd8332c7fa25174fad540d71e79f538d45a9a3.tar.gz |
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'
Originally committed as revision 21133 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ituh263enc.c | 1 | ||||
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 1 | ||||
-rw-r--r-- | libavcodec/svq1enc.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/ituh263enc.c b/libavcodec/ituh263enc.c index 5031dd5672..158373bef0 100644 --- a/libavcodec/ituh263enc.c +++ b/libavcodec/ituh263enc.c @@ -38,6 +38,7 @@ #include "unary.h" #include "flv.h" #include "mpeg4video.h" +#include "internal.h" //#undef NDEBUG //#include <assert.h> diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 44cf3694cc..2f72911568 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -38,6 +38,7 @@ #include "aandcttab.h" #include "flv.h" #include "mpeg4video.h" +#include "internal.h" #include <limits.h> //#undef NDEBUG diff --git a/libavcodec/svq1enc.c b/libavcodec/svq1enc.c index ebe39c6c14..6fe6ffb5af 100644 --- a/libavcodec/svq1enc.c +++ b/libavcodec/svq1enc.c @@ -31,6 +31,7 @@ #include "dsputil.h" #include "mpegvideo.h" #include "h263.h" +#include "internal.h" #include "svq1.h" #include "svq1enc_cb.h" |