summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* avcodec/x86/mpegvideoenc: silence -Wunused-function on --disable-mmxGanesh Ajjanagadde2015-09-19
| | | | | | | | 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>
* avcodec/x86/hpeldsp_init: silence -Wunused-function on --disable-mmxGanesh Ajjanagadde2015-09-19
| | | | | | | | 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>
* doc/filters: fix typo in eq contrast optionLou Logan2015-09-19
| | | | | | Fixes ticket #4866. Signed-off-by: Lou Logan <lou@lrcd.com>
* cmdutils: Filter dst/srcw/hMichael Niedermayer2015-09-19
| | | | | | | | | | 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>
* avformat/flvdec: Detect broken sizes (OBS 0.655b), disable resync for ↵Michael Niedermayer2015-09-19
| | | | | | | affected files Fixes Ticket4867 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/imgconvert: Support non-planar colorspaces while paddingPrzemysław Sobala2015-09-19
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* x86/vp9dsp: add missing preprocessor guardsJames Almer2015-09-19
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* lpc: correctly apply windowing to the samples in the float-only lpcRostislav Pehlivanov2015-09-19
| | | | | | | Also change the window to Hamming (using coefficient which make it a Hanning). Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
* avcodec/dcadec: fix a -Wsometimes-unitialized on clangGanesh Ajjanagadde2015-09-19
| | | | | | | | 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>
* avcodec/g723_1: fix a undefined left shift of negative numberGanesh Ajjanagadde2015-09-19
| | | | | | | | 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>
* avcodec/internal: silence -Wempty-body on clangGanesh Ajjanagadde2015-09-19
| | | | | | | | 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>
* avcodec/indeo3data: fix undefined left shift of negative numberGanesh Ajjanagadde2015-09-19
| | | | | | | | | 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>
* AAC encoder: fix make checkheadersClaudio Freire2015-09-18
| | | | | | | 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.
* avdevice/xcbgrab: fix -Wunused-variableGanesh Ajjanagadde2015-09-19
| | | | | | | | | 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>
* ffserver: remove useless assignment leftoverReynaldo H. Verdejo Pinochet2015-09-18
| | | | Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
* ffserver: break early on _parse_acl_row()Reynaldo H. Verdejo Pinochet2015-09-18
| | | | Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
* ffserver: explicitly free() duped filenameReynaldo H. Verdejo Pinochet2015-09-18
| | | | Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
* ffserver: start dropping all unneededly harcoded str lengthsReynaldo H. Verdejo Pinochet2015-09-18
| | | | Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
* libswscale/swscale: fix -Wunused-functionGanesh Ajjanagadde2015-09-18
| | | | | | | | 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>
* all: do standards compliant absdiff computationGanesh Ajjanagadde2015-09-18
| | | | | | | | 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>
* x86/vp9mc: add missing preprocessor guardsJames Almer2015-09-18
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter/avf_showcqt: use frequency domain windowingMuhammad Faiz2015-09-18
| | | | | | | | faster initialization and less code slightly different result computationally from previous coeffclamp option is ignored Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avutil/attributes: add AV_GCC_VERSION_AT_MOSTJames Almer2015-09-18
| | | | | Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
* x86/vp9: add avx2 subpel MC SIMD for 10/12bppJames Almer2015-09-18
| | | | | Reviewed-by: Ronald S. Bultje <rsbultje@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter/vf_colorkey: Improve filter descriptionTimo Rothenpieler2015-09-18
| | | | Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
* Changelog: add forgotten entryPaul B Mahol2015-09-17
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/dcaenc: fix lfe fir coefficientsPaul B Mahol2015-09-17
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/mpeg12enc: Basic support for encoding non even QPs for ↵Michael Niedermayer2015-09-18
| | | | | | -non_linear_quant 1 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/mpeg12dec: Move non_linear_qscale to mpegvideodataMichael Niedermayer2015-09-18
| | | | | | This will be used in the next commit Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/mpegvideo: Change mpeg2 unquant to work with higher precission qscaleMichael Niedermayer2015-09-18
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/mpegvideo_enc: Add missing entry to non_linear_qscale tableMichael Niedermayer2015-09-18
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* avcodec/dcaenc: unbreak >4 channel supportPaul B Mahol2015-09-17
| | | | | | LFE channel is still broken, search for FIXME. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* checkasm: add flacdsp decorrelate testsJames Almer2015-09-17
| | | | | Reviewed-by: Henrik Gramner <henrik@gramner.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avutil/log: fix zero length gnu_printf format string warningGanesh Ajjanagadde2015-09-17
| | | | | | | | | 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>
* lavf/utils: remove some left-over cruft from the 32-bit size fieldsHendrik Leppkes2015-09-17
|
* lavc/lavf: remove incompatible abi checks for the new 64bit fieldsJames Almer2015-09-17
| | | | | Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
* doc/filters: showfreqs: fix typoPaul B Mahol2015-09-17
| | | | | | Fixes #4863 Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/mips/aaccoder_mips: Remove duplicate includeMichael Niedermayer2015-09-17
| | | | Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* doc/filters: stereotools: fix mistakePaul B Mahol2015-09-17
| | | | | Reported-by: RiCON Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/af_sidechaincompress: do not use floatsPaul B Mahol2015-09-17
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avfilter/vf_atadenoise: fix file permissionsPaul B Mahol2015-09-17
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* Merge commit '7bb1c1bfd22de2200743af04ebd0c7c775f56f7e'Hendrik Leppkes2015-09-17
|\ | | | | | | | | | | | | * commit '7bb1c1bfd22de2200743af04ebd0c7c775f56f7e': avconv_opt: Allow printing private options Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * avconv_opt: Allow printing private optionsVittorio Giovara2015-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Add an allowed parameter to -h and --help avconv option to print private options from a codec, format, or filter, named with the provided input value. In case multiple classes are found (eg. mov demuxer and mov muxer, or h264 decoder and h264 demuxer) print all options from all classes. It is possible to select the type of class to print by adding it before the name (eg. demuxer:mov and muxer:mov, or decoder:h264and demuxer:h264). Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
* | Merge commit 'e3d4784eb31b3ea4a97f2d4c698a75fab9bf3d86'Hendrik Leppkes2015-09-17
|\| | | | | | | | | | | | | * commit 'e3d4784eb31b3ea4a97f2d4c698a75fab9bf3d86': d3d11va: WindowsPhone requires a mutex around ID3D11VideoContext Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * d3d11va: WindowsPhone requires a mutex around ID3D11VideoContextSteve Lhomme2015-09-17
| |
* | avfilter/af_sidechaincompress: use doubles instead of floatsPaul B Mahol2015-09-17
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | avfilter: add stereo tools filterPaul B Mahol2015-09-17
| | | | | | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* | Merge commit '781a25e9c419dd66063597cc5d70e8919de60561'Hendrik Leppkes2015-09-17
|\| | | | | | | | | | | | | * commit '781a25e9c419dd66063597cc5d70e8919de60561': checkasm: v210: Fix array overwrite Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
| * checkasm: v210: Fix array overwriteHenrik Gramner2015-09-17
| |
* | Merge commit '4a664224502b42e3b28949d905a8de7769892184'Hendrik Leppkes2015-09-17
|\| | | | | | | | | | | | | * commit '4a664224502b42e3b28949d905a8de7769892184': pixfmt: Add new SMPTE color primaries and transfer characteristic values Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>