ffmpeg/doc/examples
Andreas Cadhalpun f97f2a3527 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>
2015-01-10 04:50:42 +01:00
..
Makefile doc/examples: fix lib math dep for decoding_encoding 2015-01-10 04:50:42 +01:00
README
avio_reading.c
decoding_encoding.c doc/examples/decoding_encoding: fix storing all channels 2014-11-24 22:01:33 +01:00
demuxing_decoding.c
extract_mvs.c avcodec: export motion vectors in frame side data on demand 2014-08-18 14:13:57 +02:00
filter_audio.c
filtering_audio.c
filtering_video.c doc/examples/filtering_video: fix frame rate 2014-12-05 16:52:19 +01:00
metadata.c
muxing.c doc/examples/muxing: Use avio_closep() in examples as it avoids leaving stale pointers 2015-01-08 05:28:15 +01:00
remuxing.c idoc/examples/remuxing: Use avio_closep() in examples as it avoids leaving stale pointers 2015-01-08 05:28:59 +01:00
resampling_audio.c doc/examples: remove unneeded NULL checks 2014-09-14 16:45:50 +02:00
scaling_video.c doc/examples: remove unneeded NULL checks 2014-09-14 16:45:50 +02:00
transcode_aac.c doc/examples/transcode_aac: Use avio_closep() in examples as it avoids leaving stale pointers 2015-01-08 05:28:51 +01:00
transcoding.c doc/examples/transcoding: Use avio_closep() in examples as it avoids leaving stale pointers 2015-01-08 05:29:10 +01:00

README

FFmpeg examples README
----------------------

Both following use cases rely on pkg-config and make, thus make sure
that you have them installed and working on your system.


Method 1: build the installed examples in a generic read/write user directory

Copy to a read/write user directory and just use "make", it will link
to the libraries on your system, assuming the PKG_CONFIG_PATH is
correctly configured.

Method 2: build the examples in-tree

Assuming you are in the source FFmpeg checkout directory, you need to build
FFmpeg (no need to make install in any prefix). Then just run "make examples".
This will build the examples using the FFmpeg build system. You can clean those
examples using "make examplesclean"

If you want to try the dedicated Makefile examples (to emulate the first
method), go into doc/examples and run a command such as
PKG_CONFIG_PATH=pc-uninstalled make.