From d15c21e5fa3961f10026da1a3080a3aa3cf4cec9 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Sat, 20 Oct 2012 13:32:01 +0300 Subject: avutil: Add a copy of ff_sqrt_tab back into avutil to restore ABI compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Earlier versions of for instance of libavcodec expect this symbol to be present in libavutil. This commit can be reverted after the next major bump. New shared builds of avcodec will link to the internal copy of the table within that library, so those builds won't rely on this table being present in avutil any longer either. Signed-off-by: Martin Storsjö --- libavutil/Makefile | 1 + libavutil/sqrt_tab.c | 1 + 2 files changed, 2 insertions(+) create mode 100644 libavutil/sqrt_tab.c (limited to 'libavutil') diff --git a/libavutil/Makefile b/libavutil/Makefile index 227a57efc2..3451a7c679 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -84,6 +84,7 @@ OBJS = adler32.o \ rc4.o \ samplefmt.o \ sha.o \ + sqrt_tab.o \ time.o \ tree.o \ utils.o \ diff --git a/libavutil/sqrt_tab.c b/libavutil/sqrt_tab.c new file mode 100644 index 0000000000..e3d978b569 --- /dev/null +++ b/libavutil/sqrt_tab.c @@ -0,0 +1 @@ +#include "libavcodec/sqrt_tab.c" -- cgit v1.2.3