Browse Source

avformat: fix hevcs use of golomb from avformat

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
cb403b2570
2 changed files with 2 additions and 1 deletions
  1. +1
    -1
      libavformat/Makefile
  2. +1
    -0
      libavformat/golomb_tab.c

+ 1
- 1
libavformat/Makefile View File

@@ -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


+ 1
- 0
libavformat/golomb_tab.c View File

@@ -0,0 +1 @@
#include "libavcodec/golomb.c"

Loading…
Cancel
Save