summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* tools: add target_dec_fate.shMichael Niedermayer2018-12-29
| | | | | | | | Script to download and test ossfuzz testcases This also includes a list of such testcases. I intend to subsequently fill this list with the cases we have fixed in the past Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Makefile: Allow "make clean" to delete compat/atomics/pthread/stdatomic.oCarl Eugen Hoyos2018-12-28
| | | | Reported-by: Eric Thomas
* avformat/wvdec: detect and error out on WavPack DSD filesDavid Bryant2018-12-28
| | | | Not currently supported.
* avcodec/wavpack: fix decoding of files with many channelsPaul B Mahol2018-12-28
| | | | Fixes decoding of Run_The_Race_-_3rd_Order_Ambisonic_SN3D.wv
* configure: Make sure libpostproc can be found if -rpath-link doesn't work.Carl Eugen Hoyos2018-12-28
| | | | Solaris ld takes "-rpath-link=libpostproc" as indication to search in "-link=libpostproc".
* lavf/vividas: Support demuxing on big-endian hardware.Carl Eugen Hoyos2018-12-28
|
* lavf/vividas: Do not increase extradata_size after allocation.Carl Eugen Hoyos2018-12-28
| | | | Avoids a crash in avcodec_parameters_from_context().
* avcodec/mips: [loongson] optimize theora decoding in vp3dsp.gxw2018-12-27
| | | | | | | | | | | | | | Optimize theora decoding with msa in functions: 1. ff_vp3_idct_add_msa 2. ff_vp3_idct_put_msa 3. ff_vp3_idct_dc_add_msa 4. ff_vp3_v_loop_filter_msa 5. ff_vp3_h_loop_filter_msa 6. ff_put_no_rnd_pixels_l2_msa Theora decoding speed improved about 36%(from 22fps to 30fps, Tested on loongson 2K1000). Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* afilter/af_afir: remove invalid delayPaul B Mahol2018-12-27
|
* avfilter/af_afir: remove not needed nb_samples from filter contextPaul B Mahol2018-12-27
|
* avfilter/af_afir: remove not needed operationsPaul B Mahol2018-12-27
|
* avfilter/af_sofalizer: use av_log2()Paul B Mahol2018-12-27
|
* avfilter/af_headphone: use av_log2()Paul B Mahol2018-12-27
|
* avfilter/af_afir: remove dead store variablePaul B Mahol2018-12-26
|
* avfilter/af_afir: remove unused variablePaul B Mahol2018-12-26
|
* swscale/output: Altivec-optimize float yuv2plane1Lauri Kasanen2018-12-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This function wouldn't benefit from VSX instructions, so I put it under altivec. ./ffmpeg_g -f rawvideo -pix_fmt rgb24 -s hd1080 -i /dev/zero -pix_fmt grayf32le \ -f null -vframes 100 -v error -nostats - 3743 UNITS in planar1, 65495 runs, 41 skips -cpuflags 0 23511 UNITS in planar1, 65530 runs, 6 skips grayf32be 4647 UNITS in planar1, 65449 runs, 87 skips -cpuflags 0 28608 UNITS in planar1, 65530 runs, 6 skips The native speedup is 6.28133, and the bswapping one 6.15623. Fate passes, each format tested with an image to video conversion. Signed-off-by: Lauri Kasanen <cand@gmx.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/dnxhddec: fix block alignmentRamiro Polla2018-12-26
| | | | | | blockdsp requires 32 byte alignment. Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/4xm: fix block alignmentRamiro Polla2018-12-26
| | | | | | blockdsp requires 32 byte alignment. Signed-off-by: James Almer <jamrial@gmail.com>
* avformat/hlsenc: remove unused variable to fix compiler warningSteven Liu2018-12-26
| | | | Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
* Fix usage of temp_file flag in hls_flags option.Adrian Guzowski2018-12-26
| | | | | | | | | | | This is a regression introduced by 223d2bde22ce33dcbcb6f17f234b609cb98f1fb6. It appears that regression was introduced in 4.1, 4.0.x does not share this behaviour. Temp files were not created for MPEG-TS segments options - HLS_TEMP_FILE flag was never set on AVFormatContext, it is however set on HLSContext object. In order to fix this issue, proper flags field must be checked. In addition, renaming code was messed up and apparently was working only for MP4 files.
* avformat/hls.c: Properly free prev_segments dynarray after playlist parsingvkot2018-12-26
|
* lavc/libdavs2: enable multithreadhwrenx2018-12-26
| | | | | Reviewed-by: Steven Liu <lq@chinaffmpeg.org> Signed-off-by: hwrenx <hwrenx@126.com>
* avfilter/af_headphone: fix regression after 7c201e420Paul B Mahol2018-12-26
|
* avfilter/af_sofalizer: fix regression after 7ea4b928a264Paul B Mahol2018-12-26
|
* avfilter/af_sofalizer: fix typo in commentsPaul B Mahol2018-12-26
|
* avfilter/af_sofalizer: use float constantsPaul B Mahol2018-12-26
|
* avfilter/af_sofalizer: add fltp sample format supportPaul B Mahol2018-12-26
|
* avformat/mxfenc: support writing subsecond precision timestampsMarton Balint2018-12-25
| | | | Signed-off-by: Marton Balint <cus@passwd.hu>
* avformat/mxfdec: support subsecond precision of decoded timestampsMarton Balint2018-12-25
| | | | Signed-off-by: Marton Balint <cus@passwd.hu>
* avformat/mxfdec: replace obsolete commentMarton Balint2018-12-25
| | | | | | We no longer use strftime directly but use av_timegm to get an int64_t timestamp. Signed-off-by: Marton Balint <cus@passwd.hu>
* avfilter/af_headphone: speed up fast convolutionPaul B Mahol2018-12-25
| | | | Do IFFT only once per output channel.
* avfilter/af_sofalizer: speed up fast convolutionPaul B Mahol2018-12-25
| | | | Do inverse FFT only once per output channel.
* avcodec/lagarith: Remove duplicate checkMichael Niedermayer2018-12-25
| | | | | Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/libvpxenc: add VP8/9 sharpness config optionRene Claus2018-12-24
| | | | | | | | This commit adds configuration options to libvpxenc.c that can be used to tune the sharpness parameter for VP8 and VP9. Signed-off-by: Rene Claus <rclaus@google.com> Signed-off-by: James Zern <jzern@google.com>
* avcodec/mips: Fix failed case: hevc-conformance-AMP_A_Samsung_* when enable msagxw2018-12-24
| | | | | | | | | The AV_INPUT_BUFFER_PADDING_SIZE has been increased to 64, but the value is still 32 in function ff_hevc_sao_edge_filter_8_msa. So, use AV_INPUT_BUFFER_PADDING_SIZE directly. Also, use MAX_PB_SIZE directly instead of 64. Fate tests passed. Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/af_surround: fix code indentationPaul B Mahol2018-12-24
|
* avfilter/af_headphone: do not reduce LFE gain too muchPaul B Mahol2018-12-24
|
* avfilter/af_sofalizer: do not reduce LFE by 6dBPaul B Mahol2018-12-24
| | | | It is already reduced enough.
* avformat/hlsenc: remove duplicate operation at hls_write_headerSteven Liu2018-12-24
| | | | | | the options have set when avformat_init_output at hls_mux_init Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
* avfilter/af_sofalizer: fix memory leaksPaul B Mahol2018-12-23
|
* avfilter/af_sofalizer: set delays when interpolation is disabledPaul B Mahol2018-12-23
|
* avcodec/wmavoice: use init_get_bits8()Paul B Mahol2018-12-23
|
* avcodec/g722dec: use init_get_bits8()Paul B Mahol2018-12-23
|
* avcodec/fic: use init_get_bits8()Paul B Mahol2018-12-23
|
* avcodec/fic: Fail on invalid slice size/offMichael Niedermayer2018-12-23
| | | | | | | | Fixes: Timeout Fixes: 11486/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FIC_fuzzer-5677133863583744 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/ivi: Avoid mbs memleakMichael Niedermayer2018-12-23
| | | | | | | Fixes: 11696/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_INDEO5_fuzzer-5740319635668992 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/ilbcdec: fix integer overflow in energyMichael Niedermayer2018-12-23
| | | | | | | | | | webrtc uses a int32_t like the existing code in ilbcdec Fixes: signed integer overflow: 2080245063 + 257939661 cannot be represented in type 'int' Fixes: 11037/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_ILBC_fuzzer-5682976612941824 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/af_sofalizer: stop using easy APIPaul B Mahol2018-12-23
| | | | Easy API is not flexible enough for our needs.
* avcodec/g723_1dec: use init_get_bits8()Paul B Mahol2018-12-23
|
* avcodec: add g732_1 parserPaul B Mahol2018-12-23
|