Add libavcodec to compiler include flags in order to simplify header

include paths in the source files.
mostly from a patch by Ronald S. Bultje, rbultje ronald.bitfreak net

Originally committed as revision 9034 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje
2007-05-16 09:51:45 +00:00
committed by Diego Biurrun
parent 14b2d01058
commit b550bfaa61
47 changed files with 70 additions and 70 deletions

View File

@@ -22,7 +22,7 @@
* clear_blocks_mmi() by BroadQ
*/
#include "../dsputil.h"
#include "dsputil.h"
#include "mmi.h"
void ff_mmi_idct_put(uint8_t *dest, int line_size, DCTELEM *block);

View File

@@ -26,8 +26,8 @@
*
*/
#include "../common.h"
#include "../dsputil.h"
#include "common.h"
#include "dsputil.h"
#include "mmi.h"
#define BITS_INV_ACC 5 // 4 or 5 for IEEE

View File

@@ -20,9 +20,9 @@
* MMI optimization by Leon van Stuivenberg
*/
#include "../dsputil.h"
#include "../mpegvideo.h"
#include "../avcodec.h"
#include "dsputil.h"
#include "mpegvideo.h"
#include "avcodec.h"
static void dct_unquantize_h263_mmi(MpegEncContext *s,
DCTELEM *block, int n, int qscale)