summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* avfilter/vf_premultiply: add gray14 formatPaul B Mahol2018-09-09
|
* avfilter/vf_extractplanes: define higher depth formats with macroPaul B Mahol2018-09-09
|
* avfilter/vf_extractplanes: define common 8-bit pixel formatsPaul B Mahol2018-09-09
|
* avfilter/vf_extractplanes: fix 14bit format extractionPaul B Mahol2018-09-09
|
* avcodec/scpr: stop checking for overread twicePaul B Mahol2018-09-09
|
* avutil/mips: [loongson] simplify macro TRANSPOSE_4H and TRANSPOSE_8BShiyou Yin2018-09-09
| | | | | | Simplify macro TRANSPOSE_4H in mmiutils.h and add TRANSPOSE_8B as a common macro. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/mips: [loongson] optimize vp8 decoding in vp8dsp.gxw2018-09-09
| | | | | | | | | | | | | Optimize vp8 loop filter with mmi, four functions optimized: 1. ff_vp8_h_loop_filter8uv_mmi. 2. ff_vp8_v_loop_filter8uv_mmi. 3. ff_vp8_h_loop_filter16_mmi. 4. ff_vp8_v_loop_filter16_mmi. Vp8 decoding speed improved about 50%(from 73fps to 110fps, Tested on loongson 3A3000). Signed-off-by: Shiyou Yin <yinshiyou-hf@loongson.cn> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avformat/utils: Don't calculate duration using AV_NOPTS_VALUE for start_time.Dale Curtis2018-09-09
| | | | | | Found by ClusterFuzz, https://crbug.com/879852 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/aacenc: report channel layout by nameMoritz Barsnick2018-09-09
| | | | | | | Possibly useful in the error case. Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/tiff: check ff_lzw_decode_open() for failurePaul B Mahol2018-09-09
|
* avcodec/gifdec: set .caps_internalPaul B Mahol2018-09-09
|
* avcodec/gifdec: check ff_lzw_decode_open() for failurePaul B Mahol2018-09-09
|
* lavf/movenc: Fail when codec tag is invalid for formatJohn Stebbins2018-09-08
| | | | | | Fixes ticket #6897 Signed-off-by: James Almer <jamrial@gmail.com>
* lavf/movenc: Add GoPro metadata to permitted mp4 "codecs"John Stebbins2018-09-08
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* lavf/mov: factor out setting codec_idJohn Stebbins2018-09-08
| | | | | | Since it is performed in all cases now. Signed-off-by: James Almer <jamrial@gmail.com>
* lavf/mov: add AVCodecTag entry for GoPro metadataJohn Stebbins2018-09-08
| | | | | | This allows for validation of the track type Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/zmbv: decoder supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodec/ulti: fix minor style issuePaul B Mahol2018-09-08
|
* avcodec/tscc: decoder supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodec/tscc: check av_frame_alloc() for failurePaul B Mahol2018-09-08
|
* avcodec/on2avc: decoder supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodec/mscc: decoders supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodec/interplayacm: decoder supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodec/fmvc: use correct pixel format on big-endian for 16 bppPaul B Mahol2018-09-08
|
* avcodec/flashsv: check return value of flashsv_decode_init()Paul B Mahol2018-09-08
|
* avcodec/fic: change class name to more correct onePaul B Mahol2018-09-08
|
* avcodec/dsicinvideo: decoder supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodecc/cscd: fix some obvious style issuesPaul B Mahol2018-09-08
|
* avcodec/cscd: decoder supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodec/cook: decoder supports init_cleanup capabilityPaul B Mahol2018-09-08
|
* avcodec/rscc: fix decoding of some iscc filesPaul B Mahol2018-09-08
|
* avcodec: add RemotelyAnywhere Screen Capture decoderPaul B Mahol2018-09-08
|
* avcodec/wcmv: fix output on big-endian with rgb565 formatPaul B Mahol2018-09-08
|
* avcodec/qdmc: check return code of ff_fft_init()Paul B Mahol2018-09-08
|
* avfilter: add lut1d filterPaul B Mahol2018-09-07
|
* avcodec/h264dec: remove unnecessary checks in h264_decode_frameZhao Zhili2018-09-07
| | | | | | | These conditions are checked again in is_extra(). This patch makes no functional changes. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/h264dec: check number of SPS in is_extraZhao Zhili2018-09-07
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/mips: [loongson] fix improper use of register constraints.Shiyou Yin2018-09-07
| | | | | | | | Constraint "g" means compiler can store variable in memory or register. When we use constraint "g" for a variable and this variable was operated by instruction which only support register operands may lead "invalid operands" error. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avfilter/vf_interlace: fix numerical optionsThomas Mundt2018-09-07
| | | | | | Regression since 9c01cdb94e24aaf50f867a0a5c42b097c17c42b1 Signed-off-by: Thomas Mundt <tmundt75@gmail.com>
* avcodec/scpr: make sure count and min are validPaul B Mahol2018-09-07
|
* fate: fix hapqa-extract-nosnappy tests on small buildsJames Almer2018-09-06
| | | | | | Fixes ticket #7324 Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/dnxhdenc: interlaced is not supported in DNxHRPaul B Mahol2018-09-06
| | | | Fixes #7263.
* avcodec/dnxhddec: ask for samples with alphaPaul B Mahol2018-09-06
|
* avformat/dashdec: minus minBufferTime when there have valueSteven Liu2018-09-06
| | | | fix ticket 7382
* avformat/mxfdec: do not use sound essence descriptor quantization bits for ↵Marton Balint2018-09-05
| | | | | | | | | | | | | bits_per_coded_sample It refers to the uncompressed quantization, therefore is not correct for AAC. Also change mxf_set_pts to work based on current edit unit if bits_per_coded_sample is not available. Fixes error messages in the sample of ticket #7366. Signed-off-by: Marton Balint <cus@passwd.hu>
* avcodec/mips: [loongson] reoptimize put and add pixels clamped functions.Shiyou Yin2018-09-05
| | | | | | | | | | | | Simplify the usage of intermediate variable addr and remove unused variable all64 in following functions: 1. ff_put_pixels_clamped_mmi 2. ff_put_signed_pixels_clamped_mmi 3. ff_add_pixels_clamped_mmi This optimization speed up mpeg4 decode about 2% on loongson platform(tested with 3A3000). Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* ffplay: add option to allow custom seek intervalGyan Doshi2018-09-05
| | | | At present, left and right keys are hardcoded to seek by 10 seconds.
* avformat/dashdec: refine compute current fragment for ↵Steven Liu2018-09-05
| | | | | | | | | presentation_timeoffset mode fix ticket id: #7369 #7382. use ((wallclock - availability_start_time) * timescale -presentation_timeoffset) / duration Signed-off-by: Steven Liu <lq@onvideo.cn>
* avformat/dashdec: reindent code for previous commitSteven Liu2018-09-05
| | | | Signed-off-by: Steven Liu <lq@onvideo.cn>
* avformat/dashdec: add min_buffer_time process logicSteven Liu2018-09-05
| | | | | | | if there have min_buffer_time in playlist, use the min_buffer_time value for realtime. Signed-off-by: Steven Liu <lq@onvideo.cn>