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-09-20avresample/resample: remove unused variableGanesh Ajjanagadde
This fixes a -Wunused-variable, see e.g http://fate.ffmpeg.org/log.cgi?time=20150919162338&log=compile&slot=x86_64-archlinux-gcc-threads. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-20avcodec/x86/mpegvideoenc: silence -Wunused-function on --disable-mmxGanesh Ajjanagadde
This silences -Wunused-function when compiled with --disable-mmx, e.g http://fate.ffmpeg.org/log.cgi?time=20150919094617&log=compile&slot=x86_64-archlinux-gcc-disable-mmx. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-20avcodec/x86/hpeldsp_init: silence -Wunused-function on --disable-mmxGanesh Ajjanagadde
This silences some of the -Wunused-function warnings when compiled with --disable-mmx, e.g http://fate.ffmpeg.org/log.cgi?time=20150919094617&log=compile&slot=x86_64-archlinux-gcc-disable-mmx. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19doc/filters: fix typo in eq contrast optionLou Logan
Fixes ticket #4866. Signed-off-by: Lou Logan <lou@lrcd.com>
2015-09-19cmdutils: Filter dst/srcw/hMichael Niedermayer
Dimensions / pixel formats for scaling must be set through the -s / pix_fmt options or the scale / format filters. Otherwise there are mismatches between whet is in/output to the scaler and for what the scaler is configured Fixes Ticket4856 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19avformat/flvdec: Detect broken sizes (OBS 0.655b), disable resync for ↵Michael Niedermayer
affected files Fixes Ticket4867 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19avcodec/imgconvert: Support non-planar colorspaces while paddingPrzemysław Sobala
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19x86/vp9dsp: add missing preprocessor guardsJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2015-09-19lpc: correctly apply windowing to the samples in the float-only lpcRostislav Pehlivanov
Also change the window to Hamming (using coefficient which make it a Hanning). Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
2015-09-19avcodec/dcadec: fix a -Wsometimes-unitialized on clangGanesh Ajjanagadde
This fixes a genuine -Wsometimes-unitialized reported on clang, e.g http://fate.ffmpeg.org/log.cgi?time=20150918181527&log=compile&slot=x86_64-darwin-clang-polly-vectorize-stripmine-3.7. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19avcodec/g723_1: fix a undefined left shift of negative numberGanesh Ajjanagadde
This fixes a -Wshift-negative-value reported with clang 3.7+, e.g http://fate.ffmpeg.org/log.cgi?time=20150918181527&log=compile&slot=x86_64-darwin-clang-polly-vectorize-stripmine-3.7. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19avcodec/internal: silence -Wempty-body on clangGanesh Ajjanagadde
This silences a -Wempty-body warning on clang 3.7+, e.g http://fate.ffmpeg.org/log.cgi?time=20150918181527&log=compile&slot=x86_64-darwin-clang-polly-vectorize-stripmine-3.7. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19avcodec/indeo3data: fix undefined left shift of negative numberGanesh Ajjanagadde
This fixes a whole sea of -Wshift-negative-value reported with clang 3.7+, e.g http://fate.ffmpeg.org/log.cgi?time=20150918181527&log=compile&slot=x86_64-darwin-clang-polly-vectorize-stripmine-3.7. Any half decent compiler should anyway optimize away the multiplication. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
2015-09-19AAC encoder: fix make checkheadersClaudio Freire
With the move of some functions into templates in aaccoder_twoloop.h and aaccoder_trellis.h, make checkheaders started failing. Add them to SKIPHEADERS as should be.
2015-09-19avdevice/xcbgrab: fix -Wunused-variableGanesh Ajjanagadde
This patch fixes a -Wunused-variable reported in e.g http://fate.ffmpeg.org/log.cgi?time=20150918194649&log=compile&slot=x86_64-debian-asan-144800. av_unused is used as opposed to a header guard for readability. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-19ffserver: remove useless assignment leftoverReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-19ffserver: break early on _parse_acl_row()Reynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-19ffserver: explicitly free() duped filenameReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-19ffserver: start dropping all unneededly harcoded str lengthsReynaldo H. Verdejo Pinochet
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
2015-09-19libswscale/swscale: fix -Wunused-functionGanesh Ajjanagadde
hyscale, hcscale are only used in old filter code, hence place header guard to silence -Wunused-function. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-18all: do standards compliant absdiff computationGanesh Ajjanagadde
This resolves implementation defined behavior, and also silences -Wabsolute-value in clang 3.5+. Moreover, the generated asm is identical to before modulo nop padding. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-18x86/vp9mc: add missing preprocessor guardsJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2015-09-18avfilter/avf_showcqt: use frequency domain windowingMuhammad Faiz
faster initialization and less code slightly different result computationally from previous coeffclamp option is ignored Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-18avutil/attributes: add AV_GCC_VERSION_AT_MOSTJames Almer
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2015-09-18x86/vp9: add avx2 subpel MC SIMD for 10/12bppJames Almer
Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
2015-09-18avfilter/vf_colorkey: Improve filter descriptionTimo Rothenpieler
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
2015-09-18Changelog: add forgotten entryPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-18avcodec/dcaenc: fix lfe fir coefficientsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-18avcodec/mpeg12enc: Basic support for encoding non even QPs for ↵Michael Niedermayer
-non_linear_quant 1 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-18avcodec/mpeg12dec: Move non_linear_qscale to mpegvideodataMichael Niedermayer
This will be used in the next commit Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-18avcodec/mpegvideo: Change mpeg2 unquant to work with higher precission qscaleMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-18avcodec/mpegvideo_enc: Add missing entry to non_linear_qscale tableMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-17avcodec/dcaenc: unbreak >4 channel supportPaul B Mahol
LFE channel is still broken, search for FIXME. Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17checkasm: add flacdsp decorrelate testsJames Almer
Reviewed-by: Henrik Gramner <henrik@gramner.com> Signed-off-by: James Almer <jamrial@gmail.com>
2015-09-17avutil/log: fix zero length gnu_printf format string warningGanesh Ajjanagadde
This should fix warning reported by fate client: http://fate.ffmpeg.org/report.cgi?time=20150917113121&slot=x86_32-linux-gnu-gcc-4.5.1-have_6regs. Untested. Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-17lavf/utils: remove some left-over cruft from the 32-bit size fieldsHendrik Leppkes
2015-09-17lavc/lavf: remove incompatible abi checks for the new 64bit fieldsJames Almer
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2015-09-17doc/filters: showfreqs: fix typoPaul B Mahol
Fixes #4863 Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17avcodec/mips/aaccoder_mips: Remove duplicate includeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
2015-09-17doc/filters: stereotools: fix mistakePaul B Mahol
Reported-by: RiCON Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17avfilter/af_sidechaincompress: do not use floatsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17avfilter/vf_atadenoise: fix file permissionsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17Merge commit '7bb1c1bfd22de2200743af04ebd0c7c775f56f7e'Hendrik Leppkes
* commit '7bb1c1bfd22de2200743af04ebd0c7c775f56f7e': avconv_opt: Allow printing private options Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-09-17Merge commit 'e3d4784eb31b3ea4a97f2d4c698a75fab9bf3d86'Hendrik Leppkes
* commit 'e3d4784eb31b3ea4a97f2d4c698a75fab9bf3d86': d3d11va: WindowsPhone requires a mutex around ID3D11VideoContext Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-09-17avfilter/af_sidechaincompress: use doubles instead of floatsPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17avfilter: add stereo tools filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2015-09-17Merge commit '781a25e9c419dd66063597cc5d70e8919de60561'Hendrik Leppkes
* commit '781a25e9c419dd66063597cc5d70e8919de60561': checkasm: v210: Fix array overwrite Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-09-17Merge commit '4a664224502b42e3b28949d905a8de7769892184'Hendrik Leppkes
* commit '4a664224502b42e3b28949d905a8de7769892184': pixfmt: Add new SMPTE color primaries and transfer characteristic values Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-09-17Merge commit '777885983533235ccda5145f96317fc8cd0a18ab'Hendrik Leppkes
* commit '777885983533235ccda5145f96317fc8cd0a18ab': dcadec: set channel layout in a separate function Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-09-17Merge commit '971177f751a6e2931232accceab438bce277bde8'Hendrik Leppkes
* commit '971177f751a6e2931232accceab438bce277bde8': dcadec: scan for extensions in a separate function Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>