- 09 Aug, 2014 1 commit
-
-
Anton Khirnov authored
-
- 07 Aug, 2014 4 commits
-
-
Michael Niedermayer authored
Fixes a clang warning Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
James Almer authored
ff_codec_get_id() is a lavf internal function Signed-off-by:
James Almer <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
James Almer authored
Used to expose ff_raw_pix_fmt_tags[] to other libav* libraries Signed-off-by:
James Almer <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
James Almer authored
The were wrongly being exported and used by libavdevice Signed-off-by:
James Almer <jamrial@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 04 Aug, 2014 1 commit
-
-
Thilo Borgmann authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 31 Jul, 2014 2 commits
-
-
Michael Niedermayer authored
Found-by:
CSA and Timothy Gu <timothygu99@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Anshul Maheswhwari authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 28 Jul, 2014 1 commit
-
-
Michael Niedermayer authored
This is required by the API/ABI for things outside libavutil Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 23 Jul, 2014 1 commit
-
-
Andrey Utkin authored
Example of non-mappable file is /dev/stdin. Previously passing it as graph_file value returned error. Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 19 Jul, 2014 1 commit
-
-
Timothy Gu authored
Also add a note about SNDCTL_DSP_GETFMTS which may fail even if OSS is available. Signed-off-by:
Timothy Gu <timothygu99@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 18 Jul, 2014 2 commits
-
-
Nidhi Makhijani authored
Signed-off-by:
Diego Biurrun <diego@biurrun.de>
-
Diego Biurrun authored
Anonymous structs can cause trouble in header files, so try to avoid them altogether as a matter of good style.
-
- 17 Jul, 2014 5 commits
-
-
Nicolas George authored
-
Nicolas George authored
With remote displays supporting the MIT-SHM extension, the extension is detected and used, but attaching fails asynchronously.
-
Nicolas George authored
The X11 servers by VNC, at 32-bits depths, has the following masks: R:0x000007ff G:0x003ff800 B:0xffc00000 This is not compatible with AV_PIX_FMT_0RGB32, and the result is success with completely wrong colors.
-
Nicolas George authored
-
Nicolas George authored
Fix a segfault if the XFixes extension is not available on the X11 server. Can be reproduced using the VNC server.
-
- 15 Jul, 2014 2 commits
-
-
Hanspeter Niederstrasser authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
MSVC does not allow passing file pointers between libs This API can thus not work with MSVC and as it was very recently added and its it was in no release its removial should not cause any problems A better API will be implemented, but its not finished yet, this revert is to avoid potentially blocking the release Found-by:
Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 08 Jul, 2014 3 commits
-
-
Michael Niedermayer authored
This fixes timestamps Based-on: code from pulseaudio Reviewed-by:
Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Jul, 2014 2 commits
-
-
Michael Niedermayer authored
Should fix build failure on MSVC Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Andrey Utkin authored
Use av_bprint_fd_contents() instead of av_file_map() Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 03 Jul, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 30 Jun, 2014 2 commits
-
-
Michael Niedermayer authored
Found-by: jamrial Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Lukasz Marek authored
User may close X11 window by close button on tray. FFmpeg leaves in graceless way. This commit detects it and return EPIPE error. Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 12 Jun, 2014 1 commit
-
-
sfan5 authored
Signed-off-by:
Thilo Borgmann <thilo.borgmann@mail.de> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 07 Jun, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 03 Jun, 2014 1 commit
-
-
Lou Logan authored
Signed-off-by:
Lou Logan <lou@lrcd.com> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 22 May, 2014 1 commit
-
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 19 May, 2014 1 commit
-
-
Lukasz Marek authored
Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-
- 18 May, 2014 1 commit
-
-
Olivier Langlois authored
Whenever av_gettime() is used to measure relative period of time, av_gettime_relative() is prefered as it guarantee monotonic time on supported platforms. Since v4l2 is compiled only on Linux where av_gettime_relative() is monotonic, a small wrapper function av_gettime_monotonic() is used (should be inlined the compiler) to put emphasis on that fact. Signed-off-by:
Olivier Langlois <olivier@trillion01.com> Reviewed-by:
Nicolas George <george@nsup.org> Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
- 13 May, 2014 1 commit
-
-
Janne Grunau authored
Instead of setting FFLIBS in each library Makefile configure exports FFLIBS-$library in config.mak.
-
- 07 May, 2014 1 commit
-
-
Lukasz Marek authored
Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-
- 02 May, 2014 4 commits
-
-
Lukasz Marek authored
Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-
Lukasz Marek authored
Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-
Lukasz Marek authored
Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-
Lukasz Marek authored
Signed-off-by:
Lukasz Marek <lukasz.m.luki2@gmail.com>
-