ffmpeg/doc/examples
Andreas Rheinhardt b6aeee2d8b examples/remuxing: Fix use of uninitialized value
Fixes Coverity ticket 1492326.
Regression since 53f374c08d.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
2021-10-07 11:59:31 +02:00
..
.gitignore
Makefile
Makefile.example
README
avio_list_dir.c
avio_reading.c
decode_audio.c
decode_video.c
demuxing_decoding.c
encode_audio.c
encode_video.c doc/examples/encode_video: add explanations in comments. 2021-08-20 17:05:10 +02:00
extract_mvs.c examples/extract_mvs: Do not use stack packet 2021-10-03 20:50:49 +02:00
filter_audio.c
filtering_audio.c examples/filtering_audio: Don't use stack packet 2021-10-03 20:50:49 +02:00
filtering_video.c examples/filtering_video: Don't use stack packet 2021-10-03 20:50:49 +02:00
http_multiclient.c
hw_decode.c examples/hw_decode: Don't use stack packet 2021-10-03 20:50:49 +02:00
metadata.c
muxing.c examples/muxing: Don't use stack packet 2021-10-03 20:50:49 +02:00
qsvdec.c examples/qsvdec: Don't use stack packet 2021-10-03 20:50:50 +02:00
remuxing.c examples/remuxing: Fix use of uninitialized value 2021-10-07 11:59:31 +02:00
resampling_audio.c
scaling_video.c
transcode_aac.c
transcoding.c Replace all occurences of av_mallocz_array() by av_calloc() 2021-09-20 01:03:52 +02:00
vaapi_encode.c
vaapi_transcode.c

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.