Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-01-09 19:50:27 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-01-10 07:03:04 +0300
commit07d508e4f55f6045b83df3346448b149faab5d7d (patch)
treeed9b0e83ab6025ba02453b2a4c2483501816e0c8
parentb089b582500ffd3c6370e1cd8d91fe7a7f21cc17 (diff)
doc/examples: fix lib math dep for decoding_encodingn2.5.3
It uses at least sin(). Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit f97f2a3527eac2cf60ba86206d1bae9a970a7e71) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--doc/examples/Makefile1
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