diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-19 07:26:42 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-19 07:26:42 +0200 |
commit | 9dd3da1061e34f13f5f233274ed10c0a4da41dfe (patch) | |
tree | 989077396fc1006b62dbe1af155d2c17f396e1ff /libswresample | |
parent | b5875b91113a0f3de6ad61e9ff8b74b81de94760 (diff) | |
download | ffmpeg-streaming-9dd3da1061e34f13f5f233274ed10c0a4da41dfe.zip ffmpeg-streaming-9dd3da1061e34f13f5f233274ed10c0a4da41dfe.tar.gz |
swr: fix shared lib build
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample')
-rw-r--r-- | libswresample/Makefile | 2 | ||||
-rw-r--r-- | libswresample/libswresample.v | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libswresample/Makefile b/libswresample/Makefile index 33b8ea0..7435162 100644 --- a/libswresample/Makefile +++ b/libswresample/Makefile @@ -9,4 +9,4 @@ OBJS = swresample.o audioconvert.o resample2.o rematrix.o TESTPROGS = swresample_test -include $(SUBDIR)../subdir.mak +include $(SRC_PATH)/subdir.mak diff --git a/libswresample/libswresample.v b/libswresample/libswresample.v new file mode 100644 index 0000000..af21811 --- /dev/null +++ b/libswresample/libswresample.v @@ -0,0 +1,4 @@ +LIBSWRESAMPLE_$MAJOR { + global: swr_*; ff_*; + local: *; +}; |