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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-06-20lavc: add little-endian ADPCM_THP decoderRodger Combs
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20fate: add avfilter/formats-testMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20avfilter/formats: Add test for ff_parse_channel_layout()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20avcodec/jpeg2000dec: Replace TPsot check by assertMichael Niedermayer
The condition is impossible now. the TPsot type is changed to unsigned int to prevent gcc from producing warnings Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20avcodec/jpeg2000dec: Increase tile part limit to 256Michael Niedermayer
This is the maximum that the syntax of jpeg2000 is capable to store Fixes Ticket4639 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20libvpx: Do not set vp8 only parameters when encoding in vp9Luca Barbato
2015-06-20af_resample: Set the number of samples in the last frameLuca Barbato
Otherwise trailing zeroes would appear. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2015-06-20mp3: enable packed main_data decoding in MP4nu774
14496-3 suggests packing main_data of MP3 that is usually scattered into multiple frames due to bit reservoir. However, after packing main_data into a access unit, bitrate index in the MPEG audio frame header doesn't match with actual frame size. In order to accept this, this patch removes unnecessary frame size checking on mp3 decoder. Also, mov demuxer was changed to use MP3 parser only on special cases (QT MOV with specific sample description) to avoid re-packetizing. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2015-06-20avutil/fixed_dsp: remove ff_ prefix from static functionJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2015-06-20avcodec/jpeg2000dwt: Fill array using 2d instead of 1d accessesMichael Niedermayer
Avoids gcc warning Found-by: jamrial Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20avcodec/jpeg2000dwt: Factor dwt test code out so it can be easily used with ↵Michael Niedermayer
the other dwts too Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20avcodec/jpeg2000dwt: Fix special cases in sd_1d53()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20tests/fate: Add fate-j2k-dwtMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20avcodec/jpeg2000dwt: add test for the 5/3 waveletMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-20avcodec/jpeg2000dwt: Fix order of operations in integer decomposition waveletsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avcodec/j2kenc: Use JP2 format by defaultMichael Niedermayer
Without the JP2 fields its not possible to identify the colorspace Fixes Ticket538 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avcodec/j2kenc: Support writing JP2 encapsulationMichael Niedermayer
The added option matches openjpeg Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avcodec/dpxenc: implement write16/32 as functionsMichael Niedermayer
Fixes undefined behavior and segfault Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avutil/avstring: Do not print NULLMichael Niedermayer
Fixes segfault Fixes Ticket4452 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for hpel functionsShivraj Patil
This patch adds MSA (MIPS-SIMD-Arch) optimizations for hpel functions in new file hpeldsp_msa.c Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avcodec/fic: Add skip_cursor AVOptionMichael Niedermayer
Previous version reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19library.mak: Workaround SDL redefining main and breaking fate tests on mingwJames Almer
Fixes Ticket3368 Commit message by commiter Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avcodec/j2kenc: YUV should not use the ICTMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avutil/crc: Fix type of p table so its content fits without overflwoingMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avutil/avstring: Fix undefined shiftMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avutil/aes: Fix typesMichael Niedermayer
Fixes "warning: argument #2 is incompatible with prototype:" Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avutil/adler32: Fix data type in test codeMichael Niedermayer
Fixes "warning: argument #2 is incompatible with prototype:" Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19avcodec/fft-test: fix type of cpuflagsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-19postproc: fix unaligned accessAndreas Cadhalpun
QP_store is only 8-bit-aligned, so accessing it as uint32_t causes SIGBUS crashes on sparc. The AV_RN32/AV_WN32 macros only do unaligned access in the HAVE_FAST_UNALIGNED case. Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2015-06-19vp9: don't retain NULL as segmentation_mapAndreas Cadhalpun
This fixes segmentation faults, which were introduced in commit 4ba8f327. Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2015-06-18avformat: clarify what package needs to be compiled with SSL supportwm4
Try to reduce user confusion. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18id3v2: strip trailing spaces from APIC tagwm4
The APIC description must be unique, and some ID3v2 tag writers add spaces to write several APIC entries with the same description. The trailing spaces simply serve as a way to disambiguate the description. Do this so that API users do not have to special-case mp3 to fix this cosmetic issue. Requested-by: wm4 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18avformat/id3v2: detect PNG by header instead of mimeMichael Niedermayer
the mimetype for PNG can be set to jpeg Fixes 01\ -\ Cider\ Time.mp3 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18avcodec/hevc_ps: Only discard overread VPS if a previous is availableMichael Niedermayer
Fixes Ticket4621 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18avcodec/libx264: Avoid reconfig on equivalent aspect ratiosMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for qpel functionsShivraj Patil
This patch adds MSA (MIPS-SIMD-Arch) optimizations for qpel functions in new file qpeldsp_msa.c Adds new generic macros (needed for this patch) in libavutil/mips/generic_macros_msa.h Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18ffmpeg: Free last_frame instead of just unrefMichael Niedermayer
Fixes Ticket4611 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18avcodec/jpeg2000dec: Continue decoding reslevels even when empty ones are ↵Michael Niedermayer
encountered Fixes Ticket4635 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-18avcodec/ffv1enc: fix bps for >8bit yuv when not explicitly setMichael Niedermayer
Fixes Ticket4636 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17avcodec/flacenc: Regression test for ticket #4628George Boyle
Corresponding commit: 2469ed32c81ebf2347e6883091c566724b286167 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17Merge commit '1e79d5c6e73ad131f9395f337b58a2b59ee04c1b'Michael Niedermayer
* commit '1e79d5c6e73ad131f9395f337b58a2b59ee04c1b': libwebpenc: use WebPMemoryWriterClear() See: 7997d78643797d6d26babc4eabbda71049457169 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17Merge commit 'd8d124eebcf2ec1f6a1936b12a4f00a48f08e85c'Michael Niedermayer
* commit 'd8d124eebcf2ec1f6a1936b12a4f00a48f08e85c': aic: Improve error reporting Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17avcodec/j2kenc: Properly flush the end of the truncated AC streamMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17avcodec/mqcenc: Add ff_mqc_flush_to()Michael Niedermayer
This is needed to separate the end padding from the bitstream, allowing to end it multiple times without disturbing it. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17avcodec/jpeg2000dec: Drop unneeded rlevel variableMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17avcodec/jpeg2000dwt: Support 9/7 singularity cases on the encoder sideMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17libwebpenc: use WebPMemoryWriterClear()James Almer
WebPMemoryWriterClear() must be used instead of free() when libwebp ABI version is > 0x0203. Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2015-06-17avcodec/jpeg2000dwt: More special cases to handle singularities in 9/7 decodeMichael Niedermayer
Fixes Ticket4634 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-17aic: Improve error reportingVittorio Giovara
2015-06-17avcodec/mips: MSA (MIPS-SIMD-Arch) optimizations for H263 lpf functionsShivraj Patil
This patch adds MSA (MIPS-SIMD-Arch) optimizations for H263 lpf functions in new file h263dsp_msa.c Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>