aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* avfilter/vf_atadenoise: add support for more pixel formatsPaul B Mahol2016-08-151-0/+5
|
* avfilter/af_astats: add support for other sample formatsPaul B Mahol2016-08-151-25/+89
|
* avcodec/bsf: Add list BSF APIJan Sebechlebsky2016-08-153-2/+365
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/iff: remove palette swapping for animPaul B Mahol2016-08-151-12/+8
| | | | It appears it is wrong.
* avfilter/avf_showspectrum: add some multithreading supportPaul B Mahol2016-08-151-101/+131
|
* doc/filters: add yet another zoompan usage examplePaul B Mahol2016-08-151-0/+6
|
* avfilter/vf_zoompan: fix pzoom usagePaul B Mahol2016-08-151-4/+11
|
* libavcodec/qsvdec_h2645.c: switch to the new BSF APIIvan Uskov2016-08-151-31/+107
| | | | | | | | | | This patch applies same changes as commit e3dfef8e3c85a64dbe6388117303f5819fa3c6a2 of libav: instead of the obsolete AVBitStreamFilterContext now the new AVBSFContext filter is used to restore annex-B prefixes. Based-on: e3dfef8e3c85a64dbe6388117303f5819fa3c6a2 by Anton Khirnov Push requested by maintainer Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* configure: All sun4 machines are SPARCs, not just sun4uMaya Rashish2016-08-151-1/+1
| | | | | | Allow building on sun4v Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/http: add support for content_type option in listen modeMoritz Barsnick2016-08-142-2/+2
| | | | | | | | | Instead of silently ignoring the content_type option in listen mode, apply its value to the provided "Content-Type:" header. Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vf_signalstats: fix saturation calculation for >8 bitPaul B Mahol2016-08-141-5/+5
|
* aacenc: fix various typos and an error messageRostislav Pehlivanov2016-08-132-12/+12
| | | | | | Too much copy and pasting. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* aacenc: unmark the fast coder as experimentalRostislav Pehlivanov2016-08-131-2/+2
| | | | | | | This version has had much testing so there's little point in keeping it maked as experimental. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* aacenc: add a faster version of twoloop as the "fast" coderRostislav Pehlivanov2016-08-131-20/+134
| | | | | | | | | Does nothing fancy but still sounds very decent at 128kbps. Still room to improve by bringing in the low pass and PNS management from the main big twoloop which should improve its quality but not sacrifice that much speed. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* avfilter/vf_signalstats: measure video bitdepthPaul B Mahol2016-08-132-0/+37
|
* avfilter/vf_signalstats: add >8 bit depth supportPaul B Mahol2016-08-131-16/+420
|
* avcodec/bsf: Add ff_bsf_get_packet_ref() functionJan Sebechlebsky2016-08-132-0/+27
| | | | | | | | Use of this function can save unnecessary malloc operation in bitstream filter. Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* configure: Check for arc4random() header definition.Carl Eugen Hoyos2016-08-131-1/+1
| | | | Fixes Cygwin compilation.
* doc/bsfs: Fix bsf options divider in documentationJan Sebechlebsky2016-08-131-1/+1
| | | | | | | | The actual implementation uses ':' divider, not '/' as documented. Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/bsf: Forbid packet without payload in av_bsf_send_packetJan Sebechlebsky2016-08-132-1/+5
| | | | | Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/bsf: Set EOF flag only in pkt == NULLJan Sebechlebsky2016-08-131-1/+1
| | | | | | | Set BSF EOF flag only if pkt == NULL in av_bsf_send_packet(). Signed-off-by: Jan Sebechlebsky <sebechlebskyjan@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavc/raw: Support QT b64a ARGB64 rawvideo.Carl Eugen Hoyos2016-08-136-2/+23
| | | | | Decoder based on a patch by v0lt, v0lt rambler ru Fixes ticket #5657.
* lavc/screenpresso: Fix 32bit pix_fmt, there is no transparency.Carl Eugen Hoyos2016-08-132-3/+3
| | | | Fixes a remaining issue of ticket #5025.
* fate: add test for compand filterPetru Rares Sincraian2016-08-123-0/+32
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* tests/fate/vcodec: add dnxhr edge testsMark Reid2016-08-1213-1/+67
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavcodec/dnxhdenc: add edge emulate for dnxhrMark Reid2016-08-122-17/+56
| | | | | | Fixes handling for resolutions that are not multiples of 16. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/utils: only warn when passed invalid lowres valueAman Gupta2016-08-121-3/+2
| | | | | | | | | This makes it easier to use the lowres option when dealing with input files in different codecs. If the codec doesn't support lowres=1 for instance, it will throw a warning and use lowres=0 instead of erroring out completely. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/http: add support for headers option in listen modeMoritz Barsnick2016-08-121-1/+5
| | | | | | | | Instead of silently ignoring the headers option in listen mode, use the provided headers. Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/filters: move hdcd documentation from video section to audio sectionPaul B Mahol2016-08-111-52/+52
|
* avfilter/af_adelay: make it possible to delay channels by exact number of ↵Paul B Mahol2016-08-112-2/+16
| | | | samples
* avisynth: simplify the pix_fmt check for the newer AviSynth APIStephen Hutchinson2016-08-111-22/+5
| | | | | | | The values don't need to be hardcoded since the correct values are returned by avs_bits_per_pixel. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* checkasm: h264dsp: Initialize the padding areaMartin Storsjö2016-08-111-1/+1
| | | | | | | | | This fixes valgrind warnings about conditional jumps based on uninitialized data (even though the uninitialized data only ever was compared with a direct copy of the same uninitialized data). Signed-off-by: Martin Storsjö <martin@martin.st> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/avf_avectorscope: fix initialization for prev_y in polar modePaul B Mahol2016-08-111-1/+1
|
* avfilter/avf_avectorscope: add scale optionPaul B Mahol2016-08-112-59/+84
|
* doc/filters: fix typo in acrusher filter docsPaul B Mahol2016-08-111-1/+1
|
* avfilter: add acrusher filterPaul B Mahol2016-08-116-1/+424
|
* avformat/id3v2: fix memleak with empty stringsMichael Niedermayer2016-08-111-1/+4
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* libavformat/mxfenc: add UID for unconstrained H.264 coded video in baseline ↵Matthias Hunstock2016-08-111-0/+2
| | | | | | | | | profile Enable the MXF muxer to mux baseline H.264 video streams. Signed-off-by: Matthias Hunstock <atze@fem.tu-ilmenau.de> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfiltergraph.c: restore disabling of auto conversionsBurt P2016-08-101-0/+8
| | | | | | | | Restore a check added in 440af105f2306d3c7b3b3f4d7530bab910d49cb9 but lost sometime after. avfilter_graph_set_auto_convert() will have an effect once again. Signed-off-by: Burt P <pburt0@gmail.com>
* avfilter/avf_showwaves: add sqrt and cbrt amplitude scalersPaul B Mahol2016-08-102-2/+61
|
* avfilter/vf_remap: >8 bit supportPaul B Mahol2016-08-101-3/+81
|
* avfilter/drawutils: Fix single plane with alphaMichael Niedermayer2016-08-091-0/+2
| | | | | | Fixes Ticket5720 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/filters: add one more lutyuv examplePaul B Mahol2016-08-091-0/+6
|
* docs/filters: Fix parameter names for colorspace filterDerek Buitenhuis2016-08-081-2/+2
| | | | | | | They were erroneously set to the name of the unit instead of the parameter name. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* avformat/id3v2: Mark variable as unused to avoid "set but not used" warningMichael Niedermayer2016-08-081-1/+1
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/rawdec: Fix palette handling with changing palettesMichael Niedermayer2016-08-081-8/+17
| | | | | | | | Fixes out of array access Fixes: poc.swf Found-by: 连一汉 <lianyihan@360.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* cmdutils: remove the current working directory from the DLL search path on win32Hendrik Leppkes2016-08-086-0/+21
| | | | | Reviewed-by: Matt Oliver <protogonoi@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* af_hdcd: Don't warn if converting from AV_SAMPLE_FMT_S16PBurt P2016-08-081-14/+20
| | | | | | | Also checking AVFilterLink->type is AVMEDIA_TYPE_AUDIO before calling av_get_sample_fmt_name() on AVFilterLink->format. Signed-off-by: Burt P <pburt0@gmail.com>
* af_hdcd: Add analyze modeBurt P2016-08-082-8/+187
| | | | | | | | | | A new mode, selected by filter option, to aid in analysis of HDCD encoded audio. In this mode the audio is replaced by a solid tone and the amplitude is adjusted to signal some specified aspect of the process. The output file can be loaded in an audio editor alongside the original, where the user can see where different features or states are present. Signed-off-by: Burt P <pburt0@gmail.com>
* avcodec/ffv1: add AV_PIX_FMT_GBRP16 supportMichael Niedermayer2016-08-084-2/+45
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>