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
2011-10-09doc: avoid "@table has text but no @item" warning.Clément Bœsch
2011-10-06Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: Fix 'heigth' vs. 'height' typos. lavc/lavf: use unique private classes. lavc: use designated initializers for av_codec_context_class Conflicts: libavdevice/fbdev.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-05Fix 'heigth' vs. 'height' typos.Diego Biurrun
2011-10-02vf_lut.c: fix wrong syntax in exampleStefano Sabatini
2011-09-29vf_unsharp: set default chroma size value to 5x5Stefano Sabatini
The previous default value 0x0 was not good, since it is not even valid. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-29Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: (23 commits) avconv: Reformat s16 volume adjustment. ARM: NEON optimised vector_fmac_scalar() dca: use vector_fmac_scalar from dsputil dsputil: add vector_fmac_scalar() latmenc: Fix private options vf_unsharp: store hsub/vsub in the filter context vf_unsharp: adopt a more natural order of params in apply_unsharp() vf_unsharp: rename method "unsharpen" to "apply_unsharp" vf_scale: apply the same transform to the aspect during init that is applied per frame vf_pad: fix "vsub" variable value computation vf_scale: add a "sar" variable lavfi: fix realloc size computation in avfilter_add_format() vsrc_color: use internal timebase lavfi: fix signature for avfilter_graph_parse() and avfilter_graph_config() graphparser: prefer void * over AVClass * for log contexts avfiltergraph: use meaningful error codes avconv: Initialize return value for codec copy path. fate: use 'run' helper for seek-test fate: remove seek-mpeg2reuse test Fix memory (re)allocation in matroskadec.c, related to MSVR-11-0080. ... Conflicts: doc/filters.texi libavfilter/avfilter.h libavfilter/avfiltergraph.c libavfilter/avfiltergraph.h libavfilter/graphparser.c libavfilter/vf_scale.c libavfilter/vsrc_color.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-28vf_scale: add a "sar" variableStefano Sabatini
Also create a "dar" alias for the "a" variable, for avoiding possible confusion between dar/sar. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-24vf_drawtext: make x and y options parametricStefano Sabatini
Address trac issue #378.
2011-09-24vf_drawtext: fix missed update in docsStefano Sabatini
2011-09-22vf_drawtext: use @itemize environment for showing examples in docsStefano Sabatini
Beautify.
2011-09-21vf_yadif: correct documentation on the parity parameterStefano Sabatini
0 is top-field-first, 1 is bottom-field-first, not the other way around. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-19vf_yadif: add an option to enable/disable deinterlacing based on src frame ↵Joakim Plate
"interlaced" flag Signed-off-by: Joakim Plate <elupus@ecce.se> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-18doc/filters: fix numer/number typo.Clément Bœsch
2011-09-18asrc_anullsrc: implement a request_frame callback for returning framesStefano Sabatini
This is mainly useful for filters (like the sox synth), which overwrite the content of the passed data.
2011-09-18asrc_anullsrc: extend syntax to make it accept a non positional list of ↵Stefano Sabatini
arguments The new syntax is more extensible and more user-friendly. This breaks the previous syntax, should not be an issue as possibly no-one is already using anullsrc.
2011-09-18Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: lavfi: add select filter oggdec: fix out of bound write in the ogg demuxer movenc: create an alternate group for each media type lavd: add libcdio-paranoia input device for audio CD grabbing rawdec: refactor private option for raw video demuxers pcmdec: use unique classes for all pcm demuxers. rawdec: g722 is always 1 channel/16kHz Conflicts: Changelog configure doc/filters.texi libavdevice/avdevice.h libavfilter/avfilter.h libavfilter/vf_select.c tests/ref/lavf/mov Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-17lavfi: add select filterStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-16lavfi: add audio convert filterStefano Sabatini
Add aconvert filter to perform sample format, channel layout, and packing format conversion. The aconvert code depends on audio conversion code in libavcodec, so this requires a dependency on libavcodec. Based on previous work by S.N. Hemanth Meenakshisundaram and Mina Nagy Zaki, performed for the GSoC 2010 and 2011.
2011-09-12lavfi: add showinfo filterStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-07Correct docs for boxblur parametersMark Himsley
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-06lavfi: rename vsink_buffer.c to sink_buffer.c, and vsink_buffer.h to ↵Stefano Sabatini
buffersink.h This is done in order to clarify the non-video-specific nature of the buffersink code, as the result of the video/audio API unification of the previous commit, and for improving overall consistency.
2011-09-06lavfi: unify asink_buffer and vsink_buffer APIStefano Sabatini
The new API is more generic (no distinction between audio/video for pulling frames), and avoids code duplication. A backward compatibility layer is kept for avoiding tools ABI breaks (only for the video binary interface, audio interface was never used in the tools).
2011-08-27lavfi: add amovie source - audio movie sourceStefano Sabatini
2011-08-21vsrc_testsrc: allow to set the sample aspect ratioStefano Sabatini
Add the sar option. Useful for debugging/testing purposes.
2011-08-21lavfi: add asrc_abuffer - audio buffer sourceMina Nagy Zaki
Originally based on code by Stefano Sabatini and S. N. Hemanth. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
2011-08-20lavfi: add ashowinfo filterStefano Sabatini
Useful for debugging.
2011-08-17lavfi: add aresample filterMina Nagy Zaki
Based on a patch by Stefano. Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
2011-08-14vf_unsharp: set default chroma size value to 5x5Stefano Sabatini
The previous default value 0x0 was not good, since it is not even valid.
2011-08-14lavfi: remove delogo mp wrapperStefano Sabatini
The delogo filter has been natively integrated into libavfilter, simplify.
2011-08-14lavfi: port libmpcodecs delogo filterStefano Sabatini
The ported filter supports named option parsing and more YUV formats.
2011-08-14lavfi: add aformat filterMina Nagy Zaki
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
2011-08-13vf_unsharp: fix copy&paste error in chroma_amount param docsRobert Krüger
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
2011-08-11lavfi: remove mp test wrapperStefano Sabatini
The source was natively integrated into libavfilter, with the name mptestsrc.
2011-08-11lavfi: port mp test sourceStefano Sabatini
2011-08-07lavfi: remove gradfun mp wrapperStefano Sabatini
The gradfun filter was already integrated natively in libavfilter. Both filters issue the same output, and have a comparable performance. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: remove gradfun mp wrapper Date: Fri, 5 Aug 2011 00:19:04 +0200
2011-08-06lavfi: add asink_abuffer - audio buffer sinkMina Nagy Zaki
Signed-off-by: Stefano Sabatini <stefano.sabatini-lala@poste.it>
2011-08-05filters.texi: fix wrong references in the "Filtergraph syntax" sectionStefano Sabatini
2011-08-04yadif: correct documentation on the parity parameterStefano Sabatini
0 is top-field-first, 1 is bottom-field-first, not the other way around. Fix trac issue #380.
2011-07-30vf_pad: add an example employing the sar variableStefano Sabatini
2011-07-30vf_crop: add support for a, dar, sar, hsub, and vsub variablesStefano Sabatini
Consistent with the pad and scale filters.
2011-07-30lavfi: tweak display aspect ratio variables in pad and scale filtersStefano Sabatini
Previously, "dar" and "a" were documented like "input display aspect ratio", but their actual value was "in_w/in_h". In order to avoid to break scripts which rely on the "a" variable, the patch keeps the same semantics but fixes the corresponding docs, and fixes the semantics of the recently added "dar" variable, which now correctly expresses the input Display Aspect Ratio value as "(inw_w/in_h)*sar".
2011-07-23vf_mp: remove blackframe filter wrapperStefano Sabatini
blackframe is integrated as a native filter.
2011-07-21vf_mp: remove cropdetect wrapperStefano Sabatini
The cropdetect filter is natively integrated into libavfilter.
2011-07-15vf_mp: remove rgbtest wrapperStefano Sabatini
The filter was integrated natively into libavfilter as a source with name rgbtestsrc.
2011-07-15lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecsStefano Sabatini
The licence was changed from GPL to LGPL with explicit approval from the original author. See thread: Subject: [FFmpeg-devel] [PATCH] lavfi: add rgbtestsrc source, ported from MPlayer libmpcodecs Date: Mon, 11 Jul 2011 16:32:41 +0200
2011-07-15vf_mp: remove boxblur wrapperStefano Sabatini
It is natively included in libavfilter.
2011-07-14lavfi: port boxblur filter from libmpcodecsStefano Sabatini
With the following additions: * support to gray format * support to yuva420p format * parametric luma/chroma/alpha radius * consistency check on the radius values, avoid crashes with invalid values
2011-07-10Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: (22 commits) H.264: fix filter_mb_fast with 4:4:4 + 8x8dct alsa: limit buffer_size to 32768 frames. alsa: fallback to buffer_size/4 for period_size. doc: replace @pxref by @ref where appropriate mpeg1video: don't abort if thread_count is too high. segafilm: add support for videos with cri adx adpcm gxf: Fix 25 fps DV material in GXF being misdetected as 50 fps libxvid: Add const qualifier to silence compiler warning. H.264: improve qp_thresh check H.264: use fill_rectangle in CABAC decoding H.264: Remove redundant hl_motion_16/8 code H.264: merge fill_rectangle into P-SKIP MV prediction, to match B-SKIP H.264: faster P-SKIP decoding H.264: av_always_inline some more functions H.264: Add x86 assembly for 10-bit H.264 predict functions swscale: rename uv_off/uv_off2 to uv_off_px/byte. swscale: implement error dithering in planarCopyWrapper. swscale: error dithering for 16/9/10-bit to 8-bit. swscale: fix overflow in 16-bit vertical scaling. swscale: fix crash in 8-bpc bilinear output without alpha. ... Conflicts: doc/developer.texi libavdevice/alsa-audio.h libavformat/gxf.c libswscale/swscale.c libswscale/swscale_internal.h libswscale/swscale_unscaled.c libswscale/x86/swscale_template.c tests/ref/lavfi/pixdesc tests/ref/lavfi/pixfmts_copy tests/ref/lavfi/pixfmts_crop tests/ref/lavfi/pixfmts_hflip tests/ref/lavfi/pixfmts_null tests/ref/lavfi/pixfmts_scale tests/ref/lavfi/pixfmts_vflip Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-07-09doc: replace @pxref by @ref where appropriateDiego Biurrun
2011-07-04filters.texi: fix @var{auto} misc typos in yadif docsStefano Sabatini