diff options
author | Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> | 2015-01-09 17:50:27 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-10 04:50:42 +0100 |
commit | f97f2a3527eac2cf60ba86206d1bae9a970a7e71 (patch) | |
tree | 7a3198207e6657c56c9c0c100d1d94a70ae1fdae /doc/examples/Makefile | |
parent | 6108485cf70f04dbf4708bd84ce749da871fa3f1 (diff) | |
download | ffmpeg-f97f2a3527eac2cf60ba86206d1bae9a970a7e71.tar.gz |
doc/examples: fix lib math dep for decoding_encoding
It uses at least sin().
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 07251fe3c2..9f03f04b57 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -29,6 +29,7 @@ OBJS=$(addsuffix .o,$(EXAMPLES)) # the following examples make explicit use of the math library avcodec: LDLIBS += -lm +decoding_encoding: LDLIBS += -lm muxing: LDLIBS += -lm resampling_audio: LDLIBS += -lm |