Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lavc: pad last audio frame with silence when needed. | Anton Khirnov | 2012-05-09 | 1 | -0/+6 |
| | |||||
* | lavfi: add video buffer sink, and use it in avtools | Anton Khirnov | 2012-05-09 | 1 | -0/+8 |
| | | | | | | Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini. | ||||
* | doc: Replace a stray reference to the old '-intra' flag. | Alex Converse | 2012-05-08 | 1 | -1/+1 |
| | |||||
* | avprobe: allow showing only one container/stream property. | Ronald S. Bultje | 2012-05-07 | 1 | -0/+5 |
| | | | | | | This is useful for writing unit tests. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | lavc: add sample rate and channel layout to AVFrame. | Anton Khirnov | 2012-05-07 | 1 | -0/+3 |
| | | | | Rationale is the same as for video width/height etc. | ||||
* | doc: clarify check for NULL pointer style | Luca Barbato | 2012-05-06 | 1 | -0/+4 |
| | | | | Our code should be terse and clear. | ||||
* | vf_split: support user-specifiable number of outputs. | Anton Khirnov | 2012-05-06 | 1 | -0/+13 |
| | |||||
* | lavr: use 8.8 instead of 10.6 as the 16-bit fixed-point mixing coeff type | Justin Ruggles | 2012-05-01 | 1 | -0/+3 |
| | |||||
* | APIchanges: fill in some dates and commit hashes | Justin Ruggles | 2012-04-30 | 1 | -9/+9 |
| | |||||
* | avutil: add av_parse_cpu_flags() function | Mans Rullgard | 2012-04-25 | 1 | -0/+3 |
| | | | | | | | This moves the cpu flag parsing code from avconv to avutil so it can be accessed elsewhere. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Add libavresample | Justin Ruggles | 2012-04-24 | 1 | -6/+10 |
| | | | | | This is a new library for audio sample format, channel layout, and sample rate conversion. | ||||
* | Remove libdirac decoder. | Diego Biurrun | 2012-04-23 | 2 | -4/+3 |
| | | | | libschroedinger is the preferred way to decode Dirac video. | ||||
* | avutil: add audio fifo buffer | Justin Ruggles | 2012-04-20 | 1 | -0/+12 |
| | | | | | The functions operate on the sample level rather than the byte level and work with all audio sample formats. | ||||
* | doc: Update sample Vim config with suitable (function) indentation settings. | Diego Biurrun | 2012-04-16 | 1 | -0/+2 |
| | |||||
* | doc/filters: update documentation. | Anton Khirnov | 2012-04-15 | 1 | -10/+8 |
| | |||||
* | avconv: add support for complex filtergraphs. | Anton Khirnov | 2012-04-15 | 2 | -1/+47 |
| | |||||
* | doc: Improve suggested Emacs settings for our coding style. | Diego Biurrun | 2012-04-15 | 1 | -4/+10 |
| | | | | | | Switch from changing global values to defining a separate C style and add appropriate settings for indenting assignments that span more than one line. | ||||
* | avfiltergraph: make the AVFilterInOut alloc/free API public | Stefano Sabatini | 2012-04-14 | 1 | -0/+4 |
| | | | | | | | This is required for letting applications to create and destroy AVFilterInOut structs in a convenient way. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | graphparser: allow specifying sws flags in the graph description. | Anton Khirnov | 2012-04-14 | 1 | -1/+7 |
| | |||||
* | git-howto: Explain how to avoid Windows line endings in git checkouts. | Diego Biurrun | 2012-04-12 | 1 | -0/+8 |
| | |||||
* | avutil: add av_get_packed_sample_fmt() and av_get_planar_sample_fmt() | Justin Ruggles | 2012-04-08 | 1 | -0/+3 |
| | | | | Based on a patch by Clément Bœsch <ubitux@gmail.com> | ||||
* | avutil: Add av_get_default_channel_layout() | Justin Ruggles | 2012-04-05 | 1 | -0/+3 |
| | | | | Also, use the new function in the AC-3 encoder. | ||||
* | build: fix doc generation errors in parallel builds | Mans Rullgard | 2012-03-28 | 1 | -1/+1 |
| | | | | | | | | | | The $(dir) function used to construct OBJDIRS includes a trailing slash in the names returned, which GNU make 3.82 does not match to the slash-less 'doc' in the documentation dependencies, causing parallel build to fail. Adding a slash fixes this and still works with make 3.81. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | build: Do not explicitly add the doc directory to the OBJDIRS list. | Diego Biurrun | 2012-03-27 | 1 | -1/+0 |
| | | | | | | Now that a documentation generator is built in the doc directory, this is no longer necessary. Fixes the Make warning: Makefile:188: target `doc' given more than once in the same rule. | ||||
* | APIchanges: mark the place where 0.7 was cut. | Anton Khirnov | 2012-03-26 | 1 | -0/+7 |
| | |||||
* | APIchanges: mark the place where 0.8 was cut. | Anton Khirnov | 2012-03-26 | 1 | -0/+8 |
| | |||||
* | APIchanges: fill in missing dates and hashes. | Anton Khirnov | 2012-03-26 | 1 | -7/+7 |
| | |||||
* | doc: pass -Idoc texi2html and texi2pod | Mans Rullgard | 2012-03-20 | 1 | -2/+2 |
| | | | | | | This fixes doc generation in build tree separate from source. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | doc: texi2pod: add -I flag | Mans Rullgard | 2012-03-20 | 1 | -8/+11 |
| | | | | | | | This allows specifying additional directories to search for @include files. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | movenc: Add a min_frag_duration option | Martin Storsjö | 2012-03-20 | 1 | -0/+7 |
| | | | | | | | | The other fragmentation options (frag_duration, frag_size and frag_keyframe) are combined with OR, cutting fragments at the first of the conditions being fulfilled. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | rtsp: Set the default delay to 0.1 s for the RTSP/SDP/RTP demuxers | Martin Storsjö | 2012-03-20 | 1 | -3/+3 |
| | | | | | | | This enables reordering of UDP packets by default, unless the caller explicitly sets -max_delay 0. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Generate manpages for AV{Format,Codec}Context AVOptions. | Anton Khirnov | 2012-03-20 | 3 | -4/+139 |
| | |||||
* | doc/avconv: remove entries for AVOptions. | Anton Khirnov | 2012-03-20 | 1 | -174/+14 |
| | | | | Documentation for those will be generated automatically. | ||||
* | ZeroCodec Decoder | Derek Buitenhuis | 2012-03-19 | 1 | -0/+1 |
| | | | | | | | | An obscure Japanese lossless video codec, originally intended for use with a remote desktop application. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com> | ||||
* | RealAudio Lossless decoder | Kostya Shishkov | 2012-03-19 | 1 | -0/+1 |
| | |||||
* | APIchanges: Replace Subversion revision numbers by Git hashes. | Diego Biurrun | 2012-03-18 | 1 | -147/+147 |
| | |||||
* | avcodec: add XBM encoder | Paul B Mahol | 2012-03-17 | 1 | -0/+2 |
| | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com> | ||||
* | doc/general: update supported devices table. | Anton Khirnov | 2012-03-13 | 1 | -1/+2 |
| | | | | Add libcdio and fbdev, remove v4l1. | ||||
* | doc/general: add missing @tab to codecs table. | Anton Khirnov | 2012-03-13 | 1 | -1/+1 |
| | |||||
* | v4l2: update documentation | Luca Barbato | 2012-03-07 | 1 | -24/+10 |
| | | | | | Update the examples and remove stale information. Video4linux support had been already removed. | ||||
* | FATE: add CPUFLAGS variable, mapping to -cpuflags avconv option. | Anton Khirnov | 2012-03-06 | 1 | -1/+3 |
| | |||||
* | avconv: add -cpuflags option for setting supported cpuflags. | Anton Khirnov | 2012-03-06 | 1 | -0/+4 |
| | | | | Useful for testing. | ||||
* | cpu: add av_set_cpu_flags_mask(). | Anton Khirnov | 2012-03-06 | 1 | -0/+3 |
| | |||||
* | avcodec: add av_get_audio_frame_duration() function. | Justin Ruggles | 2012-03-05 | 1 | -0/+4 |
| | | | | | This is a utility function for the user to get the frame duration based on the codec id, frame size in bytes, and various AVCodecContext parameters. | ||||
* | lavc: make codec_is_decoder/encoder() public. | Anton Khirnov | 2012-03-04 | 1 | -0/+3 |
| | |||||
* | Windows Media Audio Lossless decoder | Mashiat Sarker Shakkhar | 2012-03-02 | 1 | -0/+1 |
| | | | | | | | | | | | | Decodes 16-bit WMA Lossless encoded files. 24-bit is not supported yet. Bitstream parser written by Andreas Öman with contributions from Baptiste Coudurier and Ulion. Includes a number of bug-fixes from Benjamin Larsson, Michael Niedermayer and Konstantin Shishkov, shine and polish by Diego Biurrun. Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | avpacket: Add a function for shrinking already allocated side data | Martin Storsjö | 2012-03-01 | 1 | -0/+3 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Add a minor bump, changelog/APIchanges entry and some documentation for APIC ↵ | Anton Khirnov | 2012-02-29 | 2 | -0/+38 |
| | | | | support. | ||||
* | segment: implement wrap around | Luca Barbato | 2012-02-28 | 1 | -0/+2 |
| | | | | | | | | Provide a way to wrap around the segment index so pseudostreaming live through a web server and html5 browser is simpler. Also ensure that 0 (disable) is a valid value across the options providing wrap around. | ||||
* | doc/APIchanges: fill in missing dates and hashes. | Anton Khirnov | 2012-02-27 | 1 | -5/+5 |
| |