diff options
author | Clément Bœsch <clement@stupeflix.com> | 2013-09-04 15:49:18 +0200 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2013-09-04 15:49:18 +0200 |
commit | dc8f732292fcab3f72462abbc0d71ab3f87b59b3 (patch) | |
tree | 8a89ed3860744a32f9c5a06854bc4f92a38b5e0c /doc/examples/Makefile | |
parent | 2c1eb38e5ef4ff8839b46b2783fb4bb2f5bc3609 (diff) | |
download | ffmpeg-dc8f732292fcab3f72462abbc0d71ab3f87b59b3.tar.gz |
doc/examples: fix lib math dep for resampling_audio.
It uses at least sin()
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r-- | doc/examples/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 3a84de8c9b..3d698cc08a 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -25,6 +25,7 @@ OBJS=$(addsuffix .o,$(EXAMPLES)) # the following examples make explicit use of the math library decoding_encoding: LDLIBS += -lm muxing: LDLIBS += -lm +resampling_audio: LDLIBS += -lm .phony: all clean-test clean |