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
2013-08-06Merge commit '3799376dd3373ee255651ed542c75b15665801a8'Michael Niedermayer
* commit '3799376dd3373ee255651ed542c75b15665801a8': lavfi/fifo: fix flushing when using request_samples Conflicts: libavfilter/fifo.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-05lavfi/fifo: fix flushing when using request_samplesAnton Khirnov
If any samples are still buffered when request_frame returns EOF, they won't be returned currently.
2013-08-05Merge commit '77cc958f60f73963be4281d6e82ef81707e40c26'Michael Niedermayer
* commit '77cc958f60f73963be4281d6e82ef81707e40c26': lavfi: add const to the AVFilter parameter of avfilter_graph_create_filter() Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-04lavfi: add const to the AVFilter parameter of avfilter_graph_create_filter()Anton Khirnov
This function should never modify the filter.
2013-08-04vf_scale: add force_original_aspect_ratioTimothy Gu
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-04avfilter/graphparser: remove 256 char limit from create_filter()Michael Niedermayer
Fixes Ticket2803 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-03avfilter: fix plane validity checksMichael Niedermayer
Fixes out of array accesses Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-03Merge commit '7950e519bb094897f957b9a9531cc60ba46cbc91'Michael Niedermayer
* commit '7950e519bb094897f957b9a9531cc60ba46cbc91': Disable deprecation warnings for cases where a replacement is available Conflicts: libavcodec/avpacket.c libavcodec/pthread.c libavcodec/utils.c libavdevice/v4l2.c libavfilter/avfiltergraph.c libavfilter/buffersrc.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-03Merge commit 'b5a138652ff8a5b987d3e1191e67fd9f6575527e'Michael Niedermayer
* commit 'b5a138652ff8a5b987d3e1191e67fd9f6575527e': Give less generic names to global library option arrays Conflicts: libavcodec/options_table.h libavfilter/avfilter.c libavformat/options_table.h libswscale/options.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-02Disable deprecation warnings for cases where a replacement is availableDiego Biurrun
2013-08-02Give less generic names to global library option arraysDiego Biurrun
2013-08-01Merge commit '45dd1ae1b3c18331f3db2293a9135bc5851e553f'Michael Niedermayer
* commit '45dd1ae1b3c18331f3db2293a9135bc5851e553f': avfilter: Add some missing FF_API_AVFILTERBUFFER ifdefs Conflicts: libavfilter/buffer.c libavfilter/internal.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-31avfilter: Add some missing FF_API_AVFILTERBUFFER ifdefsDiego Biurrun
2013-07-31avfilter/af_compand: %f is for printing doublesMichael Niedermayer
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-30Merge commit '0e8c6f221a8ddb7dfb3c9e9bd0b33cb12e9391b8'Michael Niedermayer
* commit '0e8c6f221a8ddb7dfb3c9e9bd0b33cb12e9391b8': avisynth: Fix a "AVISynth" vs. "AviSynth" struct name typo Conflicts: doc/general.texi libavformat/avisynth.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-29lavfi: add compand filterPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-07-29avisynth: Fix a "AVISynth" vs. "AviSynth" struct name typoDiego Biurrun
Also fix some similar typos in comments and documentation.
2013-07-28Merge commit 'bf4b0ed1d5d323050a87c9f0ad1dd40860eb3da2'Michael Niedermayer
* commit 'bf4b0ed1d5d323050a87c9f0ad1dd40860eb3da2': Add missing deprecation attributes Conflicts: libavfilter/avfilter.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-28Merge commit '966689442ed843019dc0722a49bfb0ac51755d19'Michael Niedermayer
* commit '966689442ed843019dc0722a49bfb0ac51755d19': buffersink: K&R formatting cosmetics Conflicts: libavfilter/buffersink.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-27Add missing deprecation attributesDiego Biurrun
2013-07-27buffersink: K&R formatting cosmeticsDiego Biurrun
2013-07-27avfilter/vf_scale: set in_color_matrix default to "auto"Michael Niedermayer
2013-07-27avfilter/vf_scale: use sws_getCoefficients()Michael Niedermayer
Found-by: wm4 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-26lavfi/frei0r: use AV_OPT_TYPE_IMAGE_SIZEPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-07-26lavfi: add attribute_align_arg to all public entry pointsHendrik Leppkes
Previously it was partly only added to central functions called internally, however if GCC would inline these into the public fuction, the alignment attribute would not take effect. Instead, add it to all public entry points to avoid these problems. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-07-26lavfi/frei0r: use AV_OPT_TYPE_VIDEO_RATEPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-07-26lavfi/gradfun: remove nv21/nv12 as they are not supportedPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-07-26lavfi: add attribute_align_arg to all public entry pointsHendrik Leppkes
Previously it was partly only added to central functions called internally, however if GCC would inline these into the public fuction, the alignment attribute would not take effect. Instead, add it to all public entry points to avoid these problems. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-26lavfi/buffersrc: remove unused item from BufferSourceContextPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-07-25avfilter/can_merge_formats: fix memleakMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-25avfilter/avfiltergraph: fix check using the wrong variablesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-25avfilter/vf_scale: use the inputs color range when its set and its not ↵Michael Niedermayer
overridden Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-24vf_scale: add input h/v_chr_pos parametersMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-24vf_scale: add output h/v_chr_pos parameterssMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-23avfilter/avfiltergraph: minor cosmeticMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-23avfilter: Dont partially merge listsMichael Niedermayer
This prevents the unneeded insertion of multiple aresample filters in some cases The format merging is moved to avoid having to call the channel layout merge twice. The channel layout merge code uses different structures and is not compatible with the added dry run wrappers. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-22avfilter/REDUCE_FORMATS: fix bug that ended reducing too earlyMichael Niedermayer
Prior to this it was possible that format reduction was ended before it fully propagated leading to failure later in picking formats. No testcase with unmodified source exists, the case was reproduced with less aggressive list merging though. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-21vfilter/vf_scale: avoid using "{}"Michael Niedermayer
Should fix compile issues with MSVC Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-21avfilter/vf_scale; fix indentMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-21avfilter/vf_scale: add in/out color range optionMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-21avfilter/vf_scale: Add in/out yuv color matrix optionMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-20Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: lavfi: filtfmts: use newer avfilter APIs Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-20avfilter/vf_separatefields: fix ;;Michael Niedermayer
Found-by: llogan Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-20avfilter: fix preprocessor conditionwm4
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-19avfilter/vf_yadif:remove unneeded include assert.hMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-19lavfi: filtfmts: use newer avfilter APIsVittorio Giovara
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-07-18lavf/concat: Never fail for sample aspect ratio 0:1.Carl Eugen Hoyos
Fixes ticket #2456. Reviewed-by: Nicolas George
2013-07-18lut3d: Fix reading 3dl files with leading comments.Carl Eugen Hoyos
Fixes ticket #2787.
2013-07-18lavfi/scale: allocate interlaced scalers only if needed.Nicolas George
Fix "Value 0.000000 for parameter 'srch' out of range" error message when source or destination height is 1. Note: since the av_opt_set_int() calls are not checked for failure and the interlaced scalers are not actually used, this error has no consequence apart from a frightening message in the log.
2013-07-18Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: Consistently use "cpu_flags" as variable/parameter name for CPU flags Conflicts: libavcodec/x86/dsputil_init.c libavcodec/x86/h264dsp_init.c libavcodec/x86/hpeldsp_init.c libavcodec/x86/motion_est.c libavcodec/x86/mpegvideo.c libavcodec/x86/proresdsp_init.c Merged-by: Michael Niedermayer <michaelni@gmx.at>