aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* doc/examples: rename avio_list_dir -> avio_dir_cmdMariusz Szczepańczyk2015-08-161-1/+1
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/example: Add http multi-client example codeStephan Holljes2015-08-011-0/+1
| | | | Signed-off-by: Stephan Holljes <klaxa1337@googlemail.com>
* doc/examples: add directory listing exampleLukasz Marek2015-03-281-1/+2
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/examples: fix lib math dep for decoding_encodingAndreas Cadhalpun2015-01-101-0/+1
| | | | | | | It uses at least sin(). Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec: export motion vectors in frame side data on demandClément Bœsch2014-08-181-0/+1
| | | | | | | | | | | | | | | The reasoning behind this addition is that various third party applications are interested in getting some motion information out of a video "for free" when it is available. It was considered to export other information as well (such as the intra information about the block, or the quantization) but the structure might have ended up into a half full-generic, half full of codec specific cruft. If more information is necessary, it should either be added in the "flags" field of the AVMotionVector structure, or in another side-data. This commit also includes an example exporting them in a CSV stream.
* examples: rename avcodec.c to decoding_encoding.cStefano Sabatini2014-04-231-1/+1
| | | | | Restore the old name, which was more meaningful and consistent with the names of the other examples.
* doc/examples: Add example transcoding.cAndrey Utkin2014-03-171-0/+1
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit 'b339182eba34f28de5f1a477cdd2c84f1ef35d90'Michael Niedermayer2014-02-171-2/+2
| | | | | | | | | | | | | | | | | | | | * commit 'b339182eba34f28de5f1a477cdd2c84f1ef35d90': Move all example programs to doc/examples Conflicts: configure doc/Makefile doc/doxy-wrapper.sh doc/examples/avcodec.c doc/examples/decoding_encoding.c doc/examples/metadata.c doc/examples/muxing.c doc/examples/transcode_aac.c libavcodec/Makefile libavcodec/api-example.c libavformat/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
* examples: add avio_reading.c exampleStefano Sabatini2014-02-021-1/+2
|
* examples: add remuxing exampleStefano Sabatini2014-01-201-0/+1
| | | | Show how to perform streamcopy from one container to another.
* doc/examples: add transcode_aac to local Makefile.Clément Bœsch2013-11-281-0/+1
|
* doc/examples: rename demuxing to demuxing_decoding.Clément Bœsch2013-11-041-1/+1
| | | | | That example shows how the decoding process works, not only the demuxing.
* doc/examples: fix lib math dep for resampling_audio.Clément Bœsch2013-09-041-0/+1
| | | | It uses at least sin()
* examples/Makefile: disable -O2 optimizationsStefano Sabatini2013-06-261-1/+1
| | | | | There is no much point in optimizing example code, and the -O2 flag is annoying when debugging.
* examples: add resampling_audio.c fileStefano Sabatini2012-12-061-0/+1
|
* examples/scaling_video: write to rawvideo fileStefano Sabatini2012-09-041-1/+1
| | | | | This is more useful for testing purposes. Also allow to specify the name of the output file.
* examples: add demuxing.c exampleStefano Sabatini2012-09-021-0/+1
|
* examples/Makefile: give priority to pkg-config flagsStefano Sabatini2012-08-301-2/+2
| | | | | | | | | | In case CFLAGS/LDLIBS are already defined and conflicting with the pkg-config flags, give priority to the latter since they are used to detect compilation flags. This should fix for example the case where there are many different instances of a library, CFLAGS=-I/foo/include and pkg-config cflags say -I/bar/include.
* examples/Makefile: remove duplicated -f switchStefano Sabatini2012-08-281-2/+2
| | | | | | $(RM) already includes that flag. Spotted-by: ubitux
* examples: add scaling_video exampleStefano Sabatini2012-08-281-1/+2
| | | | | | | | This example should be useful to show the basic functionality of the libswscale API. More advanced features (scaling options etc., colorspace tweaking) may be added later.
* examples/Makefile: apply misc minor fixes to the RM ruleStefano Sabatini2012-08-271-2/+2
| | | | Use $(RM) in place of rm, drop useless "-r" for removing files.
* examples/decoding_encoding: store temporary files in current dirStefano Sabatini2012-08-271-2/+5
| | | | | | | | Do not clutter the temporary directory with files, also "/tmp" is not always available, e.g. in Windows. Also add the clean-test Makefile rule, which will clean the generated files.
* update filtering_audio exampleAndrew Wason2012-06-051-1/+0
| | | | | | | The filtering_audio.c example needs to be updated for the new "abuffer" filter args. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/examples: add debug compilation flag.Clément Bœsch2012-05-191-1/+1
|
* doc/examples: remove explicit rules.Clément Bœsch2012-05-191-6/+0
| | | | These rules are already in gmake builtins.
* doc/examples: add libavr to libraries to avoid link failures.Clément Bœsch2012-05-191-0/+1
|
* doc/examples: add libswresample in the libraries.Clément Bœsch2012-05-121-0/+1
| | | | It is required for audio filtering.
* doc/examples: fix typo.Clément Bœsch2012-05-121-1/+1
|
* doc/examples: add -O2 in CFLAGS.Clément Bœsch2012-05-121-2/+3
|
* doc/examples: link decoding_encoding and muxing with math lib.Clément Bœsch2012-05-121-0/+4
| | | | These two examples use the sin() function.
* doc/examples: rename LDFLAGS to LDLIBS.Clément Bœsch2012-05-121-3/+3
|
* doc/examples/Makefile: split lines up to make diffs that change them clearerMichael Niedermayer2012-05-081-2/+12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/examples: rename filtering.c into filtering_video.c.Clément Bœsch2012-02-211-1/+1
|
* doc/examples: add audio decoding/filtering example.Clément Bœsch2012-02-211-1/+1
| | | | | | Mostly based on doc/examples/filtering.c. lavfi API is still limited to "buffer feeding" instead of "frame feeding" at the moment, so this example code sticks with it.
* examples: add -Wall to CFLAGS.Clément Bœsch2012-02-191-1/+1
|
* examples/encoding: rename to decoding_encoding.c as the file is an example ↵Michael Niedermayer2011-10-111-1/+1
| | | | | | for both. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* doc/examples: add decoding/filtering example programStefano Sabatini2011-07-101-1/+1
|
* examples: move metadata-example.c to doc/examplesStefano Sabatini2011-07-081-1/+1
|
* examples: rename "-example" suffix from examples filesStefano Sabatini2011-07-041-1/+1
| | | | | The suffix is redundant since the containing directory itself is called "examples". Simplify.
* doc/examples: give meaningful names to the example filesStefano Sabatini2011-06-011-1/+1
| | | | | | Rename: api-example.c -> encoding-example.c output-example.c -> muxing-example.c
* examples: move API examples to a dedicated dir in docStefano Sabatini2011-05-301-0/+21