- 14 May, 2012 4 commits
-
-
Mans Rullgard authored
These files contain mace6 audio which is tested elsewhere. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
This file has eamad video which is tested elsewhere. Also rename the test to reflect this change. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
This test contains raw rgb565le video. Converting to rgb24 serves no useful purpose here. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Diego Biurrun authored
Fix some orthography, wording and grammar issues; update the SDL section with more current instructions; simplify lib.exe example command line; drop outdated comments about libnut.
-
- 13 May, 2012 1 commit
-
-
Diego Elio Pettenò authored
Signed-off-by: Diego Elio Pettenò <flameeyes@flameeyes.eu> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-
- 12 May, 2012 3 commits
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Michael Kostylev authored
-
- 11 May, 2012 1 commit
-
-
Diego Biurrun authored
-
- 10 May, 2012 13 commits
-
-
Mans Rullgard authored
Change the size specifiers to match the actual element sizes of the data. This makes no practical difference with strict alignment checking disabled (the default) other than somewhat documenting the code. With strict alignment checking on, it avoids trapping the unaligned loads. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Mans Rullgard authored
Converting the double to float for lrintf() loses precision when the value is not exactly representable as a single-precision float. Apart from being inaccurate, this causes discrepancies in some configurations due to differences in rounding. Note that the changed timestamp in the vc1-ism test is a bogus, made-up value. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Christophe Gisquet authored
Code mostly inspired by vp8's MC, however: - its MMX2 horizontal filter is worse because it can't take advantage of the coefficient redundancy - that same coefficient redundancy allows better code for non-SSSE3 versions Benchmark (rounded to tens of unit): V8x8 H8x8 2D8x8 V16x16 H16x16 2D16x16 C 445 358 985 1785 1559 3280 MMX* 219 271 478 714 929 1443 SSE2 131 158 294 425 515 892 SSSE3 120 122 248 387 390 763 End result is overall around a 15% speedup for SSSE3 version (on 6 sequences); all loop filter functions now take around 55% of decoding time, while luma MC dsp functions are around 6%, chroma ones are 1.3% and biweight around 2.3%. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Christophe Gisquet authored
This involves a division that should be a shift. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Mans Rullgard authored
The vertically interpolating variants of these functions read ahead one line to optimise the loop. On the last line processed, this might be outside the buffer. Fix these invalid reads by processing the last line outside the loop. Signed-off-by: Mans Rullgard <mans@mansr.com>
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Samuel Pitoiset authored
According to the behaviour of librtmp, it is recommended to send this message to the server after receiving the 'onBWDone' callback in order to do bandwidth checking and improve compatibility with some servers.
-
Samuel Pitoiset authored
-
Samuel Pitoiset authored
-
Samuel Pitoiset authored
Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 09 May, 2012 18 commits
-
-
Diego Biurrun authored
This fixes the warning: cmdutils.c:897: warning: ‘type’ may be used uninitialized in this function
-
Sean McGovern authored
Replace SOL_SCTP by the more portable IPPROTO_SCTP. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Sean McGovern authored
This is needed to expose some networking APIs. Signed-off-by: Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Diego Biurrun authored
-
Justin Ruggles authored
The current SSE version is slower than the MMX version on Athlon64 and Sandy Bridge, but the SSE4 and AVX versions are faster on Sandy Bridge.
-
Anton Khirnov authored
This is easier to follow than having them randomly scattered in avfilter.c and defaults.c.
-
Anton Khirnov authored
Those functions are only useful inside filters. It is better to not support user filters until the API is more stable. This breaks audio filtering API and ABI in theory, but since it's unusable right now this shouldn't be a problem.
-
Anton Khirnov authored
There is no real reason for it to be 64bit, it's just a plain int in the rest of Libav.
-
Anton Khirnov authored
There's no reason for it to be explicitly 32 bits. It's declared as a plain int in all other places in Libav. This breaks audio filtering API and ABI in theory, but since it's unusable right now this shouldn't be a problem.
-
Stefano Sabatini authored
The additional parameters are just complicating the function interface. Assume that a requested samples buffer will *always* have the format specified in the requested link. This breaks audio filtering API and ABI in theory, but since it's unusable right now this shouldn't be a problem. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
-
Stefano Sabatini authored
Remove AVFilterBufferRefAudioProps.size, and use nb_samples in its place everywhere. This is required as the size in the audio buffer may be aligned, so it may not contain a well defined number of samples. Also remove the useless planar parameter, which can be deduced from the sample format. This is technically an API and ABI break, but since the audio part of lavfi is not usable now, this should not be a problem in practice. Signed-off-by: Anton Khirnov <anton@khirnov.net>
-
Diego Biurrun authored
-
Diego Biurrun authored
This allows compiling the Xvid rate control code without the encoder.
-