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
2017-10-31Merge commit '4d56f7ab8f627aa140c1ede1bb61305f01cefcdd'James Almer
* commit '4d56f7ab8f627aa140c1ede1bb61305f01cefcdd': avconv: Flush output BSFs when stream copy reaches EOF Merged-by: James Almer <jamrial@gmail.com>
2017-10-30ffmpeg: Fix stored encoder metadata with -bitexactMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-10-29ffmpeg: remove usage of deprecated getter functionsJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2017-10-29ffprobe: remove usage of deprecated getter functionsJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2017-10-29avformat: remove use of deprecated AVFMT_FLAG_KEEP_SIDE_DATA flagJames Almer
It has no effect whatsoever since the major bump. Replace the flag's documentation to reflect this as well. Signed-off-by: James Almer <jamrial@gmail.com>
2017-10-27lavf: Remove AVFMT_RAWPICTURE.Carl Eugen Hoyos
Deprecated since October 2015.
2017-10-25ffserver: Fix off by 1 error in pathMichael Niedermayer
Code suggested by ubitux Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-10-23Merge commit 'b3739599bda740ac12d3dde31a331b744df99123'James Almer
* commit 'b3739599bda740ac12d3dde31a331b744df99123': lavc: Drop deprecated emu edge functionality Merged-by: James Almer <jamrial@gmail.com>
2017-10-23ffmpeg: add -bitexact flag to simplify enabling bitexact mode in (de)muxer ↵Michael Niedermayer
and (de/en)coder Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-10-23lavc: drop VDAClément Bœsch
Deprecated (aka removed) in OSX 10.11, and we have a replacement for it (VideoToolbox).
2017-10-22ffserver: remove usage of deprecated rc_eq optionJames Almer
The private codec option will be used instead when available.
2017-10-18ffmpeg: always init output stream before reaping filtersMarton Balint
Otherwise the frame size of the codec is not set in the buffersink. Fixes ticket #6603 and the following simpler case: ffmpeg -c aac -filter_complex "sine=d=0.1,asetnsamples=1025" out.aac Signed-off-by: Marton Balint <cus@passwd.hu>
2017-10-17ffmpeg: remove hwaccel_lax_profile_check optionJun Zhao
This has been unused for a long time, and the original purpose has been replaced by the per-stream hwaccel_flags. Signed-off-by: Jun Zhao <jun.zhao@intel.com> Signed-off-by: Mark Thompson <sw@jkqxz.net>
2017-10-12ffmpeg.c: Fallback to duration_dts, when duration_pts can't be determined.Sasi Inguva
This is required for FLV files, for which duration_pts comes out to be zero. Signed-off-by: Sasi Inguva <isasi@google.com> Reviewed-by: Thomas Mundt <tmundt75@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2017-10-08ffmpeg: always use single threaded decoding for attached picturesMarton Balint
Since af1761f7b5b1b72197dc40934953b775c2d951cc ffmpeg waits for a frame in each stream before writing the output header. If we are using threaded decoding for attached pictures, we have to read till EOF to be able to finally flush the decoder and output the decoded frame. This essentially makes ffmpeg buffer all non-attached picture packets, which will cause a "Too many packets buffered for output stream" eventually. By forcing single threaded decoding, we get a frame from a single packet as well and we can avoid the error. Fixes part of ticket #6375: ffmpeg -i 46564100.mp3 -acodec libmp3lame -ab 128k -ac 2 out.mp3 Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: Marton Balint <cus@passwd.hu>
2017-10-03build: fix compilation of tools with OpenCL enabledJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2017-10-02Merge commit 'c95169f0ec68bdeeabc5fde8aa4076f406242524'James Almer
* commit 'c95169f0ec68bdeeabc5fde8aa4076f406242524': build: Move cli tool sources to a separate subdirectory Merged-by: James Almer <jamrial@gmail.com>