FFmpeg/doc/examples
Jun Zhao cb6e20f8de examples/filtering_video: suppress the build warning.
suppress the "warning: assignment discards ‘const’ qualifier from
pointer target type" build warning.

Signed-off-by: Jun Zhao <jun.zhao@intel.com>
Reviewed-by: Steven Liu <lingjiujianke@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-11-01 02:10:09 +01:00
..
.gitignore add missing ignore files 2017-09-10 19:08:33 +02:00
avio_dir_cmd.c doc/examples: rename avio_list_dir -> avio_dir_cmd 2015-08-16 02:16:47 +02:00
avio_reading.c examples/avio_reading: return AVERROR_EOF at EOF. 2017-10-29 19:40:52 +02:00
decode_audio.c Merge commit 'fee0f1de2c6a9924acb74013436dbea8f2bd1ecb' 2017-04-04 11:40:34 +02:00
decode_video.c doc/examples/decode_video: Fix format string vulnerability 2017-04-09 03:51:19 +02:00
demuxing_decoding.c doc/examples/demuxing_decoding: Drop AVFrame->pts use 2016-10-18 15:15:12 +02:00
encode_audio.c Merge commit 'f27e262dbdea1991b22e08b639ac03e642a3482c' 2017-04-03 21:14:16 +02:00
encode_video.c examples/encode_video: slightly improve error reporting 2017-05-31 15:46:19 +02:00
extract_mvs.c doc/examples/extract_mvs: re-indent after previous commit 2017-04-04 14:10:22 +02:00
filter_audio.c Merge commit 'f25609ff06b093d82548c92fc2031cd2e66c20d3' 2017-10-30 13:20:30 -03:00
filtering_audio.c Merge commit 'f5950b8fd61ec85e0ad8790bea56b37ceea19436' 2017-10-26 16:46:11 -03:00
filtering_video.c examples/filtering_video: suppress the build warning. 2017-11-01 02:10:09 +01:00
http_multiclient.c doc/examples/http_multiclient: Fix resource leak 2016-12-26 18:29:00 +01:00
hw_decode.c examples/hw_decode: Add a HWAccel decoding example. 2017-07-30 00:15:05 +01:00
Makefile build: add install targets for the examples 2017-10-05 11:35:56 -03:00
Makefile.example Merge commit 'acb0dea27efff4b35796015b96570b59fd517078' 2017-09-29 15:12:43 -03:00
metadata.c doc/examples: remove pathes from doxy examples 2014-02-17 13:50:53 +01:00
muxing.c Merge commit 'ecc5c4db2dd3a0f328d95df89daa59f78b4b2810' 2017-10-30 13:24:51 -03:00
qsvdec.c examples/qsvdec: convert to the new decoding API 2016-11-23 13:08:43 +01:00
README doc/examples/README: fix typo 2013-12-02 14:35:39 +01:00
remuxing.c doc/examples/remuxing: switch to codecpar 2017-03-28 17:46:23 +02: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 Merge commit 'b200a2c8da403b5a5c8b50f8cb4a75fd4f0131b1' 2017-10-26 17:03:09 -03:00
transcoding.c examples/transcoding: suppress build warning. 2017-11-01 02:10:09 +01:00

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.