diff options
author | Clément Bœsch <clement@stupeflix.com> | 2015-02-24 11:22:47 +0100 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2015-02-24 11:22:47 +0100 |
commit | cc69ccb6d44042b1f795da66306116b0964af996 (patch) | |
tree | a104e68b0d2ca17dca266015eb33bcb9bf41aab3 /libavformat/Makefile | |
parent | 721c916dd55b52935140b602a679739ce098760a (diff) | |
download | ffmpeg-cc69ccb6d44042b1f795da66306116b0964af996.tar.gz |
avformat/nutdec: fix isom and mpa build deps
Fixes the following link error:
nutdec.c:(.text+0x2d47): undefined reference to `ff_codec_movvideo_tags'
isom.c:(.text+0x332): undefined reference to `avpriv_mpeg4audio_get_config'
isom.c:(.text+0x39e): undefined reference to `avpriv_mpa_freq_tab'
Diffstat (limited to 'libavformat/Makefile')
-rw-r--r-- | libavformat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/Makefile b/libavformat/Makefile index 2817be35d7..4cc300f4fb 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -283,7 +283,7 @@ OBJS-$(CONFIG_NC_DEMUXER) += ncdec.o OBJS-$(CONFIG_NISTSPHERE_DEMUXER) += nistspheredec.o pcm.o OBJS-$(CONFIG_NSV_DEMUXER) += nsvdec.o OBJS-$(CONFIG_NULL_MUXER) += nullenc.o -OBJS-$(CONFIG_NUT_DEMUXER) += nutdec.o nut.o +OBJS-$(CONFIG_NUT_DEMUXER) += nutdec.o nut.o isom.o OBJS-$(CONFIG_NUT_MUXER) += nutenc.o nut.o OBJS-$(CONFIG_NUV_DEMUXER) += nuv.o OBJS-$(CONFIG_OGG_DEMUXER) += oggdec.o \ |