summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | swscale/arm/yuv2rgb: factorize lsl in load_args_yuv422pMatthieu Bouron2016-04-011-2/+1
| |
* | swscale/arm/yuv2rgb: fix comments in load_args_yuv422pMatthieu Bouron2016-04-011-4/+4
| |
* | swscale/arm/yuv2rgb: remove 32bit code pathMatthieu Bouron2016-04-012-162/+66
| |
* | lavc: factor apply_param_change() AV_EF_EXPLODE handlingwm42016-04-011-15/+19
| | | | | | | | Remove the duplicated code for handling failure of apply_param_change().
* | lavu: improve documentation of some AVFrame functionswm42016-04-011-0/+11
| |
* | psxstr: Remove some commented out codeDerek Buitenhuis2016-03-311-7/+1
| | | | | | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* | lavc/utils: transfer width/height for subs in codecparClément Bœsch2016-03-311-0/+8
| | | | | | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* | codecpar: Add video delay fieldDerek Buitenhuis2016-03-312-0/+7
| | | | | | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* | Add frame_size to AVCodecParametersHendrik Leppkes2016-03-312-0/+6
| | | | | | | | Signed-off-by: Derek Buitenhuis <[email protected]>
* | lavc: Add seek_preroll to AVCodecParametersJames Almer2016-03-312-0/+6
| | | | | | | | Signed-off-by: James Almer <[email protected]>
* | Merge commit 'a8068346e48e123f8d3bdf4d64464d81e53e5fc7'Derek Buitenhuis2016-03-313-18/+38
|\| | | | | | | | | | | | | | | | | * commit 'a8068346e48e123f8d3bdf4d64464d81e53e5fc7': lavc: add a variant of av_get_audio_frame_duration working with AVCodecParameters Fixes from jamrial incorporated. Merged-by: Derek Buitenhuis <[email protected]>
| * lavc: add a variant of av_get_audio_frame_duration working with ↵Anton Khirnov2016-02-233-12/+29
| | | | | | | | AVCodecParameters
* | Merge commit '998e1b8f521b73e1ed3a13caaabcf79eb401cf0d'Derek Buitenhuis2016-03-314-1/+319
|\| | | | | | | | | | | | | | | | | | | | | * commit '998e1b8f521b73e1ed3a13caaabcf79eb401cf0d': lavc: add codec parameters API Fixes added in: - bit_rate has been made int64_t to match. - profile and level are properly initialize. Merged-by: Derek Buitenhuis <[email protected]>
| * lavc: add codec parameters APIAnton Khirnov2016-02-234-1/+319
| | | | | | | | | | | | This API is intended to allow passing around codec parameters without using full AVCodecContext (which also contains codec options and encoder/decoder state).
* | swscale: cleanup unused codePedro Arthur2016-03-3110-463/+65
| | | | | | | | | | Removed previous swscale code under '#ifndef NEW_FILTER' and removed unused fields of SwsContext
* | swscale: Deprecate vector functions which are unused outside swscaleMichael Niedermayer2016-03-313-27/+60
| | | | | | | | | | | | | | | | There are no known users of these functions within debian It should be thus possible to remove these functions without recommandition of a replacement Signed-off-by: Michael Niedermayer <[email protected]>
* | configure: Fix debugging on mingw-w64 with gdbAlex Smith2016-03-311-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The relocation hack broke debugging on mingw-w64 when using gdb. This makes the reloc hack dependent on --disable-debug so it's still enabled for release builds. This is simply an immediate fix for the issue of broken debugging, we should probably still look at the possibility of reverting it outright if it proves to be more trouble than it's worth. For now keeping it enabled for release builds is a reasonable trade off. Signed-off-by: Alex Smith <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* | doc/filters: add stereotools examplesPaul B Mahol2016-03-311-0/+16
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | doc/filters: add sofalizer examplesPaul B Mahol2016-03-311-0/+23
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | sws/aarch64: add ff_hscale_8_to_15_neonClément Bœsch2016-03-316-3/+106
| | | | | | | | | | | | | | ./ffmpeg -nostats -f lavfi -i testsrc2=4k:d=2 -vf bench=start,scale=1024x1024,bench=stop -f null - before: t:0.489726 avg:0.489883 max:0.491852 min:0.489482 after: t:0.256515 avg:0.256458 max:0.256999 min:0.253755
* | AAC encoder: fix undefined behaviorClaudio Freire2016-03-301-1/+5
| | | | | | | | | | Fix uninitialized access of minsf in short windows Fix potential invocation of coef2minsf(0)
* | avformat/latmenc: auto-insert aac_adtstoasc bitstream filter when neededJames Almer2016-03-301-5/+15
| | | | | | | | | | Reviewed-by: Ronald S. Bultje <[email protected]> Signed-off-by: James Almer <[email protected]>
* | fate: Add filter-metadata-cropdetectMichael Niedermayer2016-03-302-0/+38
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | AAC encoder: fix signed integer overflowClaudio Freire2016-03-301-3/+6
| | | | | | | | | | | | | | Clamp scalefactors by coef2minsf to avoid undefined behavior caused by signed integer overflow. It also avoids clipping of coefficients so it should avoid artifacts as well, on very rare corner cases.
* | avcodec/nvenc: Generate AUD NAL units for better compatiblityTimo Rothenpieler2016-03-301-0/+4
| |
* | tests/audiomatch: Reduce search windowMichael Niedermayer2016-03-301-1/+1
| | | | | | | | | | | | This avoids unneeded computations Signed-off-by: Michael Niedermayer <[email protected]>
* | tests/audiomatch: also print signal vs reference lengthMichael Niedermayer2016-03-3048-48/+48
| | | | | | | | Signed-off-by: Michael Niedermayer <[email protected]>
* | doc/filters: remove false claim in sofalizer descriptionPaul B Mahol2016-03-301-3/+3
| | | | | | | | | | | | | | Remove false claim that processing in freq domain is worse quality than processing in time domain. Signed-off-by: Paul B Mahol <[email protected]>
* | Revert "aacenc: use av_clip() instead of av_clip() during quantization"Rostislav Pehlivanov2016-03-301-1/+1
| | | | | | | | | | | | This reverts commit c0918613a0ecaac6819409c64107583eebc0ccc2, since it triggered a new assertion with gcc. This bug definitely needs a true proper fix.
* | Revert "doc/filters: remove false claim in sofalizer description"Rostislav Pehlivanov2016-03-301-3/+3
| | | | | | | | This reverts commit bf1495d9a991dd13e382a4c1871d96708fdec4e7.
* | aacenc: use av_clip() instead of av_clip() during quantizationRostislav Pehlivanov2016-03-301-1/+1
| | | | | | | | | | | | | | | | | | Seems like clang might be miscompiling it and causing a signed integer overflow, making a FATE test fail. Doesn't seem to affect performance, it only runs on the ESC codebook. Reviewed-by: Claudio Freire <[email protected]> Signed-off-by: Rostislav Pehlivanov <[email protected]>
* | doc/filters: remove false claim in sofalizer descriptionPaul B Mahol2016-03-291-3/+3
| | | | | | | | | | | | | | Remove false claim that processing in freq domain is worse quality than processing in time domain. Signed-off-by: Paul B Mahol <[email protected]>
* | avfilter/vf_waveform: optimize lowpass filter even morePaul B Mahol2016-03-291-13/+38
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | avcodec/mips: Optimization synced to the newest code base.Jovan Zelincevic2016-03-291-7/+4
| | | | | | | | | | | | | | | | FFT expanded to 2^17. Signed-off-by: Jovan Zelincevic <[email protected]> Reviewed-by: Nedeljko Babic <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]>
* | cfhd: Do not initialize context sizeVittorio Giovara2016-03-291-2/+0
| | | | | | | | | | | | | | | | Otherwise probing and stream analisys will report a correct coded size but an empty visible size. Approved by: kieran Signed-off-by: Michael Niedermayer <[email protected]>
* | avformat/svag: fix division by zeroJames Almer2016-03-281-1/+1
| | | | | | | | | | | | Fixes ticket #5386 Signed-off-by: James Almer <[email protected]>
* | fix some a/an typosLou Logan2016-03-2826-32/+32
| | | | | | | | Signed-off-by: Lou Logan <[email protected]>
* | avcodec/utils: fix packet duration of frames with discarded paddingsMarton Balint2016-03-281-2/+1
| | | | | | | | | | Reviewed-by: Hendrik Leppkes <[email protected]> Signed-off-by: Marton Balint <[email protected]>
* | lavd/dshow_crossbar: remove trailing whitespaceLou Logan2016-03-281-2/+2
| | | | | | | | Signed-off-by: Lou Logan <[email protected]>
* | avfilter/af_sofalizer: allow user to setup custom virtual speakers positionsPaul B Mahol2016-03-282-0/+87
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | lavc/mediacodec: fix zero stride for OMX.allwinner.video.decoder.avcKirill Gavrilov2016-03-281-1/+1
| |
* | avfilter/vf_waveform: optimize 16bit lowpass filterPaul B Mahol2016-03-281-4/+20
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | avcodec: add dca core extraction bsfPaul B Mahol2016-03-286-1/+68
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | lavc/mediacodec: use ternary operator to set slice-height valueMatthieu Bouron2016-03-281-5/+1
| |
* | avcodec/diracdec: check bitstream size related fields for overflowsMichael Niedermayer2016-03-281-5/+21
| | | | | | | | | | | | | | | | Fixes segfault Fixes Ticket5333 Regression since bfc8a4dabe5a0154b31128b59dca575010176441 Signed-off-by: Michael Niedermayer <[email protected]>
* | configure: Fail if CUDA enabled but not foundTimo Rothenpieler2016-03-281-1/+2
| | | | | | | | | | Without this patch, configure still passes and enables CUDA, no matter if it was actually found, breaking the build in case it was not.
* | avfilter/vf_waveform: optimize lowpass 8bit filterPaul B Mahol2016-03-271-24/+71
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | avfilter/vf_waveform: move mirror variable into function argumentPaul B Mahol2016-03-271-40/+67
| | | | | | | | Signed-off-by: Paul B Mahol <[email protected]>
* | avcodec: Remove libdcadec, we already have it merged internallyKieran Kunhya2016-03-276-319/+2
| |
* | avcodec/h264_slice: Check PPS more extensively when its not copiedMichael Niedermayer2016-03-271-3/+7
| | | | | | | | | | | | | | Fixes Ticket5371 Fixes null pointer dereference Signed-off-by: Michael Niedermayer <[email protected]>