From cb403b2570385cbf48a11f9f48441de5cd01171e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 9 Mar 2014 22:59:46 +0100 Subject: [PATCH] avformat: fix hevcs use of golomb from avformat Signed-off-by: Michael Niedermayer --- libavformat/Makefile | 2 +- libavformat/golomb_tab.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 libavformat/golomb_tab.c diff --git a/libavformat/Makefile b/libavformat/Makefile index a7ad345457..d3cf8efdda 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -50,7 +50,7 @@ OBJS-$(CONFIG_RTPDEC) += rdt.o \ rtpdec_xiph.o \ srtp.o OBJS-$(CONFIG_RTPENC_CHAIN) += rtpenc_chain.o rtp.o -OBJS-$(CONFIG_SHARED) += log2_tab.o +OBJS-$(CONFIG_SHARED) += log2_tab.o golomb_tab.o # muxers/demuxers OBJS-$(CONFIG_A64_MUXER) += a64.o rawenc.o diff --git a/libavformat/golomb_tab.c b/libavformat/golomb_tab.c new file mode 100644 index 0000000000..063fae3647 --- /dev/null +++ b/libavformat/golomb_tab.c @@ -0,0 +1 @@ +#include "libavcodec/golomb.c" -- GitLab