Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-19lavu/hwcontext_d3d: Cast src pointers calling av_image_copy*().Carl Eugen Hoyos
Silences several warnings: libavutil/hwcontext_d3d11va.c:413:49: warning: passing argument 3 of ‘av_image_copy’ from incompatible pointer type libavutil/hwcontext_d3d11va.c:425:47: warning: passing argument 3 of ‘av_image_copy’ from incompatible pointer type libavutil/hwcontext_dxva2.c:351:45: warning: passing argument 3 of ‘av_image_copy’ from incompatible pointer type libavutil/hwcontext_dxva2.c:382:52: warning: passing argument 3 of ‘av_image_copy_uc_from’ from incompatible pointer type
2019-04-19lavf/vc1dec: Reduce probe score for streams with invalid frames.Carl Eugen Hoyos
Fixes ticket #7853.
2019-04-19lavc/alac: Make a variable unsigned.Carl Eugen Hoyos
Fixes a bogus compiler warning (max_samples_per_frame is checked): libavcodec/alac.c: In function ‘allocate_buffers’: ./libavutil/internal.h:142:9: warning: argument 1 value ‘18446744073709551552’ exceeds maximum object size 9223372036854775807
2019-04-19avcodec/get_bits: unbreak get_bits_le() with cached readerPaul B Mahol
2019-04-19lavf/utils: Allow url credentials to contain a slash.Carl Eugen Hoyos
Fixes ticket #7816.
2019-04-19avutil/colorspace: add macros for RGB->YUV BT.709Gyan Doshi
2019-04-19tests: Add EXESUF to program calls.Carl Eugen Hoyos
Fixes fate in Windows subsystem for Linux.
2019-04-19rename hls_segment_filename in fate-hls-segment-size for fateSteven Liu
2019-04-19add tests/ref/fate/hls-segment-size for the fate testSteven Liu
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
2019-04-18doc/mailing-list-faq: add DMARC mungingLou Logan
Signed-off-by: Lou Logan <lou@lrcd.com>
2019-04-18doc/encoders: Fix libvpx option name arnr-maxframes.Carl Eugen Hoyos
Fixes ticket #7856.
2019-04-18Updated documentation for libaom encoder options.Sam John
Signed-off-by: Gyan Doshi <ffmpeg@gyani.pro>
2019-04-18avfilter/af_agate: implement mode optionPaul B Mahol
2019-04-17avfilter/af_sidechaincompress: implement mode optionPaul B Mahol
2019-04-17tests/fate: add fate-hls-segment-size for hls_segment_size testSteven Liu
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
2019-04-17avcodec/cbs_av1: use the new signed value read/write functionsJames Almer
Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-17avcodec/cbs_h265: fix storage type for time_offset_value in Time Code SEIJames Almer
The spec defines it as an array of signed values, inferred to 0 when not present. Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-17avcodec/cbs_h264: fix storage type for time_offset in Pic Timing SEIJames Almer
The spec defines it as a signed value. Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-17avcodec/cbs_h2645: add helper macros for signed valuesJames Almer
Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-17avcodec/cbs: add helper functions and macros to read and write signed valuesJames Almer
Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-17avcodec/cbs_av1: add support for Scalability MetadataJames Almer
Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-16lavu/hwcontext_qsv: Mark a pointer as const.Carl Eugen Hoyos
Silences a warning: libavutil/hwcontext_qsv.c:912:15: warning: assignment discards 'const' qualifier from pointer target type
2019-04-16lavc/libaomenc: Mark a potentially unused variable as av_unused.Carl Eugen Hoyos
Fixes a warning: libavcodec/libaomenc.c:816:9: warning: unused variable ‘pict_type’
2019-04-16avformat/dashenc: Disable streaming for webm outputKarthick J
Currently streaming for webm output doesn't work. Disabling explicitly will make sure that the manifest will get generated correctly.
2019-04-16avcodec/videotoolbox: add support for 10bit pixel formatfumoboy007
this patch was originally posted on issue #7704 and was slightly adjusted to check for the availability of the pixel format.
2019-04-16lavfi/fspp: Remove two unused macros.Carl Eugen Hoyos
2019-04-15avdevice/decklink_common: add support for DeckLink SDK 11Marton Balint
Fixes ticket #7789. Signed-off-by: Marton Balint <cus@passwd.hu>
2019-04-15avdevice/decklink_common: properly check DoesSupportVideoMode result when ↵Marton Balint
trying VANC flag Signed-off-by: Marton Balint <cus@passwd.hu>
2019-04-15avdevice/decklink_dec: set configs before listing formatsMarton Balint
Format list can be input and profile dependant. Signed-off-by: Marton Balint <cus@passwd.hu>
2019-04-15lavf/hls: Cleanup the applehttpJun Zhao
Cleanup the applehttp as demuxer name, when use the command : ffmpeg -formats, get the confused information like: " E hls Apple HTTP Live Streaming D hls,applehttp Apple HTTP Live Streaming " we don't use applehttp as the demuxer/muxer name usually, so cleanup the applehttp and update the documents. After the change, get the information from "ffmpeg -formats": " DE hls Apple HTTP Live Streaming " Reviewed-by: Steven Liu <lq@onvideo.cn> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
2019-04-15lavf/rtsp.c: Fix stimeout option not applied on http tunnelJun Li
stimeout option is already used in tcp transport, since http is based on tcp, pass the option to http for tunneling case. Reviewed-by: Steven Liu <lq@onvideo.cn> Signed-off-by: Jun Li <junli1026@gmail.com>
2019-04-15Revert "lavf/rtsp.c: Fix stimeout option not applied on http tunnel"Steven Liu
This reverts commit 1ae8a1073ba8a3ceb9f51d9350785c27530aa469.
2019-04-15lavf/rtsp.c: Fix stimeout option not applied on http tunnelSigned-off-by: Jun Li
stimeout option is already used in tcp transport, since http is based on tcp, pass the option to http for tunneling case. Reviewed-by: Steven Liu <lq@onvideo.cn> Signed-off-by: Jun Li <junli1026@gmail.com>
2019-04-15Revert "lavf/rtsp.c: Fix stimeout option not applied on http tunnel"Steven Liu
This reverts commit f502bd5432c9d7a34392ec3147bc5b5e3a868d9c.
2019-04-15lavf/rtsp.c: Fix stimeout option not applied on http tunnelSteven Liu
stimeout option is already used in tcp transport, since http is based on tcp, pass the option to http for tunneling case. Reviewed-by: Steven Liu <lq@onvideo.cn> Signed-off-by: Jun Li <junli1026@gmail.com>
2019-04-14avformat/mxfdec: use operational_pattern_ul instead of operational_pattern ↵Marton Balint
for metadata This makes it more consistent with other metadata keys. Signed-off-by: Marton Balint <cus@passwd.hu>
2019-04-14avcodec/cbs_av1: add support for Padding OBUsJames Almer
Based on itut_t35 Matadata OBU parsing code. Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-14avcodec/cbs_av1: add a function to strip trailing zeroes from a buffer sizeJames Almer
Factor it out from cbs_av1_read_metadata_itut_t35() Reviewed-by: Mark Thompson <sw@jkqxz.net> Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-14avformat/hlsenc: flush packets before update split messageSteven Liu
fix ticket: 7831 Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
2019-04-13avcodec/truemotion2: Fix integer overflow in tm2_decode_blocks()Michael Niedermayer
Fixes: signed integer overflow: 255 + 2147483634 cannot be represented in type 'int' Fixes: 13472/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TRUEMOTION2_fuzzer-5712444142387200 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2019-04-13avcodec/imm4: flush prev_frame after seekingPaul B Mahol
2019-04-13avcodec: add LSCR decoderPaul B Mahol
Fixes #4711.
2019-04-11avformat/file: add seekable option to disallow seekingMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2019-04-11avformat/mxfdec: export operational pattern UL as file metadataMarton Balint
Can be useful for API users as ffmpeg/libavformat can't properly support some operational patterns. Signed-off-by: Marton Balint <cus@passwd.hu>
2019-04-11configure: fix av1_frame_split bsf dependenciesJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-11avcodec: add an AV1 frame split bitstream filterJames Almer
This will be needed by the eventual native AV1 decoder. Signed-off-by: James Almer <jamrial@gmail.com>
2019-04-11avcodec/agm: Check frame dimensionsMichael Niedermayer
Fixes: out of array access Fixes: 14110/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5649184864075776 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2019-04-11avcodec: add ADPCM AGM decoderPaul B Mahol
2019-04-11avcodec/agm: add support for non-dct codingPaul B Mahol
2019-04-11avcodec/agm: add support for higher compressionPaul B Mahol