summaryrefslogtreecommitdiffstats
path: root/libavfilter
Commit message (Collapse)AuthorAgeFilesLines
* avfiltergraph: Properly handle memory allocation failureDerek Buitenhuis2013-10-271-0/+13
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* avfilter: add mergeplanes filterPaul B Mahol2013-10-274-1/+316
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi/overlay: correct small error in intersection detectionBenedict Endemann2013-10-271-2/+2
| | | | | | | | | The image size of the destination image was used to determine if a source image was positioned outside the destination image, that no intersection could occur. Actually for these two cases the size of the source image has to be used! Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* avfilter/x86/vf_gradfun_init: fix const and related warningsMichael Niedermayer2013-10-241-4/+5
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit '0e730494160d973400aed8d2addd1f58a0ec883e'Michael Niedermayer2013-10-244-218/+207
|\ | | | | | | | | | | | | | | | | | | * commit '0e730494160d973400aed8d2addd1f58a0ec883e': avfilter: x86: Port gradfun filter optimizations to yasm Conflicts: libavfilter/x86/vf_gradfun_init.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avfilter: x86: Port gradfun filter optimizations to yasmDaniel Kang2013-10-234-218/+207
| | | | | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* | avfilter/libmpcodecs/vf_eq: remove useless storage class specifier in empty ↵Paul B Mahol2013-10-241-1/+1
| | | | | | | | | | | | declaration Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_scale: Correct vf_scale mappings from arguments to color rangeRobert Krüger2013-10-231-2/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'f6633c55a3c0e93a5b2bab6aa0692fb608f2a38d'Michael Niedermayer2013-10-233-3/+3
|\ \ | |/ | | | | | | | | | | * commit 'f6633c55a3c0e93a5b2bab6aa0692fb608f2a38d': avfilter: Fix typo in Loren's email address Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * avfilter: Fix typo in Loren's email addressDiego Biurrun2013-10-233-3/+3
| |
| * pthread: Avoid crashes/odd behavior caused by spurious wakeupsDerek Buitenhuis2013-10-221-2/+8
| | | | | | | | | | | | This is similar to 5152196b2b47d446d9a509b9bfb318daa26a1f2b. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | Merge commit '00d7369de06a16f7c8770a899fcb16bcb94b1e20'Michael Niedermayer2013-10-221-1/+6
|\ \ | |/ | | | | | | | | | | * commit '00d7369de06a16f7c8770a899fcb16bcb94b1e20': vf_fieldorder: log when processing is skipped Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vf_fieldorder: log when processing is skippedVittorio Giovara2013-10-221-1/+6
| | | | | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* | lavfi/pthread: Avoid crashes/odd behavior caused by spurious wakeupsDerek Buitenhuis2013-10-221-2/+8
| | | | | | | | | | | | This is similar to 5152196b2b47d446d9a509b9bfb318daa26a1f2b. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | avfilter: replaygain scannerPaul B Mahol2013-10-214-2/+617
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/ff_insert_pad: fix order of operationsMichael Niedermayer2013-10-211-2/+2
| | | | | | | | | | | | | | | | | | | | Fixes out of bounds access Fixes CID732170 Fixes CID732169 No filter is known to use this function in a way so the issue can be reproduced. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Do not leave positive values undefined when negative are defined as errorMichael Niedermayer2013-10-197-15/+15
| | | | | | | | | | | | | | | | Define positive return values as non errors and leave further meaning undefined This allows future extensions to use these values Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit 'eb90a2091ffb94d8c29aaa5ff50f4192520254fc'Michael Niedermayer2013-10-141-1/+2
|\ \ | |/ | | | | | | | | | | | | | | | | * commit 'eb90a2091ffb94d8c29aaa5ff50f4192520254fc': pthread: Fix deadlock during thread initialization Conflicts: libavcodec/pthread.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * pthread: Fix deadlock during thread initializationDerek Buitenhuis2013-10-131-1/+2
| | | | | | | | | | | | | | | | | | | | Sometimes, if pthread_create() failed, then pthread_cond_wait() could accidentally be called in the worker threads after the uninit function had already called pthread_cond_broadcast(), leading to a deadlock. Don't call pthread_cond_wait() if c->done is set. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | avfilter/vsrc_testsrc: smpte(hd)bars: use yuv directlyPaul B Mahol2013-10-121-54/+76
| | | | | | | | | | | | Also set color space. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_separatefields: do not reset pts to 0Paul B Mahol2013-10-121-23/+56
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/lavfutils: fix memleak of avpacketMichael Niedermayer2013-10-121-0/+3
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_removelogo: fix pixel pointer so it points where its intendedMichael Niedermayer2013-10-121-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_removelogo: fix offset for accessing pixels above and belowMichael Niedermayer2013-10-121-2/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_removelogo: use av_freep() for safteyMichael Niedermayer2013-10-121-4/+4
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_w3fdif: do not reset pts to 0Paul B Mahol2013-10-101-8/+20
| | | | | | | | | | | | Shamelessly stolen from yadif. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/buffersink: try to fix AV_NOPTS_VALUEMichael Niedermayer2013-10-091-2/+4
| | | | | | | | | | | | no testcase available, just found this issue by reading the code Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/ff_filter_frame_needs_framing: fix handling of AV_NOPTS_VALUEMichael Niedermayer2013-10-091-2/+3
| | | | | | | | | | | | Fixes Ticket3015 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/af_join: remove now unnecessary gotoPaul B Mahol2013-10-081-10/+5
| | | | | | | | | | | | | | Options are freed from the generic code now, there is no need to call av_opt_free() from the filter. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_deshake: fix block_contrast() lower brightness valueMichael Niedermayer2013-10-071-1/+1
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/deshakeLenny Wang2013-10-071-1/+1
| | | | | | | | | | | | The old row index looks weird and wrong to me Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/lswsutils: dont override the default scalerMichael Niedermayer2013-10-071-1/+1
| | | | | | | | | | | | | | This should make no difference as this code is only used by removelogo which seems to refuse to use masks of different size. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_drawtext: remove dead initializationPaul B Mahol2013-10-071-1/+1
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_phase: remove dead initializationPaul B Mahol2013-10-071-1/+1
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_scale: dont duplicate default.Michael Niedermayer2013-10-061-1/+1
| | | | | | | | | | | | | | use the defaults set by swscale Suggested-by: stefano Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_scale: change the default scaler to bicubicMichael Niedermayer2013-10-061-1/+1
| | | | | | | | | | See: [FFmpeg-devel] [PATCH] swscale/options: switch default to bicubic Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/f_interleave: use the name 's' for the pointer to the private contextPaul B Mahol2013-10-051-15/+15
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/af_silencedetect: support more sample formatsPaul B Mahol2013-10-051-33/+81
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_histogram: use const for variables that are not supposed to changePaul B Mahol2013-10-041-13/+13
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_frei0r: fix out of array readMichael Niedermayer2013-10-041-1/+2
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avfilter/vf_pullup: do not ignore frame field orderPaul B Mahol2013-10-031-1/+1
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_histogram: add mirrored waveform modeMarton Balint2013-10-022-6/+17
| | | | | | | | | | | | Added parameter to mirror the waveform (high values are shown on top in column mode) Signed-off-by: Marton Balint <cus@passwd.hu>
* | avfilter/vf_histogram: fix segfault in parade waveform mode for subsampled ↵Marton Balint2013-10-021-4/+4
| | | | | | | | | | | | formats Signed-off-by: Marton Balint <cus@passwd.hu>
* | Merge commit '06e7301a2efa8dededecbe6836ee5b59bf7e5e76'Michael Niedermayer2013-10-031-0/+9
|\ \ | |/ | | | | | | | | | | * commit '06e7301a2efa8dededecbe6836ee5b59bf7e5e76': vf_interlace: do not process an already interlaced frame Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * vf_interlace: do not process an already interlaced frameVittorio Giovara2013-10-021-0/+10
| | | | | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* | avfilter/avf_showspectrum: use the name 's' for the pointer to the private ↵Clément Bœsch2013-10-021-93/+93
| | | | | | | | context
* | avfilter/af_afade: use the name 's' for the pointer to the private contextPaul B Mahol2013-10-021-28/+28
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_removelogo: use the name 's' for the pointer to the private contextClément Bœsch2013-10-021-38/+38
| |
* | avfilter/af_silencedetect: use the name 's' for the pointer to the private ↵Paul B Mahol2013-10-021-17/+16
| | | | | | | | | | | | context Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter/vf_histogram: change order of histograms for planar rgbPaul B Mahol2013-10-011-3/+4
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
OpenPOWER on IntegriCloud