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
2013-10-26avformat/http: dont fail with unknown Content-EncodingsMichael Niedermayer
Fixes: http://m1.file.xiami.com/282/23282/343749/1769075752_709488_l.mp3 Based-on-patch-by: Crossle Song <sxm@yixia.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26avcodec/h264_parser: heuristically detect non marked keyframesMichael Niedermayer
Fixes Ticket3083 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26avcodec/x86/cabac: include get_cabac_bypass_sign_x86() under #if ↵Michael Niedermayer
!BROKEN_COMPILER this might fix Ticket2999 as well as some fate clients untested as the original patch submitter no longer has the environment to test this should be reverted if it does not fix the issues Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26configure: link with built libs when pc-uninstalled is usedLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26Merge remote-tracking branch 'cus/stable'Michael Niedermayer
* cus/stable: ffplay: add support for libswresample options ffplay: use av_frame_get_pkt_pos instead directly accessing pkt pos ffplay: factor out picture freeing code ffplay: update and extend documentation for channel and stream switching Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26ffplay: add support for libswresample optionsMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-10-26ffplay: use av_frame_get_pkt_pos instead directly accessing pkt posMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-10-26ffplay: factor out picture freeing codeMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-10-26ffplay: update and extend documentation for channel and stream switchingMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-10-26avformat/md5enc: add format, version and column headersMichael Niedermayer
See Ticket2280 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26doc/issue_tracker: add 2 missing issue typesMichael Niedermayer
Reviewed-by: Lou Logan <lou@lrcd.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26Merge remote-tracking branch 'lukaszmluki/master'Michael Niedermayer
* lukaszmluki/master: lavd/pulse_audio_enc: avoid vars in for() lavd/pulse_audio_enc: add another default to stream name Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: fate: aac: Add test for AAC-ELD Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26Merge commit 'adea4512c6087280702e2423de55cea050e20a98'Michael Niedermayer
* commit 'adea4512c6087280702e2423de55cea050e20a98': aacdec: Fix calls to avpriv_report_missing_feature(). See: 435a730e2190c9b005117eaad57f7559cd82581c See: 72cf47b241c7972cce313e1f474bdb8f3684fa15 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26Merge commit '4d6ee0725553a43ba88d6f8327ebcf8f1c5ae8d4'Michael Niedermayer
* commit '4d6ee0725553a43ba88d6f8327ebcf8f1c5ae8d4': libavutil: x86: Add AVX2 capable CPU detection. Conflicts: libavutil/cpu.c libavutil/cpu.h libavutil/x86/cpu.c See: 865b70bc5d1cf37ec6d6cb729a69dda2cca28bd5 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26Add AVX2 capable CPU detection. Patch based on x264's AVX2 detectionKieran Kunhya
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26avcodec/jpeg2000dec: non zero image offsets are not supportedMichael Niedermayer
Fixes out of array accesses Fixes Ticket3080 Found-by: ami_stuff Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26lavd/pulse_audio_enc: avoid vars in for()Lukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
2013-10-26lavd/pulse_audio_enc: add another default to stream nameLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
2013-10-26h264: make flush_change() set mmco_resetMichael Niedermayer
This ensures that frames do not get mixed on context reinits Fixes Ticket2836 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-26avformat/rtpproto: when local rtp port and local rtcp port are not ↵lemonlinger@gmail.com
specified, try to make two successive ports and retry 3 times when failed some video players on Android will not send udp hole punching messages if the rtcp port and rtp port are not two successive integers. So, if the video player is behind NAT, it could not receive and rtp messages via udp Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25fate: aac: Add test for AAC-ELDAlex Converse
2013-10-25aacdec: Fix calls to avpriv_report_missing_feature().Alex Converse
It does not take log level as an argument.
2013-10-25libavutil: x86: Add AVX2 capable CPU detection.Kieran Kunhya
Patch based on x264's AVX2 detection Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-10-25avcodec/h264: reduce noisiness of "mmco: unref short failure"Michael Niedermayer
Do not consider it an error if we have no frames and should discard one. This condition can easily happen when decoding is started from an I frame Fixes Ticket2811 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25avformat/mp3dec: perform seek resync in the correct directionMichael Niedermayer
Fixes seeking to the last frame in CBR files Fixes Ticket2773 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25avformat/rmdec: english typosMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25avcodec/twinvq: return the actual number of consumed bytesMichael Niedermayer
Fixes Ticket2980 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25metasound & twinvqdec: return the number of read bytes from read_bitstreamMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25configure: abort if threading without atomics is usedMichael Niedermayer
also provide a list of workarounds to the user Fixes Ticket2363 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25doc: add a few links to the Channel Layout syntax sectionStefano Sabatini
2013-10-25doc/utils: document channel layout specificationStefano Sabatini
2013-10-25Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: fft-test: Remove possibility of returning restricted exit code dct-test: Remove possibility of returning a restricted exit code base64-test: Remove posibility of returning restricted exit codes tree-test: Don't return restricted exit codes Conflicts: libavutil/base64.c See: b2fdf3fc35b6dca8ac7f6d46bd73ea5eb1339193 See: f80ca1cb002c53927fa3edaff5082bfba24d6193 See: cbbd0ac764b43df081898a2c3548a2fee1faca53 See: 5dfdffeb6fe9c43a496a4c1949cf9162474c7418 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25avformat/wavdec: Fix smv packet interleavingMichael Niedermayer
This strips the relative timestamp "flag" off. Fixes Ticket2849 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25fft-test: Remove possibility of returning restricted exit codeDerek Buitenhuis
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-10-25dct-test: Remove possibility of returning a restricted exit codeDerek Buitenhuis
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-10-25base64-test: Remove posibility of returning restricted exit codesDerek Buitenhuis
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
2013-10-25doc/issue_tracker: remove more mentions of patchesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25doc/issue_tracker: update resolution namesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25doc/issue_tracker: remove patches as we dont use trac to handle patchesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25doc/issue_tracker: theres no substatus in tracMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25MAINTAINERS: updatePaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-10-25ffmpeg: make stream default if its the only of its kind and no source can be ↵Michael Niedermayer
unambigously assigned to it Fixes Ticket2969 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25avcodec/wmalosslessdec: fix data flushing at the endMichael Niedermayer
Fixes ffplay -autoexit Fixes Ticket3000 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25avcodec/h264: do not trust last_pic_droppable when marking pictures as doneMichael Niedermayer
This simplifies the code and fixes a deadlock Fixes Ticket2927 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-25ffmpeg_filter: Pass command line -threads X to filtergraphMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-24lavd/fbdev_common: fix compilation with older kernelsIngo Brückl
This will avoid errors due to conflicting declarations with linux kernels prior to 2.6.30. Reviewed-by: Lukasz M <lukasz.m.luki@gmail.com> Signed-off-by: Ingo Brückl <ib@wupperonline.de>
2013-10-24doc/Makefile: fix man pages uninstall pathStefano Sabatini
Fix trac ticket #3054.
2013-10-24doc/protocols: add description for the RTP protocolburek
With some edits by Stefano. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-10-24avcodec/flicvideo: use avpriv_request_sample()Paul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>