summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAge
* Merge commit '5a419b2dd1881889d436f55741fd3ff3f9f436c4'Michael Niedermayer2014-10-08
|\ | | | | | | | | | | | | | | | | | | | | | | * commit '5a419b2dd1881889d436f55741fd3ff3f9f436c4': pixdesc: return color properties names Conflicts: libavutil/pixdesc.c libavutil/pixdesc.h libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * pixdesc: return color properties namesVittorio Giovara2014-10-08
| |
* | ffprobe: add pixel format chroma sub-sampling outputTobias Rapp2014-10-07
| | | | | | | | | | | | | | | | | | | | | | Adds output of chroma sub-sampling information to ffprobe -show_pixel_formats option. Note: This patch just prints the "raw" log2_charoma_w/h values instead of the previously suggested mapping into a chroma sub-sampling pattern string like "4:2:2". Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffprobe: add pixel format component bit depth outputTobias Rapp2014-10-07
| | | | | | | | | | | | | | Adds output of bit depth per pixel format component to ffprobe -show_pixel_formats option. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffprobe: add pixel format flags outputTobias Rapp2014-10-07
| | | | | | | | | | | | Adds output of pixel format flags to ffprobe -show_pixel_formats option. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | ffprobe: add -show_pixel_formats optionTobias Rapp2014-10-07
| | | | | | | | | | | | | | Adds option -show_pixel_formats to ffprobe which lists all available pixel formats with some details. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter: add w/h parameters in timelineClément Bœsch2014-10-07
| | | | | | | | Fixes Ticket #4008.
* | Merge commit 'e3e158e81f0666b8fe66be9ce1cad63a535920e0'Michael Niedermayer2014-10-06
|\| | | | | | | | | | | | | | | | | | | | | | | * commit 'e3e158e81f0666b8fe66be9ce1cad63a535920e0': vdpau: add av_vdpau_bind_context() Conflicts: doc/APIchanges libavcodec/vdpau.h libavcodec/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vdpau: add av_vdpau_bind_context()Rémi Denis-Courmont2014-10-06
| | | | | | | | | | | | | | | | | | | | | | | | This function provides an explicit VDPAU device and VDPAU driver to libavcodec, so that the application is relieved from codec specifics and VdpDevice life cycle management. A stub flags parameter is added for future extension. For instance, it could be used to ignore codec level capabilities (if someone feels dangerous). Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | Merge commit '55f03d872640175a00bfa262da4652b7312b905f'Michael Niedermayer2014-10-03
|\| | | | | | | | | | | | | | | | | | | | | | | | | * commit '55f03d872640175a00bfa262da4652b7312b905f': hlsenc: Add parameter -hls_allow_cache Conflicts: doc/muxers.texi libavformat/hlsenc.c libavformat/version.h See: 3edb9aaea6aaa6b93d708693cfa6454c17e03732 Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * hlsenc: Add parameter -hls_allow_cacheJoakim Roubert2014-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | The -hls_allow_cache parameter enables explicitly setting the EXT-X-ALLOW-CACHE tag in the manifest file. That tag indicates whether the client MAY or MUST NOT cache downloaded media segments for later replay. Valid values are 1 (=YES) or 0 (=NO) and the EXT-X-ALLOW-CACHE will not show in the manifest for other values (or if -hls_allow_cache is not used. Signed-off-by: Martin Storsjö <martin@martin.st>
* | avcodec, avutil: allow more control about how samples are skippedwm42014-10-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add CODEC_FLAG2_SKIP_MANUAL (exposed as "skip_manual"), which makes the decoder export sample skip information via side data, instead of applying it automatically. The format of the side data is the same as AV_PKT_DATA_SKIP_SAMPLES, but since AVPacket and AVFrame side data constants overlap, AV_FRAME_DATA_SKIP_SAMPLES needs to be introduced. This is useful for applications which want to do the timestamp calculations manually, or which actually want to retrieve the padding. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avutil/avstring: Factor av_match_list() outMichael Niedermayer2014-10-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/libx264: add avcintra-classMichael Niedermayer2014-10-01
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avformat/hlsenc: Added parameter -hls_allow_cacheJoakim Roubert2014-09-28
| | | | | | | | | | | | | | | | | | | | | | | | | | The -hls_allow_cache parameter enables explicitly setting the EXT-X-ALLOW-CACHE tag in the manifest file. That tag indicates whether the client MAY or MUST NOT cache downloaded media segments for later replay. Valid values are 1 (=YES) or 0 (=NO) and the EXT-X-ALLOW-CACHE will not show in the manifest for other values (or if -hls_allow_cache is not used. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avformat: add SUP/PGS subtitle demuxerwm42014-09-26
| | | | | | | | Signed-off-by: Clément Bœsch <u@pkh.me>
* | doc/APIchanges: fix typoMichael Niedermayer2014-09-24
| | | | | | | | | | Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | postproc: add basic deblock filter visualization supportMichael Niedermayer2014-09-24
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/decoders: adding documentation for lavc/dvdsubdec.c option ↵Nicholas Robbins2014-09-22
| | | | | | | | | | | | | | "forced_subs_only" Signed-off-by: Nicholas Robbins <nickrobbins@yahoo.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avdevice: add decklink input supportDeti Fliegl2014-09-22
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/dv_profile: deprecate internal function that shouldn't be publicJames Almer2014-09-19
| | | | | | | | | | Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
* | doc/filters: remove aconvertPaul B Mahol2014-09-17
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/filters: add geq gradient examplesLou Logan2014-09-16
| | | | | | | | | | | | | | | | Radial gradient by Víctor Paesa. Linear gradient by Paul Gentemann. Also-by: Víctor Paesa <victorpaesa@googlemail.com> Also-by: Paul Gentemann <beriukay@gmail.com> Signed-off-by: Lou Logan <lou@lrcd.com>
* | avfilter/ass: add shaping optionClément Bœsch2014-09-16
| | | | | | | | The documentation is mostly based on ass.h public header.
* | lavf/hls: add hls_ts_optionSteven Liu2014-09-16
| | | | | | | | | | | | Same as COMMITID 4f5493fe2380ad4aba67759baa7d7d4437f2e776. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | doc/examples/transcoding: use av_packet_rescale_ts()Stefano Sabatini2014-09-16
| | | | | | | | Simplify.
* | hlsenc: single_file, support HLS ver 4 byterangesMika Raento2014-09-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a new option -hls_flags single_file that creates one .ts file for HLS and adds byteranges to the .m3u8 file, instead of creating one .ts file for each segment. This is helpful at least for storing large number of videos, as the number of files per video is drastically reduced and copying and storing those files takes less requests and inodes. This is based on work by Nicolas Martyanoff, discussed on ffmpeg-devel in July 2014. That patch seems abandoned by the author, and contained unrelated changes. This patch tries to add the minimum amount of code to support the byterange playlists. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/examples: remove unneeded NULL checksMichael Niedermayer2014-09-14
| | | | | | | | | | | | dst_file cannot be NULL Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/APIchanges: Update hashes and datesMichael Niedermayer2014-09-14
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/APIchanges: attempt to split releasesClément Bœsch2014-09-14
| | | | | | | | | | | | Based on several git show origin/release/X.Y:doc/APIchanges. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc: mention in APIChanges that AVProbeData must be initialized due to the ↵Andreas Cadhalpun2014-09-14
| | | | | | | | | | | | | | new mime_type field Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc: document the addition of the AVProbeData.mime_type field and it's ↵Andreas Cadhalpun2014-09-13
| | | | | | | | | | | | | | implications Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | docs: add example around the suggested commit message formatJames Darnley2014-09-12
| | | | | | | | | | | | | | It gets rendered inline in HTML and becomes not very clear. Reviewed-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '775a0b04f0cf8102fe322b2ee03fe1a0633dea04'Michael Niedermayer2014-09-11
|\| | | | | | | | | | | | | | | | | | | * commit '775a0b04f0cf8102fe322b2ee03fe1a0633dea04': doc: Fix syntax and logical errors in avconv stream combination example Conflicts: doc/ffmpeg.texi Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * doc: Fix syntax and logical errors in avconv stream combination exampleDiego Biurrun2014-09-10
| | | | | | | | | | Bug-Id: 661 CC: libav-stable@libav.org
* | Print bits_per_raw_sample for ffprobe -show_streams.Carl Eugen Hoyos2014-09-08
| | | | | | | | Fixes ticket #3919.
* | doc/filters.texi: improve the wording of the expr_int_format documentationAndreas Cadhalpun2014-09-07
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | doc/muxers/segment: reword text for examples, improve consistencyStefano Sabatini2014-09-07
| |
* | lavf/segment: add segment_format_options optionStefano Sabatini2014-09-07
| |
* | Merge commit '041caf1a63f091745b95a6d51c23fbdcb604d4ce'Michael Niedermayer2014-09-06
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '041caf1a63f091745b95a6d51c23fbdcb604d4ce': avplay: Exit by default at the end of playback Conflicts: Changelog ffplay.c Changes to ffplay not merged as they would break -autoexit as a way to override -noautoexit, the change of the default will be implemented in the next commit Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avplay: Exit by default at the end of playbackDiego Biurrun2014-09-06
| | | | | | | | | | | | This is the expected behavior shared by all other cli multimedia players. Bug-Id: 732
| * Add release notes for 11.Anton Khirnov2014-09-04
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | doc: Copyright in CSS, CSS split in 2 filesdb0company2014-09-06
| | | | | | | | | | Reviewed-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | add silenceremove filterPaul B Mahol2014-09-05
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | doc/filters.texi: fix time duration referencesMark Harris2014-09-05
| | | | | | | | | | | | | | Make time duration references consistent, using @ref links, and eliminate incorrect syntax [-]HH[:MM[:SS[.m...]]]. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* | Use makeinfo to generate html doc for the new websiteTimothy Gu2014-09-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | texi2html is deprecated by upstream in favor of makeinfo/texi2any. See: - https://www.gnu.org/software/texinfo/manual/texinfo/html_node/texi2html.html - https://wiki.debian.org/Texi2htmlTransition - https://lists.debian.org/debian-devel/2013/05/msg01516.html This is actually two separate changes. Based on a patch by Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>. Fixes Trac ticket #3232. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* | doc/demuxers: document gif demuxerLou Logan2014-09-03
| | | | | | | | Signed-off-by: Lou Logan <lou@lrcd.com>
* | Merge commit '94f084324e648876508bed546d950762f10b875e'Michael Niedermayer2014-09-03
|\| | | | | | | | | | | | | | | | | | | | | * commit '94f084324e648876508bed546d950762f10b875e': texi2pod: Make it output a single encoding string Conflicts: doc/texi2pod.pl See: 12ce58bebdff6bfae9c56dc785e3003968f93277 Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * texi2pod: Make it output a single encoding stringLuca Barbato2014-09-03
| | | | | | | | | | Intermixing =encoding utf-8 in the file can confuse some pod2man implementations.
* | build sys: enable the decoding_encoding example under the ffmpeg/doc/examplesRong Yan2014-09-02
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>