Browse Source

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
tags/v0.6
Alexander Strange 16 years ago
parent
commit
7ffd8332c7
3 changed files with 3 additions and 0 deletions
  1. +1
    -0
      libavcodec/ituh263enc.c
  2. +1
    -0
      libavcodec/mpegvideo_enc.c
  3. +1
    -0
      libavcodec/svq1enc.c

+ 1
- 0
libavcodec/ituh263enc.c View File

@@ -38,6 +38,7 @@
#include "unary.h"
#include "flv.h"
#include "mpeg4video.h"
#include "internal.h"

//#undef NDEBUG
//#include <assert.h>


+ 1
- 0
libavcodec/mpegvideo_enc.c View File

@@ -38,6 +38,7 @@
#include "aandcttab.h"
#include "flv.h"
#include "mpeg4video.h"
#include "internal.h"
#include <limits.h>

//#undef NDEBUG


+ 1
- 0
libavcodec/svq1enc.c View File

@@ -31,6 +31,7 @@
#include "dsputil.h"
#include "mpegvideo.h"
#include "h263.h"
#include "internal.h"

#include "svq1.h"
#include "svq1enc_cb.h"


Loading…
Cancel
Save