- May 15, 2013
-
-
Diego Biurrun authored
-
- May 03, 2013
-
-
Diego Biurrun authored
-
- Mar 24, 2013
-
-
Martin Storsjö authored
This is necessary after the old av_gettime in libavformat was dropped. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Mar 23, 2013
-
-
Martin Storsjö authored
This is necessary after the old av_gettime in libavformat was dropped. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Mar 08, 2013
-
-
Anton Khirnov authored
-
Anton Khirnov authored
This will allow us to avoid copying the packets in many cases. This breaks ABI.
-
- Jan 17, 2013
-
-
Luca Barbato authored
Upstream decided to split the paranoia interface and move the headers accordingly.
-
- Jan 13, 2013
-
-
Anton Khirnov authored
-
Anton Khirnov authored
Codec timebase is supposed to be set by decoders only.
-
Anton Khirnov authored
v4l2_read_header() does no cleanup, so it can return directly, without any need for goto.
-
- Jan 03, 2013
-
-
Clément Bœsch authored
The function find_things() in configure is confused by component registration calls as part of multiline macros defining combined component registration. Coalesce those macros into one line to work around the issue. Signed-off-by:
Diego Biurrun <diego@biurrun.de> Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Dec 28, 2012
-
-
Diego Biurrun authored
-
- Dec 20, 2012
-
-
Diego Biurrun authored
-
- Dec 04, 2012
-
-
Anton Khirnov authored
-
- Nov 11, 2012
-
-
Justin Ruggles authored
Also reorder some other #include when applicable.
-
- Nov 02, 2012
-
-
Michael Niedermayer authored
DV1394_NTSC has a lower value than DV1394_PAL. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Oct 12, 2012
-
-
Anton Khirnov authored
-
- Oct 08, 2012
-
-
Anton Khirnov authored
-
- Oct 07, 2012
-
-
Diego Biurrun authored
-
- Oct 06, 2012
-
-
Diego Biurrun authored
Anonymous structs cannot be forward declared and have no benefit.
-
- Oct 01, 2012
-
-
Diego Biurrun authored
-
- Sep 04, 2012
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Aug 15, 2012
-
-
Martin Storsjö authored
Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Aug 07, 2012
-
-
Anton Khirnov authored
-
- Jul 30, 2012
-
-
Diego Biurrun authored
-
- Jul 28, 2012
-
-
Anton Khirnov authored
-
Diego Biurrun authored
-
- Jul 04, 2012
-
-
Diego Biurrun authored
-
Diego Biurrun authored
-
- Jun 20, 2012
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Jun 14, 2012
-
-
Diego Biurrun authored
We generally do not declare variables within for statements and there are compilers that choke on such constructs.
-
- Jun 13, 2012
-
-
Sean McGovern authored
Fixes Bugzilla #279. Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
- May 07, 2012
-
-
Diego Biurrun authored
-
- Apr 04, 2012
-
-
Diego Biurrun authored
-
- Mar 28, 2012
-
-
Diego Biurrun authored
Also remove one pointless zero initialization in rangecoder.c.
-
- Mar 16, 2012
-
-
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>
-
- Mar 04, 2012
-
-
Anton Khirnov authored
-
- Feb 28, 2012
-
-
Diego Biurrun authored
-