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
path: root/doc
AgeCommit message (Collapse)Author
2012-06-04lavfi: add avfilter_default_filter_name()Stefano Sabatini
The function is modelled after av_default_item_name(), and will print the name of the instance filter if defined, otherwise the name of the filter. This allows to show the instance name in the log, which is useful when debugging complex filter graphs.
2012-06-01ffprobe: add flat output format.Clément Bœsch
2012-05-30Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: avconv: extend -r to work on any input stream. doc/avconv: expand documentation for the -s option. avconv: don't print filters inserted by avconv in stream mappings. avconv: merge configuration code for complex and simple filters avconv: split configuring input filters out of configure_complex_filter Conflicts: configure doc/ffmpeg.texi ffmpeg.c tests/ref/fate/idroq-video-encode Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-29avconv: extend -r to work on any input stream.Anton Khirnov
This is done by automatically inserting a setpts filter.
2012-05-29doc/avconv: expand documentation for the -s option.Anton Khirnov
2012-05-29ffprobe: make -of an alias for -print_format.Clément Bœsch
This is for interoperability purpose with the fork.
2012-05-29ffprobe: add INI writerStefano Sabatini
Liberally based on the work of Luca Barbato <lu_zero@gentoo.org>, done for libav/avprobe.
2012-05-29doc/syntax: escape '@' to fix a warning.Clément Bœsch
Fix the following warning: doc/syntax.texi:147: warning: Accent command `@"' must not be followed by whitespace
2012-05-29ffprobe: add support to '\b' and '\f' escaping in c_escape_str()Stefano Sabatini
2012-05-27Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: opt: Add av_opt_set_bin() avconv: Display the error returned by avformat_write_header rtpenc_chain: Return an error code instead of just a plain pointer rtpenc_chain: Free the URLContext on failure rtpenc: Expose the ssrc as an avoption avprobe: display the codec profile in show_stream() avprobe: fix function prototype cosmetics: Fix indentation avprobe: changelog entry avprobe: update documentation avprobe: provide JSON output avprobe: output proper INI format avprobe: improve formatting rtmp: fix url parsing fate: document TARGET_EXEC and its usage Conflicts: doc/APIchanges doc/fate.texi doc/ffprobe.texi ffprobe.c libavformat/version.h libavutil/avutil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-26avprobe: restore pseudo-INI old style format for compatibility.Anton Khirnov
2012-05-26opt: Add av_opt_set_bin()Samuel Pitoiset
Introduce a new function to set binary data through AVOption, avoiding having to convert the binary data to a string inbetween. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-05-26ffprobe: display the codec profile in show_stream()Christian Schmidt
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2012-05-26avprobe: update documentationLuca Barbato
Update the documentation according to the latest changes
2012-05-26rtmp: fix url parsingLuca Barbato
The application component can have a subcomponent to specify the application instance even if it doesn't have a ":" in the playpath.
2012-05-26fate: document TARGET_EXEC and its usageLuca Barbato
TARGET_EXEC allows running FATE on simulators, remote targets and memory checkers. Also document a known issue with Wine and mixed Unix/Windows line ending.
2012-05-25release_notes: updateMichael Niedermayer
Note, if you want something mentioned in the release notes for 0.11 push it but be real quick ... Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-25Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: rtmp: Return a proper error code instead of -1 rtmp: Check malloc calls rtmp: Check ff_rtmp_packet_create calls lavfi: add audio mix filter flvdec: Make sure sample_rate is set to the updated value tqi: Pass errors from the MB decoder Conflicts: Changelog doc/filters.texi libavcodec/eatqi.c libavfilter/Makefile libavfilter/allfilters.c libavfilter/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-25doc/filters: move "aformat" before "amerge".Clément Bœsch
2012-05-25doc/filters: remove old aformat entry.Clément Bœsch
The new description is still available below.
2012-05-24doc: remove ffmpeg-mt-authorship.txt from master (for upcoming 0.11)Michael Niedermayer
This lists git history, which is better kept in the history itself that is both ours as this file as well as the actual history of the ffmpeg-mt project. If someone thinks this is not ok, drop me a mail and ill put it back! Also note this file was not carried in our previous release with noone complaining Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-24lavu/pixfmt: move AVPALETTE_SIZE and _COUNT to pixfmt.hStefano Sabatini
Move AVPALETTE_SIZE and AVPALETTE_COUNT definition from libavcodec/avcodec.h to libavutil/pixfmt.h. The definition is more useful in libavutil, where it can be shared for example by libavfilter and libswscale.
2012-05-24lavfi: add audio mix filterJustin Ruggles
2012-05-23Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: dwt: check malloc calls ppc: Drop unused header regs.h af_resample: remove an extra space in the log output Convert vector_fmul range of functions to YASM and add AVX versions lavfi: add an audio split filter lavfi: rename vf_split.c to split.c Conflicts: doc/filters.texi libavcodec/ppc/regs.h libavfilter/Makefile libavfilter/allfilters.c libavfilter/f_split.c libavfilter/split.c libavfilter/version.h libavfilter/vf_split.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-22doc: add syntax.texi fileStefano Sabatini
2012-05-21lavfi: add an audio split filterJustin Ruggles
Based on current version of the asplit filter in FFmpeg written by Stefano Sabatini and others.
2012-05-21doc/ffprobe: document that ffprobe.xsd can be retrieved at a certain ↵Stefano Sabatini
ffmpeg.org url Address trac ticket #1265.
2012-05-21fate: change name of FATE samples location environment variableDiego Biurrun
FATE_SAMPLES is now used directly by the Makefiles, which induces the test system to run a test with the value of the environment variable as name. Renaming the environment variable to LIBAV_SAMPLES avoids this problem.
2012-05-21avformat: Add a flag to mark muxers that allow (non strict) monotone timestamps.James Zern
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-05-20cmdutils: allow to specify a stream by its ID.Nicolas George
The stream can be specified as "#129" or "#0x81". It is especially useful for VOBs dumped from a DVD, where the language-id mapping is available externally and the probing can find the streams in a random order.
2012-05-19Merge commit '755cd4197d53946208e042f095b930dca18d9430'Michael Niedermayer
* commit '755cd4197d53946208e042f095b930dca18d9430': mov: enable parsing for VC-1. lavfi: Add fps filter. lavfi: initialize pts to AV_NOPTS_VALUE when creating new buffer refs. avconv: add support for audio in complex filtergraphs. Conflicts: ffmpeg.c libavfilter/version.h libavformat/mov.c tests/ref/fate/vc1-ism Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-19lavfi/asplit: move asplit code to vf_split.c, and make it support N outputsStefano Sabatini
The move allows to share the init code already used by split.
2012-05-19doc/examples: make use of the parameter filters_descr parameter in ↵Clément Bœsch
init_filters().
2012-05-19doc/examples: fix pts heuristic in filtering_video.Clément Bœsch
Note: the condition looked wrong in the first place ("if DTS is not defined, then set PTS to that undefined value [...]").
2012-05-19doc/examples: properly close input in metadata.Clément Bœsch
Avoid some memleaks.
2012-05-19doc/examples: print operation filename in decoding_encoding.Clément Bœsch
2012-05-19doc/examples: add debug compilation flag.Clément Bœsch
2012-05-19doc/examples: use system headers in decoding_encoding and muxing.Clément Bœsch
All the other examples already use the system installed headers.
2012-05-19doc/examples: remove explicit rules.Clément Bœsch
These rules are already in gmake builtins.
2012-05-19doc/examples: add libavr to libraries to avoid link failures.Clément Bœsch
2012-05-19Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: doc: Replace some @file tags by more suitable markup. fate: Set FUZZ factor of vorbis-13 test to 2. fate: Set FUZZ factor of (e)ac3-encode test to 3. fate: remove unused code from regressions-funcs.sh rtmp: Don't assume path points to a string of nonzero length avconv: fix behavior with -ss as an output option. Conflicts: doc/platform.texi doc/protocols.texi ffmpeg.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-18lavfi: Add fps filter.Anton Khirnov
Partially based on a patch by Robert Nagy <ronag89@gmail.com>
2012-05-18doc: Replace some @file tags by more suitable markup.Diego Biurrun
2012-05-18lavfi/aevalsrc: add option channel_layoutStefano Sabatini
Allow to explicitly specify the channel layout to select.
2012-05-16lavfi: drop planar/packed negotiation supportStefano Sabatini
The planar/packed switch and the packing_formats list is no longer required, since the planar/packed information is now stored in the sample format enum. This is technically a major API break, possibly it should be not too painful as we marked the audio filtering API as unstable.
2012-05-16Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: (26 commits) fate: use diff -b in oneline comparison Add missing version bumps and APIchanges/Changelog entries. lavfi: move buffer management function to a separate file. lavfi: move formats-related functions from default.c to formats.c lavfi: move video-related functions to a separate file. fate: make smjpeg a demux test fate: separate sierra-vmd audio and video tests fate: separate smacker audio and video tests libmp3lame: set supported channel layouts. avconv: automatically insert asyncts when -async is used. avconv: add support for audio filters. lavfi: add asyncts filter. lavfi: add aformat filter lavfi: add an audio buffer sink. lavfi: add an audio buffer source. buffersrc: add av_buffersrc_write_frame(). buffersrc: fix invalid read in uninit if the fifo hasn't been allocated lavfi: rename vsrc_buffer.c to buffersrc.c avfiltergraph: reindent lavfi: add channel layout/sample rate negotiation. ... Conflicts: Changelog doc/APIchanges doc/filters.texi ffmpeg.c ffprobe.c libavcodec/libmp3lame.c libavfilter/Makefile libavfilter/af_aformat.c libavfilter/allfilters.c libavfilter/avfilter.c libavfilter/avfilter.h libavfilter/avfiltergraph.c libavfilter/buffersrc.c libavfilter/defaults.c libavfilter/formats.c libavfilter/src_buffer.c libavfilter/version.h libavfilter/vf_yadif.c libavfilter/vsrc_buffer.c libavfilter/vsrc_buffer.h libavutil/avutil.h tests/fate/audio.mak tests/fate/demux.mak tests/fate/video.mak Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-16doc/filter_design: fix a few other typo.Clément Bœsch
2012-05-16doc/filtering_design: fix typo negociation -> negotiationStefano Sabatini
2012-05-15build: Add 'check' target to run all compile and test targets.Diego Biurrun
2012-05-15Add missing version bumps and APIchanges/Changelog entries.Anton Khirnov