- 04 Apr, 2012 3 commits
-
-
Nicolas George authored
-
Diego Biurrun authored
-
Nicolas George authored
-
- 28 Mar, 2012 1 commit
-
-
Diego Biurrun authored
Also remove one pointless zero initialization in rangecoder.c.
-
- 18 Mar, 2012 1 commit
-
-
Michael Niedermayer authored
Found-by: ubitux Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 16 Mar, 2012 1 commit
-
-
Antonio Ospite authored
When using "-f x11grab -i :0.0" valgrind reports a definitely lost memory block with this message: ==31544== 5 bytes in 1 blocks are definitely lost in loss record 1 of 2 ==31544== at 0x4026E68: memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==31544== by 0x4026F17: posix_memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==31544== by 0x60D399A: av_malloc (in /usr/lib/x86_64-linux-gnu/libavutil.so.51.22.1) ==31544== by 0x60D3A70: av_strdup (in /usr/lib/x86_64-linux-gnu/libavutil.so.51.22.1) ==31544== by 0x4A2BE58: ??? (in /usr/lib/x86_64-linux-gnu/libavdevice.so.53.2.0) ==31544== by 0x506D29E: avformat_open_input (in /usr/lib/x86_64-linux-gnu/libavformat.so.53.21.0) ==31544== by 0x400A80: main (in /home/ao2/WIP/am7xxx-play/tests/a.out) The 5 bytes lost are the ones from param = av_strdup(":0.0"), so let's free param in the exit path. Also check the av_strdup() return value. Note: calling av_free(param) even when av_strdup() fails and param is NULL is OK and keeps the code simpler without adding another label to skip av_free(). Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
- 05 Mar, 2012 3 commits
-
-
Nicolas George authored
The period argument is supposed to be the number of samples since the last update.
-
Nicolas George authored
Initially found and designed by Michael Niedermayer.
-
Nicolas George authored
The feedback factors for the timefilter are directly computed from the expected period. This commit changes the init function to accept the period itself and compute the feedback factors internally, rather than having all client code duplicate the formulas. This commit also actually fixes the formulas: the current code had sqrt(2*o), but the correct formula, both theoretically and according to experimental testing, is sqrt(2)*o. Furthermore, it adds an exponential to feedback factors larger than 1 with large periods.
-
- 04 Mar, 2012 1 commit
-
-
Anton Khirnov authored
-
- 02 Mar, 2012 1 commit
-
-
Michael Niedermayer authored
Add support for divergence detection and variable period. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 28 Feb, 2012 1 commit
-
-
Diego Biurrun authored
-
- 22 Feb, 2012 1 commit
-
-
Nicolas George authored
-
- 16 Feb, 2012 1 commit
-
-
Rafaël Carré authored
Closes ticket #999 NO_DSHOW_STRSAFE asks dshow.h header to not use secure string function replacements. Using secure replacements would break mingw.org compatibility as they don't declare/define those functions. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 10 Feb, 2012 1 commit
-
-
Yordan Makariev authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- 05 Feb, 2012 1 commit
-
-
Carl Eugen Hoyos authored
Reviewed-by: Luca Abeni
-
- 03 Feb, 2012 2 commits
-
-
Ramiro Polla authored
Fixes build after removal of AVFormatParameters. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Ramiro Polla authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 02 Feb, 2012 1 commit
-
-
Carl Eugen Hoyos authored
Remove adding a constant value to each pixel to make it opaque.
-
- 01 Feb, 2012 3 commits
-
-
Carl Eugen Hoyos authored
-
Carl Eugen Hoyos authored
-
Carl Eugen Hoyos authored
-
- 28 Jan, 2012 2 commits
-
-
Michael Niedermayer authored
has time to update it to the new API. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Alex Converse authored
-
- 27 Jan, 2012 1 commit
-
-
Anton Khirnov authored
-
- 24 Jan, 2012 4 commits
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Anton Khirnov authored
-
Nicolas George authored
-
- 11 Jan, 2012 1 commit
-
-
Michael Niedermayer authored
This reverts commit 0efd48df. Reason for the revert is that the code seems based on some misunderstanding on how the code works. Conflicts: libavdevice/v4l2.c Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 10 Jan, 2012 3 commits
-
-
Luca Barbato authored
Remove some unneeded memsets.
-
Luca Barbato authored
Instead of busy waiting use poll();
-
Luca Barbato authored
Let pass the codec name to -pixel_format and introduce -input_format.
-
- 07 Jan, 2012 1 commit
-
-
Diego Biurrun authored
-
- 04 Jan, 2012 6 commits
-
-
Janne Grunau authored
V4L2_FMT_FLAG_EMULATED was added in 2.6.32.
-
Luca Barbato authored
Make use of the experimental framesize enumeration ioctl if available.
-
Luca Barbato authored
Unbreak direct streamcopy.
-
Luca Barbato authored
Check capabilities directly in the function, further simplify the code.
-
Luca Barbato authored
Only mmap is supported.
-
Luca Barbato authored
-