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
2011-07-01doc: Remove outdated information about our issue trackerReinhard Tartler
We have now switched to http://bugzilla.libav.org.
2011-06-29build: create output directories as neededMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-28build: call texi2pod.pl with full path instead of symlinkMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23Add av_printf_format, for marking printf style format strings and their ↵Martin Storsjö
parameters Signed-off-by: Martin Storsjö <martin@martin.st>
2011-06-23build: remove SRC_PATH_BARE variableMans Rullgard
Setting SRC_PATH to "." when building in-tree removes the need for a quoted version of the source path since out-of-tree builds are not possible if the pathname contains spaces. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-23build: move documentation rules to doc/MakefileMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-21document libswscale bumpReinhard Tartler
2011-06-19Add Release NotesReinhard Tartler
2011-06-16Add minor bumps and APIChanges entries for lavf private options.Anton Khirnov
2011-06-10avoptions: Add an av_opt_flag_is_set function for inspecting flag fieldsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-06-08Move metadata API from lavf to lavu.Anton Khirnov
Rename it to AVDictionary, since it will be used as such. Tags documentation and metadata conversion API is lavf-specific, so remains there.
2011-06-07APIchanges: fill-in git commit hash for av_get_bytes_per_sample() additionJustin Ruggles
2011-06-07samplefmt: add av_get_bytes_per_sample()Stefano Sabatini
Deprecate av_get_bits_per_sample_fmt(), which was a misnamed function. For the moment we don't have sample formats with a non-integer number of bytes, in that case we may need to create a new av_get_bits_per_sample() function. In the meanwhile we prefer to adopt this variant, since avoids divisions by 8 all over the place.
2011-06-05AVOptions: add av_opt_free convenience function.Anton Khirnov
2011-05-28APIchanges: fill in git hash for av_get_pix_fmt_name (0420bd7).Ronald S. Bultje
2011-05-28lavu: add av_get_pix_fmt_name() convenience functionStefano Sabatini
Also deprecate avcodec_get_pix_fmt_name() in its favor. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-05-28webm: support stereo videos in matroska/webm muxerAlok Ahuja
Create a stereo_mode metadata tag to specify the stereo 3d video layout using the StereoMode tag in a matroska/webm video track.
2011-05-28ac3enc: add support for E-AC-3 encoding.Justin Ruggles
This adds basic stream format support and allows for arbitrary bit rates rather than just those supported in AC-3.
2011-05-27doc: Drop DJGPP section, Libav now compiles out-of-the-box on FreeDOS.Diego Biurrun
2011-05-26doc: Drop hint at --enable-memalign-hack for MinGW, it is now autodetected.Diego Biurrun
2011-05-26doc: create separate section for audio encodersStefano Sabatini
Having a separate section for audio encoders simplifies navigation and is slightly more consistent with the rest of the manual. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-05-25APIchanges: Fill in git hash for fps_probe_size (30315a8)Alex Converse
2011-05-25avformat: Add fpsprobesize as an AVOption.Alex Converse
2011-05-24ac3enc: add channel coupling supportJustin Ruggles
Channel coupling is an optional AC-3 feature that increases quality by combining high frequency information from multiple channels into a single channel. The per-channel high frequency information is sent with less accuracy in both the frequency and time domains. This allows more bits to be used for lower frequencies while preserving enough information to reconstruct the high frequencies.
2011-05-19APIchanges: fill in date and commit for request_sample_fmtJustin Ruggles
2011-05-19Add APIchanges entry for request_sample_fmt.Justin Ruggles
2011-05-12configure: Do not unconditionally add -D_POSIX_C_SOURCE to CPPFLAGS.Diego Biurrun
Adding _POSIX_C_SOURCE to CPPFLAGS globally produces all sorts of problems since it causes certain system functions to be hidden on some (BSD) systems. The solution is to only add the flag on systems that really require it, i.e. glibc-based ones. This change makes BSD systems compile out-of-the-box without the need for adding specific flags manually. It also allows dropping a number of flags set manually on a file-per-file basis, but were only present to work around breakage introduced by the presence of _POSIX_C_SOURCE. Also add _XOPEN_SOURCE to CPPFLAGS for glibc systems. We use XSI extensions in several places already, so it is preferable to define it globally instead of littering source files with individual #defines only needed for glibc.
2011-05-11Port SMPTE S302M audio decoder from FFmbc 0.3.Baptiste Coudurier
2011-05-11doc/APIchanges: fill in missing hashes and dates.Anton Khirnov
2011-05-11Remove unused softfloat implementation.Diego Biurrun
The softfloat functionality is unused, not installed and incomplete. On platforms without floating point units, the compiler provides a softfloat implementation so there is no point in carrying this code around locally.
2011-05-10lavc: move some flac-specific options to its private context.Anton Khirnov
2011-05-07drawtext: add documentation for the shadow parametersStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-05-07lavfi: Port drawtext filter by Hemanth from the libavfilter soc repoStefano Sabatini
With the following additions: * support to anti-aliased glyph rendering * support to UTF-8 text and Unicode chars rendering * support for RGB packed formats * fix minor errors and typos in the filter description * extend/clarify examples in the filter description Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-05-04doc: Check standalone compilation before submitting new components.Diego Biurrun
2011-05-01DPX image encoderPeter Ross
2011-05-01ac3enc: simplify stereo rematrixing decision optionsJustin Ruggles
2011-05-01Update URL to fate samplesReinhard Tartler
2011-04-26documentation: extend documentation for ffmpeg -aspect optionStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26APIChanges: update commit hashes for recent additions.Anton Khirnov
2011-04-26lavc: deprecate FF_*_TYPE macros in favor of AV_PICTURE_TYPE_* enumsStefano Sabatini
Also deprecate av_get_pict_type_char() in favor of av_get_picture_type_char(). The new enum and av_get_picture_type_char() are defined in libavutil. This allows the use in libavfilter without the need to link against libavcodec. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26pad: make the filter parametricStefano Sabatini
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26lavfi: add key_frame and pict_type to AVFilterBufferRefVideo.Roger Pau Monné
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26vsrc_buffer: add sample_aspect_ratio fields to arguments.Michael Niedermayer
This fixes aspect handling in ffmpeg. This is based on a patch by Baptiste. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26lavfi: add fieldorder filterMark Himsley
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-26scale: make the filter parametricStefano Sabatini
Make the filter accept parametric expressions for the output video size. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-23Lowercase all ff* program names.Diego Biurrun
2011-04-23Refer to ff* tools by their lowercase names.Diego Biurrun
2011-04-23Replace more FFmpeg instances by Libav or ffmpeg.Diego Biurrun
2011-04-23doc: FLV muxing is supported.Carl Eugen Hoyos
Signed-off-by: Martin Storsjö <martin@martin.st>
2011-04-23doc: Mention that DragonFly BSD requires __BSD_VISIBLE setMartin Storsjö
Setting this should fix the FATE build failure on DragonFly BSD, since inet_aton only is visible if __BSD_VISIBLE is set. Alternatively, a line defining __BSD_VISIBLE=1 could be added at the top of os_support.c. For FreeBSD, similar lines are required in libavdevice/bktr.c and libavdevice/oss_audio.c, too. Signed-off-by: Martin Storsjö <martin@martin.st>