summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* avformat/mov: Check extradata before accessMichael Niedermayer2016-08-161-2/+3
| | | | | | | Fixes NULL ptr dereference Fixes Ticket5778 Signed-off-by: Michael Niedermayer <[email protected]>
* avfilter/window_func: add cauchy, parzen and poisson window functionPaul B Mahol2016-08-165-1/+64
|
* ffmpeg/qsv: fix QSV-accelerated transcode performance drop issue.Jun Zhao2016-08-161-2/+1
| | | | | | | | | | | the merge commit 1b04ea1 "avconv: create simple filtergraphs earlier" will init the filtergraphs earlier, then init the QSV transcode can't suppose the nb_filters's value, else lead to the QSV transcode performance drop. Signed-off-by: Jun Zhao <[email protected]> Reviewed-by: Ivan Uskov <[email protected] Signed-off-by: Michael Niedermayer <[email protected]>
* avfilter/vaf_spectrumsynth: check return codePaul B Mahol2016-08-161-0/+2
|
* avfilter/avf_showspectrum: do not let multiple threads to write to same part ↵Paul B Mahol2016-08-161-10/+33
| | | | of memory
* avfilter/window_func: add dolph windowPaul B Mahol2016-08-165-1/+20
|
* lavc: add trailing_padding to AVCodecContext to match AVCodecParameters.Jon Toohill2016-08-164-18/+39
| | | | | | Shows encoder delay/padding in the stream summary if they are set. Signed-off-by: Michael Niedermayer <[email protected]>
* avfilter/vf_atadenoise: set default size value to 9Paul B Mahol2016-08-151-1/+1
| | | | This is enough, bigger sizes do not produce better output in 99% cases.
* 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 <[email protected]>
* 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 <[email protected]>
* configure: All sun4 machines are SPARCs, not just sun4uMaya Rashish2016-08-151-1/+1
| | | | | | Allow building on sun4v Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]> Reviewed-by: Nicolas George <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* avcodec/bsf: Forbid packet without payload in av_bsf_send_packetJan Sebechlebsky2016-08-132-1/+5
| | | | | Signed-off-by: Jan Sebechlebsky <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]>
* tests/fate/vcodec: add dnxhr edge testsMark Reid2016-08-1213-1/+67
| | | | Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]>
* 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ö <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* 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 <[email protected]>
* 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 <[email protected]>