Commit e68ed1c6 authored by lucabe's avatar lucabe

Do not use a fake libavcodec/swscale.h, but always use the real one

(from libswscale) instead


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6777 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7a2992b5
...@@ -7,14 +7,10 @@ include config.mak ...@@ -7,14 +7,10 @@ include config.mak
VPATH=$(SRC_PATH) VPATH=$(SRC_PATH)
CFLAGS=$(OPTFLAGS) -I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \ CFLAGS=$(OPTFLAGS) -I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \
-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavformat \ -I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libswscale \
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_ISOC9X_SOURCE
LDFLAGS+= -g LDFLAGS+= -g
ifeq ($(CONFIG_SWSCALER),yes)
CFLAGS := -I$(SRC_PATH)/libswscale $(CFLAGS)
endif
MANPAGES=doc/ffmpeg.1 MANPAGES=doc/ffmpeg.1
PROGS_G+=ffmpeg_g$(EXESUF) PROGS_G+=ffmpeg_g$(EXESUF)
PROGS+=ffmpeg$(EXESUF) PROGS+=ffmpeg$(EXESUF)
...@@ -166,9 +162,7 @@ install-headers: ...@@ -166,9 +162,7 @@ install-headers:
ifeq ($(CONFIG_PP),yes) ifeq ($(CONFIG_PP),yes)
$(MAKE) -C libpostproc install-headers $(MAKE) -C libpostproc install-headers
endif endif
ifeq ($(CONFIG_SWSCALER),yes)
$(MAKE) -C libswscale install-headers $(MAKE) -C libswscale install-headers
endif
uninstall: uninstall-progs uninstall-libs uninstall-headers uninstall-man uninstall-vhook uninstall: uninstall-progs uninstall-libs uninstall-headers uninstall-man uninstall-vhook
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
# #
include ../config.mak include ../config.mak
CFLAGS+=$(AMR_CFLAGS) CFLAGS+=-I$(SRC_PATH)/libswscale $(AMR_CFLAGS)
OBJS= bitstream.o \ OBJS= bitstream.o \
utils.o \ utils.o \
...@@ -45,9 +45,6 @@ OBJS= bitstream.o \ ...@@ -45,9 +45,6 @@ OBJS= bitstream.o \
HEADERS = avcodec.h opt.h HEADERS = avcodec.h opt.h
ifneq ($(CONFIG_SWSCALER),yes)
HEADERS += swscale.h
endif
OBJS-$(CONFIG_AASC_DECODER) += aasc.o OBJS-$(CONFIG_AASC_DECODER) += aasc.o
OBJS-$(CONFIG_AC3_ENCODER) += ac3enc.o OBJS-$(CONFIG_AC3_ENCODER) += ac3enc.o
......
...@@ -47,6 +47,11 @@ ...@@ -47,6 +47,11 @@
#define LINE_BUF_HEIGHT (NB_TAPS * 4) #define LINE_BUF_HEIGHT (NB_TAPS * 4)
struct SwsContext {
struct ImgReSampleContext *resampling_ctx;
enum PixelFormat src_pix_fmt, dst_pix_fmt;
};
struct ImgReSampleContext { struct ImgReSampleContext {
int iwidth, iheight, owidth, oheight; int iwidth, iheight, owidth, oheight;
int topBand, bottomBand, leftBand, rightBand; int topBand, bottomBand, leftBand, rightBand;
......
/*
* copyright (C) 2006 Luca Abeni
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* FFmpeg is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef SWSCALE_EMU_H
#define SWSCALE_EMU_H
#ifdef __cplusplus
extern "C" {
#endif
/* Dummy, only useful for compilation! */
#define SWS_FAST_BILINEAR 1
#define SWS_BILINEAR 2
#define SWS_BICUBIC 4
#define SWS_X 8
#define SWS_POINT 0x10
#define SWS_AREA 0x20
#define SWS_BICUBLIN 0x40
#define SWS_GAUSS 0x80
#define SWS_SINC 0x100
#define SWS_LANCZOS 0x200
#define SWS_SPLINE 0x400
#define SwsFilter void
struct SwsContext {
struct ImgReSampleContext *resampling_ctx;
enum PixelFormat src_pix_fmt, dst_pix_fmt;
};
struct SwsContext *sws_getContext(int srcW, int srcH, int srcFormat,
int dstW, int dstH, int dstFormat,
int flags, SwsFilter *srcFilter,
SwsFilter *dstFilter, double *param);
int sws_scale(struct SwsContext *ctx, uint8_t* src[], int srcStride[],
int srcSliceY, int srcSliceH, uint8_t* dst[], int dstStride[]);
void sws_freeContext(struct SwsContext *swsContext);
struct SwsContext *sws_getCachedContext(struct SwsContext *context,
int srcW, int srcH, int srcFormat,
int dstW, int dstH, int dstFormat, int flags,
SwsFilter *srcFilter, SwsFilter *dstFilter, double *param);
#ifdef __cplusplus
}
#endif
#endif /* SWSCALE_EMU_H */
...@@ -3,13 +3,9 @@ include ../config.mak ...@@ -3,13 +3,9 @@ include ../config.mak
VPATH=$(SRC_PATH)/vhook VPATH=$(SRC_PATH)/vhook
CFLAGS=-I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \ CFLAGS=-I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \
-I$(SRC_PATH)/libavformat $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libswscale $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H
LDFLAGS+= -g LDFLAGS+= -g
ifeq ($(CONFIG_SWSCALER),yes)
CFLAGS := -I$(SRC_PATH)/libswscale $(CFLAGS)
endif
HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF) HOOKS=null$(SLIBSUF) fish$(SLIBSUF) ppm$(SLIBSUF) watermark$(SLIBSUF)
ALLHOOKS=$(HOOKS) imlib2$(SLIBSUF) drawtext$(SLIBSUF) ALLHOOKS=$(HOOKS) imlib2$(SLIBSUF) drawtext$(SLIBSUF)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment