Mercurial > mplayer.hg
annotate libswscale/Makefile @ 23295:ab885f928444
Fix double free() in demux_asf.c
If demux_open_asf() fails it frees the demuxer->priv field before
returning. Then demuxer.c calls demux_close_asf() which frees the field
again. Fix by removing the free() in demux_open_asf().
author | uau |
---|---|
date | Mon, 14 May 2007 01:23:54 +0000 |
parents | 786823779b67 |
children | 2e13eea875a3 |
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 | |
21683
befebdb3ebaa
Allow to compile swscale's non-SIMD code under the LGPL license.
lucabe
parents:
20800
diff
changeset
|
10 OBJS= swscale.o rgb2rgb.o |
21991 | 11 |
12 OBJS-$(TARGET_ALTIVEC) += yuv2rgb_altivec.o | |
13 OBJS-$(CONFIG_GPL) += yuv2rgb.o | |
18861 | 14 |
23289
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23122
diff
changeset
|
15 OBJS-$(TARGET_ARCH_BFIN) += yuv2rgb_bfin.o |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23122
diff
changeset
|
16 ASM_OBJS-$(TARGET_ARCH_BFIN) += internal_bfin.o |
786823779b67
Blackfin optimized YUV420 to RGB CSC Color Space Converters.
gpoirier
parents:
23122
diff
changeset
|
17 |
18989
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
18 HEADERS = swscale.h rgb2rgb.h |
f0e9de2b3780
make libswscale build system similar to the libav* one
lucabe
parents:
18861
diff
changeset
|
19 |
20800
5298f5174a8b
Synch with ffmpeg's r6938 "allow spaces in source and build directory names..."
lucabe
parents:
20397
diff
changeset
|
20 include ../common.mak |
19470 | 21 |
22030 | 22 cs_test: cs_test.o $(LIB) |
19470 | 23 |
23122
8e52146c056f
Don't declare -lm as a dependency of swscale-example.
diego
parents:
22337
diff
changeset
|
24 swscale-example: swscale-example.o $(LIB) |
8e52146c056f
Don't declare -lm as a dependency of swscale-example.
diego
parents:
22337
diff
changeset
|
25 swscale-example: EXTRALIBS += -lm |
20034 | 26 |
27 clean:: | |
28 rm -f cs_test swscale-example |