Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2012-08-24lavfi/asetpts,setpts: add variables T, STARTT, PREV_INT and PREV_OUTTStefano Sabatini
2012-08-24doc/filters: itemize examples for *settb filtersStefano Sabatini
2012-08-24doc/filters: itemize examples for *setpts filtersStefano Sabatini
2012-08-24doc/filters: move *setpts and *settb filters to the multimedia filters sectionStefano Sabatini
Since audio and video filters are explained together and share most code, the multimedia filters section seems more fitting.
2012-08-23Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: doc/APIchanges: add an entry for codec descriptors. vorbisenc: set AVCodecContext.bit_rate to 0 vorbisenc: fix quality parameter FATE: add ALAC encoding tests lpc: fix alignment of windowed samples for odd maximum LPC order alacenc: use s16p sample format as input alacenc: remove unneeded sample_fmt check alacenc: fix max_frame_size calculation for the final frame adpcm_swf: Use correct sample offsets when using trellis. rtmp: support strict rtmp servers mjpegdec: support AVRn interlaced x86: remove FASTDIV inline asm Conflicts: doc/APIchanges libavcodec/mjpegdec.c libavcodec/vorbisenc.c libavutil/x86/intmath.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-23doc/APIchanges: add an entry for codec descriptors.Anton Khirnov
Also fill in missing dates and hashes.
2012-08-22examples/decoding_encoding: flush audio frames in the encoderStefano Sabatini
2012-08-22examples/decoding_encoding: re-organize frame configuration codeStefano Sabatini
Put the relevant code in one chunk, also check for frame allocation failures.
2012-08-22doc/filters: fix level for the flite Examples subsectionStefano Sabatini
2012-08-22doc/faq: mention doc/examplesStefano Sabatini
Also provide a link to the github FFmpeg page containing the examples.
2012-08-22examples/muxing: cast sws_scale() argument to the expected oneStefano Sabatini
Fix warnings: muxing.c: In function ‘write_video_frame’: muxing.c:326:23: warning: passing argument 2 of ‘sws_scale’ from incompatible pointer type [enabled by default]
2012-08-22doc/eval: add missing documentation of functionsStefano Sabatini
2012-08-22doc/filters: itemize examples for pad filter, and fix a few typosStefano Sabatini
2012-08-21doc/ffmpeg: extend documentation for -(no)stdin optionStefano Sabatini
Fix trac ticket #1665.
2012-08-21lavfi: add showspectrum filter.Clément Bœsch
2012-08-20Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: fate: Add FATE tests for the Ut Video encoder lavc: add Ut Video encoder mpegvideo_enc: remove stray duplicate line from 7f9aaa4 swscale: x86: fix #endif comments in rgb2rgb template file avconv: mark more options as expert. avconv: split printing "main options" into global and per-file. avconv: refactor help printing. Conflicts: Changelog ffmpeg_opt.c ffserver.c libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-20Merge commit 'f8b1e665539010d3ca148f09cb1203c20c1ca174'Michael Niedermayer
* commit 'f8b1e665539010d3ca148f09cb1203c20c1ca174': avconv: print info/capabilities options in a separate help group. avtools: add -h demuxer/muxer cmdutils: extend -h to allow printing codec details. Conflicts: cmdutils.h ffmpeg_filter.c ffmpeg_opt.c ffplay.c ffserver.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-20Merge commit '7c5012127fb7e18f0616011257bb4248f6a8b608'Michael Niedermayer
* commit '7c5012127fb7e18f0616011257bb4248f6a8b608': cmdutils: change semantics of show_help_options() and document it. avtools: move some newlines to show_help_options(). avconv: deprecate -isync. Conflicts: ffmpeg_opt.c ffserver.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-20lavc: add Ut Video encoderJan Ekström
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2012-08-19avtools: add -h demuxer/muxerAnton Khirnov
2012-08-19cmdutils: extend -h to allow printing codec details.Anton Khirnov
2012-08-19avconv: deprecate -isync.Anton Khirnov
This option does not do anything. Also remove OPT_GRAB, since -isync is the last option using it.
2012-08-19lavfi: add volumedetect filter.Nicolas George
2012-08-18Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: mpegvideo_enc: don't use deprecated avcodec_encode_video(). cmdutils: refactor -codecs option. avconv: make -shortest a per-output file option. lavc: add avcodec_descriptor_get_by_name(). lavc: add const to AVCodec* function parameters. swf(dec): replace CODEC_ID with AV_CODEC_ID dvenc: don't use deprecated AVCODEC_MAX_AUDIO_FRAME_SIZE rtmpdh: Do not generate the same private key every time when using libnettle rtp: remove ff_rtp_get_rtcp_file_handle(). rtsp.c: use ffurl_get_multi_file_handle() instead of ff_rtp_get_rtcp_file_handle() avio: add (ff)url_get_multi_file_handle() for getting more than one fd h264: vdpau: fix crash with unsupported colorspace amrwbdec: Decode the fr_quality bit properly Conflicts: Changelog cmdutils.c cmdutils_common_opts.h doc/ffmpeg.texi ffmpeg.c ffmpeg.h ffmpeg_opt.c libavcodec/h264.c libavcodec/options.c libavcodec/utils.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-18doc/muxers: simplify segment examplesStefano Sabatini
The simplifications are due to the recent option changes.
2012-08-18lavf/segment: change default value for segment_list_size option, from 5 to 0Stefano Sabatini
This is technically a major compatibility break, but seems the most natural default and what users would expect without reading the docs.
2012-08-18lavf/segment: guess list type from list filename suffixStefano Sabatini
2012-08-18lavfi/mp: remove framestep wrapped filterStefano Sabatini
An equivalent framestep filter has been natively integrated.
2012-08-18lavfi: add framestep filterStefano Sabatini
This filter is inspired upon libmpcodecs/vf_framestep.c, by Daniele Forghieri. Only-keyframe output is not supported, since that feature can be achieved through the more versatile select filter.
2012-08-18lavf/segment: add M3U8 list supportStefano Sabatini
Address trac ticket #1642.
2012-08-18doc/Makefile: add doc target, as an alias for "documentation"Stefano Sabatini
Consistent with --enable-doc, and easier to type.
2012-08-18cmdutils: refactor -codecs option.Anton Khirnov
Make it print a list of AVCodecDescriptors. Add new -decoders and -encoders options that print lists of decoders and encoders respectively.
2012-08-18avconv: make -shortest a per-output file option.Anton Khirnov
2012-08-17mips: change list of files with MIPS copyright notice in mips.txtNedeljko Babic
Add files created for MP3 optimization that have MIPS copyright notice in them to list of files in mips.txt. Signed-off-by: Nedeljko Babic <nbabic@mips.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-17Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: libvpxenc: use the default bitrate if not set utvideo: Rename utvideo.c to utvideodec.c doc: Fix syntax errors in sample Emacs config mjpegdec: more meaningful return values configure: clean up Altivec detection getopt: Remove an unnecessary define rtmp: Use int instead of ssize_t getopt: Add missing includes rtmp: Add support for receiving incoming streams Add missing includes for code relying on external libraries Conflicts: libavcodec/libopenjpegenc.c libavcodec/libvpxenc.c libavcodec/mjpegdec.c libavformat/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-17doc: Fix syntax errors in sample Emacs configJordi Ortiz
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2012-08-17lavfi: add edgedetect filter.Clément Bœsch
2012-08-16rtmp: Add support for receiving incoming streamsJordi Ortiz
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-16Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: Fix even more missing includes after the common.h removal build: Factor out rangecoder dependencies to CONFIG_RANGECODER build: Factor out error resilience dependencies to CONFIG_ERROR_RESILIENCE x86: avcodec: Consistently name all init files Add more missing includes after removing the implicit common.h Add some more missing includes after removing the implicit common.h Don't include common.h from avutil.h rtmp: Automatically compute the hash for SWFVerification Conflicts: configure doc/APIchanges doc/examples/decoding_encoding.c libavcodec/Makefile libavcodec/assdec.c libavcodec/audio_frame_queue.c libavcodec/avpacket.c libavcodec/dv_profile.c libavcodec/dwt.c libavcodec/libtheoraenc.c libavcodec/rawdec.c libavcodec/rv40dsp.c libavcodec/tiff.c libavcodec/tiffenc.c libavcodec/v210dec.h libavcodec/vc1dsp.c libavcodec/x86/Makefile libavfilter/asrc_anullsrc.c libavfilter/avfilter.c libavfilter/buffer.c libavfilter/formats.c libavfilter/vf_ass.c libavfilter/vf_drawtext.c libavfilter/vf_fade.c libavfilter/vf_select.c libavfilter/video.c libavfilter/vsrc_testsrc.c libavformat/version.h libavutil/audioconvert.c libavutil/error.h libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-16lavfi/hue: add named options supportJérémy Tran
Old syntax has been kept for compatibility reasons. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2012-08-16lavfi/mp: remove hue wrapped filterStefano Sabatini
hue was integrated as a native libavfilter filter.
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-15rtmp: Automatically compute the hash for SWFVerificationSamuel Pitoiset
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-15Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: rtmp: Add support for SWFVerification api-example: use new video encoding API. x86: avcodec: Appropriately name files containing only init functions mpegvideo_mmx_template: drop some commented-out cruft libavresample: add mix level normalization option w32pthreads: Add missing #includes to make header compile standalone rtmp: Gracefully ignore _checkbw errors by tracking them rtmp: Do not send _checkbw calls as notifications prores: interlaced ProRes encoding Conflicts: doc/examples/decoding_encoding.c libavcodec/proresenc_kostya.c libavcodec/w32pthreads.h libavcodec/x86/Makefile libavformat/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-15rtmp: Add support for SWFVerificationSamuel Pitoiset
Specifies how the server verifies client SWF files before allowing the files to connect to an application. Verifying SWF files is a security measure that prevents someone from creating their own SWF files that can attempt to stream your resources. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-14Add ICO muxerMichael Bradshaw
Signed-off-by: Michael Bradshaw <mbradshaw@sorensonmedia.com> Reviewed-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-08-14filter_design: document ownership and permissions.Nicolas George
2012-08-14ffmpeg: add an option to fix subtitles durations.Nicolas George
With this option, transcoding DVB subtitles becomes possible.
2012-08-13build: extend documentation building mechanismStefano Sabatini
Allow to select specific documentation components, and reliably check for component dependencies. In particular, check for perl presence on the system.
2012-08-13lavfi: add hue filterJérémy Tran
This is a port of the MPlayer hue filter (libmpcodecs/vf_hue.c) by Michael Niedermayer. Signed-off-by: Jérémy Tran <tran.jeremy.av@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>