Mercurial > mplayer.hg
annotate libswscale/Makefile @ 24992:5701e23ebcb4
Better handling of win32 GUI thread:
1. Use _beginthreadex to create the GUI thread to avoid possible memory leak
when linked to MS CRT.
2. Terminate the GUI thread in an cleaner way using PostThreadMessage()
rather than the unrecommended TerminateThread().
author | zuxy |
---|---|
date | Sun, 11 Nov 2007 08:14:57 +0000 |
parents | 13b688cd5038 |
children | 0bb26e5c076c |
rev | line source |
---|---|
18861 | 1 |
2 include ../config.mak | |
3 | |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
4 NAME=swscale |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
5 LIBVERSION=$(SWSVERSION) |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
6 LIBMAJOR=$(SWSMAJOR) |
18861 | 7 |
20397 | 8 EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) |
9 | |
24285 | 10 OBJS = rgb2rgb.o swscale.o |
21991 | 11 |
12 OBJS-$(CONFIG_GPL) += yuv2rgb.o | |
24285 | 13 OBJS-$(HAVE_ALTIVEC) += yuv2rgb_altivec.o |
18861 | 14 |
24285 | 15 OBJS-$(ARCH_BFIN) += swscale_bfin.o \ |
16 yuv2rgb_bfin.o \ | |
23585
d3ae6979d3df
integrating ff_bfin_get_unscaled_swscale into the system
mhoffman
parents:
23544
diff
changeset
|
17 |
23542
2e13eea875a3
Copile fix: missing libswscale part of ffmpeg r9322 TARGET_ARCH -> ARCH change.
reimar
parents:
23289
diff
changeset
|
18 ASM_OBJS-$(ARCH_BFIN) += internal_bfin.o |
23289
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23122
diff
changeset
|
19 |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
20 HEADERS = swscale.h rgb2rgb.h |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
21 |
20800
5298f5174a8b
Synch with ffmpeg's r6938 "allow spaces in source and build directory names..."
lucabe
parents:
20397
diff
changeset
|
22 include ../common.mak |
19470 | 23 |
24774 | 24 cs_test: cs_test.o $(LIBNAME) |
19470 | 25 |
24774 | 26 swscale-example: swscale-example.o $(LIBNAME) |
23122
8e52146c056f
Don't declare -lm as a dependency of swscale-example.
diego
parents:
22337
diff
changeset
|
27 swscale-example: EXTRALIBS += -lm |
20034 | 28 |
29 clean:: | |
30 rm -f cs_test swscale-example |