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
2015-06-25libavformat: Add H264 API testLudmila Glinskih
Result differs in pkt_duration and time_base.den for some reason. Right now it tests only one example (adjusted to match the output). Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-25avcodec/jpeg2000dec: Limit x/y step to 1<<30Michael Niedermayer
Fixes infinite loop Fixes Ticket4663 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-25avcodec/jpeg2000: Improve right bottom precinct positionsMichael Niedermayer
Fixes Ticket4656 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-25avcodec/jpeg2000dec: Check PPx / PPy valuesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-25ffserver: make statement block unconditional by exiting earlyReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-06-25ffserver: make statement block unconditional by exiting earlyReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-06-25ffserver: unify comment formating & drop unneeded bracesReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-06-25ffserver: factor out stream params printingReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-06-25ffserver: simplify URLContext cleanupReynaldo H. Verdejo Pinochet
Drop unneeded var and avoid checking for NULL twice as ffurl_closep() already does this. Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-06-25libvpxdec: report colorspaceJames Zern
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: James Zern <jzern@google.com>
2015-06-25libvpxdec: report profile for vp9James Zern
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: James Zern <jzern@google.com>
2015-06-24Merge commit '5dbd491eb38efab1d1313d4129ed76ab2e98176d'Michael Niedermayer
* commit '5dbd491eb38efab1d1313d4129ed76ab2e98176d': TextureDSP: fix erroneous condition which produced blocky output for DXT Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24Merge commit '4d55484391112a30d16812597b9ad81605af0c24'Michael Niedermayer
* commit '4d55484391112a30d16812597b9ad81605af0c24': dds: Fix palette mode on big endian Conflicts: libavcodec/dds.c See: 21d2e3d602dc5f173901ba51f6a237b9dfce9e8e Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24Merge commit 'ded5957d75def70d2f1fc1c1eae079230004974b'Michael Niedermayer
* commit 'ded5957d75def70d2f1fc1c1eae079230004974b': segafilm: Remove deplanarization hack Conflicts: libavformat/segafilm.c libavformat/version.h See: 42b8f5fba1f067c55231791039283e41b5167247 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24avcodec: Add codec_desc and remapping for ↵Michael Niedermayer
AV_CODEC_ID_PCM_S16BE_PLANAR_DEPRECATED Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24Merge commit '5a79bf0284a37855636390e620d189a964214c9e'Michael Niedermayer
* commit '5a79bf0284a37855636390e620d189a964214c9e': PCM signed 16-bit big-endian planar decoder Conflicts: doc/general.texi libavcodec/Makefile libavcodec/allcodecs.c libavcodec/avcodec.h libavcodec/pcm.c libavcodec/version.h libavformat/nut.c See: 9ba41ae63e079198ef4a9e83b5fa147e20966bdb Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24brstm: fix use of uninitialized variablesJames Almer
Fixes valgrind complaining about "Conditional jump or move depends on uninitialised value(s)" Signed-off-by: James Almer <jamrial@gmail.com>
2015-06-24avcodec/jpeg2000: change flags array type to 16bitMichael Niedermayer
reduce memory needed for flags Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24vcodec/jpeg2000: Increase cblk size limit to 128Michael Niedermayer
Fixes Ticket4649 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24avcodec/jpeg2000dec: Use 32x32->64bit for 9/7i dequantizationMichael Niedermayer
Like the 5/3 case this is needed to avoid overflows and similarly for 16bpp output pure 32bit operations are insufficient if high quality is wanted Note, this code-path is only used in bitexact mode, so this should not affect the speed of any real use-case Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24avcodec/jpeg2000dec: Add 5/3 de-quantization special case for the lossless caseMichael Niedermayer
This avoids a multiplication and 64bits Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24avcodec/jpeg2000dec: Use 32x32->64bit for 5/3 dequantizationMichael Niedermayer
This fixes overflows, using fewer bits would impact high bit depth quality Fixes Ticket4654 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24avfilter: add ssim filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-06-24TextureDSP: fix erroneous condition which produced blocky output for DXTTom Butterworth
2015-06-24dds: Fix palette mode on big endianLuca Barbato
Found-By: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2015-06-24segafilm: Remove deplanarization hackPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
2015-06-24PCM signed 16-bit big-endian planar decoderPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-06-24lavf: set is_connected flag so url can be properly closedMariusz Szczepańczyk
Reviewed-by: Lukasz Marek <lukasz.m.luki2 at gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24ffmpeg: Do not use the data/size of a bitstream filter after failureMichael Niedermayer
Found-by: Rodger Combs Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24Merge commit '41740ef8be6ec409f7eff3932ddba9a9eeec27b1'Michael Niedermayer
* commit '41740ef8be6ec409f7eff3932ddba9a9eeec27b1': libvpx: fix test for VPX_IMAGE_ABI_VERSION Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24Merge commit 'a88e21f5b78ef5e75b073ecbfd4e92921002a703'Michael Niedermayer
* commit 'a88e21f5b78ef5e75b073ecbfd4e92921002a703': Fix missing symbols when libvpx has only vp8 enabled Not merged, the FFmpeg libvpx-vp8 encoder does not use anything from libvpx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24Merge commit 'c2de2cf0d2927f3f584dab6d54276fbda92a0a71'Michael Niedermayer
* commit 'c2de2cf0d2927f3f584dab6d54276fbda92a0a71': arm64: constify src in h264qpel dsp function definitions See: e16b7338d8777618936ff6ab9133e19f4db9069c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24libvpx: fix test for VPX_IMAGE_ABI_VERSIONJanne Grunau
2015-06-24Fix missing symbols when libvpx has only vp8 enabledMark Webster
Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2015-06-24arm64: constify src in h264qpel dsp function definitionsJanne Grunau
2015-06-24avformat/mp3dec: Remove the ID3v1 tag removial codeMichael Niedermayer
The code is simply broken, the read packets are not aligned to the mp3 frames, the file end or the id3 tag thus this simply cannot reliably find the ID3v1 tag to remove it Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24avcodec/mpegaudio_parser: Discard ID3v1 tag at the endMichael Niedermayer
Ideally this should be discarded by the demuxer but this is not possible without fully parsing which would be then very similar to this. The current ID3v1 discard code in the demuxer does not work and will be removed in a subsequent commit The discard code could be adjusted if needed to also discard tags at other locations than the end or to limit this possibly to input from the mp3 demuxer or even to move the discarding to the decoder. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24lavf/libssh: implement move and delete callbacksMariusz Szczepańczyk
Reviewed-by: Lukasz Marek <lukasz.m.luki2 at gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24lavf/libssh: read empty path from url as /Mariusz Szczepańczyk
Reviewed-by: Lukasz Marek <lukasz.m.luki2 at gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24lavf/libssh: implement directory listing callbacksLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2 at gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-24lavf/libsmbclient: implement move and delete callbacksMariusz Szczepańczyk
Reviewed-by: Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-23lavf/brstm: add FATE tests for BFSTM and BCSTM filesRodger Combs
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-23avcodec/jpeg2000dwt: Replace /2 by >>1Michael Niedermayer
Divisions can be slow if the compiler fails to replace them by shifts Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-23swscale/x86/rgb2rgb_template: fix signedness of v in ↵James Almer
shuffle_bytes_2103_{mmx,mmxext} Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2015-06-23swscale/x86/rgb2rgb_template: don't call emms on sse2/avx functionsJames Almer
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2015-06-23swscale/x86/rgb2rgb_template: add missing xmm clobbersJames Almer
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2015-06-23avcodec/texturedspenc: Add () to protect macro / argument evaluation orderMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-23vaapi_h264: fix RefPicList[] field flags.Gwenole Beauchesne
Use new H264Ref.reference field to track field picture flags. The H264Picture.reference flag in DPB is now irrelevant here. This is a regression from git commit d8151a7, and that affected multiple interlaced video streams. Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
2015-06-23vda: unlock the pixel buffer base address.Sebastien Zwickert
The pixel buffer base address is never unlocked this causes a bug with some pixel format types that are produced natively by the hardware decoder: the first buffer was always used. Unlock the pixel buffer base address fixes the issue.
2015-06-23movtextdec.c: Improve upon dynarrays and text_to_assNiklesh
Signed-off-by: Niklesh <niklesh.lalwani@iitb.ac.in>