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
2012-02-20libswr: allow to set custom matrices.Nicolas George
2012-01-09libswresample: introduce int swr_set_compensation() instead of void ↵Marton Balint
swr_compensate() The new version returns AVERROR(EINVAL) is the specified paramters are invalid, and also creates the resampler if none was used so far. Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-01-08indeo4, swresample: add some missing static/const to tables.Reimar Döffinger
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
2011-12-24swr: fix swresample_version()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-22libswresample.v: add swresample* for cmdutils.cMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-22swr: increase LIBSWRESAMPLE_VERSION_MICRO to 100Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-22swr: add swresample_version swresample_configuration and swresample_licenseMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-20swr: fix assert failureMichael Niedermayer
Bug found by: Oana Stratulat GCI-id: 7211207 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-14Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: ulti: Fix invalid reads lavf: dealloc private options in av_write_trailer yadif: support 10bit YUV vc1: mark with ER_MB_ERROR bits overconsumption lavc: introduce ER_MB_END and ER_MB_ERROR error_resilience: use the ER_ namespace build: move inclusion of subdir.mak to main subdir loop rv34: NEON optimised 4x4 dequant rv34: move 4x4 dequant to RV34DSPContext aacdec: Use intfloat.h rather than local punning union. Conflicts: libavcodec/h264.c libavcodec/vc1dec.c libavfilter/vf_yadif.c libavformat/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-03swr-test: drop one const, silence most const qualifer warnings.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-03swr-test_: Fix mixed declaration and statements:Michael Niedermayer
swresample_test.c:123:21: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] swresample_test.c:127:25: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-11-29swr: handle correctly muted channel with u8 sample fmt.Clément Bœsch
2011-11-24swr: fix invalid sample format message.Clément Bœsch
If the sample format is invalid, av_get_sample_fmt_name() will always return NULL.
2011-11-24swr: use native planar sample formats.Clément Bœsch
2011-11-24swr: fix test program.Clément Bœsch
The number of used channels need to be reset to zero when swr_alloc_set_opts() is called successive times. This is a regression introduced in c8136ebd.
2011-11-20swr: change minimum I/O channel count to zero.Clément Bœsch
This will silence the warning of av_set_opt_int() in swr for input/output channels when the layout is not yet defined (or supported).
2011-11-17swr: doxument matrix fields.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-11-17swr: move code to avoid resample forward declaration.Clément Bœsch
2011-11-17swr: introduce a public function to customize the channel mapping.Clément Bœsch
2011-11-17swr: use av_opt_set_int() instead of manual assignments in swr_alloc_set_opts().Clément Bœsch
2011-11-17swr: surround mixing is obviously used, fix comment.Clément Bœsch
2011-11-17swr: doxycomment public API.Clément Bœsch
2011-11-17swr: correctly raise rematrix AVERROR.Clément Bœsch
2011-11-17swr: fix "control reaches end of non-void function" compiler warning.Clément Bœsch
2011-11-17swr: bump minor version.Clément Bœsch
2011-11-17swr: use int16_t instead of short for resampling.Clément Bœsch
2011-11-17swr: start doxycommenting the API.Clément Bœsch
2011-11-17swr: make swr_* functions match the prototypes.Clément Bœsch
2011-11-17swr: rename swr_alloc2() to swr_alloc_set_opts().Clément Bœsch
2011-11-17swr: use "swri_" prefix instead of "swr_" for the private API.Clément Bœsch
2011-11-17swr: drop 'AV' prefix from ResampleContext.Clément Bœsch
This type/struct is not part of the public API.
2011-11-17swr: make audio convert code explicitely private.Clément Bœsch
Only what's declared in libswresample/swresample.h is public.
2011-11-17swr: fix #endif comment ref.Clément Bœsch
2011-11-16swr: replace deprecated av_set_int() with av_opt_set_int().Clément Bœsch
2011-11-16swr: replace deprecated av_opt_set_defaults2() with av_opt_set_defaults().Clément Bœsch
2011-11-16swr: replace deprecated av_get_bits_per_sample_fmt() with ↵Clément Bœsch
av_get_bytes_per_sample().
2011-11-16swr: use designated initializers for the class.Clément Bœsch
2011-11-16swr: rename resample2 to resample.Clément Bœsch
2011-11-16swr: move format convert code to dedicated functions.Clément Bœsch
This should easier common case optimizations.
2011-11-15swr: set the default used_ch_count value to zero.Clément Bœsch
This allows an appropriate behaviour when it is not specified (fallback to the number of input channels). Fixes Ticket523
2011-11-04ffmpeg: add -map_channel option.Clément Bœsch
Based on an initial work by Baptiste Coudurier.
2011-11-04swr: document how flushing works and bump minor version.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-11-04swr-test: test flushingMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-11-04swr: Support flushing last samples out.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-27resample2: fix potential overflowMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-27resample: Fix overflowMichael Niedermayer
Found-by: Jim Radford Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-26rematrix: add parameter to tune volumeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-26rematrix: change type of integers from 16 to 32bit to allow increasing ↵Michael Niedermayer
volume with it. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-26rematrix: add type for coefficientsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-10-21swr: Fix swresample.c:293:5: warning: passing argument 2 of ↵Michael Niedermayer
‘fill_audiodata’ from incompatible pointer type Signed-off-by: Michael Niedermayer <michaelni@gmx.at>