- 06 Jan, 2020 1 commit
-
-
Carl Eugen Hoyos authored
libswscale/utils.c:89:42: warning: adding 'unsigned long' to a string does not append to the string [-Wstring-plus-int]
-
- 03 Jan, 2020 3 commits
-
-
Marton Balint authored
The user should use ffmpeg -sources decklink or ffmpeg -sinks decklink instead. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Deprecated since Sep 28, 2017. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Deprecated since March 28, 2017. Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 30 Dec, 2019 2 commits
-
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Since 648b8cca and c991e9cd timestamps were not set properly. Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 25 Dec, 2019 1 commit
-
-
Marton Balint authored
Also by wrapping the SHM buffer in an AVBufferRef we eliminate yet another possible memcpy improving performance. Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 06 Dec, 2019 1 commit
-
-
Marton Balint authored
This avoids a memcpy improving performance if SHM is not used. Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 03 Dec, 2019 1 commit
-
-
Kusanagi Kouichi authored
Fix a NULL dereference and leaks. Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp> Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 29 Nov, 2019 1 commit
-
-
Zhao Zhili authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 18 Nov, 2019 1 commit
-
-
Gyan Doshi authored
Option wait_for_tc only takes effect if tc_format is set
-
- 06 Nov, 2019 1 commit
-
-
Andriy Gelman authored
Before this commit an av_assert0 would fail if a v4l2 device did not support a target format. For example, ./ffmpeg -f v4l2 -codec:v h264 -i /dev/video0 -f mpegts - would signal an abort if /dev/video0 did not support h264. The new behaviour is to return an AVERROR(EINVAL) error code. An av_assert0 has been added to verify this return. Fixes #6629 Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 15 Aug, 2019 1 commit
-
-
Jun Zhao authored
Update the class name to uniform indev/outdev style. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
-
- 30 Jul, 2019 1 commit
-
-
Stephan Hilb authored
Behave like we do for V4L2_BUF_FLAG_ERROR, implemented in commit 28f20d2f . For some devices (probably also related to the V4L driver implementation) it happens that when invoking the ioctl DQBUF, the returned buffer is not of the expected size. Here are two examples for such occurrences: [video4linux2,v4l2 @ 0x258b440] Dequeued v4l2 buffer contains 609596 bytes, but 614400 were expected. Flags: 0x00000001. /dev/video1: Invalid data found when processing input [video4linux2,v4l2 @ 0x225f440] Dequeued v4l2 buffer contains 609508 bytes, but 614400 were expected. Flags: 0x00000001. /dev/video1: Invalid data found when processing input For the ffmpeg CLI tool this means it will stop capturing and exit. The described behaviour was observed at least with one OmniVision USB web cam and with some stk1160 devices. If you search the web for the error message, you will find quite a few instances of this problem. Some of them experienced on other devices. Probably fixes ticket #4795 Signed-off-by: Alexander Strasser <eclipse7@gmx.net>
-
- 21 Jul, 2019 2 commits
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-
- 08 Jul, 2019 6 commits
-
-
Thilo Borgmann authored
-
Thilo Borgmann authored
-
Thilo Borgmann authored
-
Thilo Borgmann authored
-
Thilo Borgmann authored
-
Thilo Borgmann authored
-
- 17 May, 2019 1 commit
-
-
Jun Zhao authored
missed the category AV_CLASS_CATEGORY_DEVICE_VIDEO_INPUT lead to ffmpeg -devices doesn't show gdigrab as a input device FIx #7848 Found-by: dangibson Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
-
- 05 May, 2019 1 commit
-
-
Marton Balint authored
Apparently in the new SDK one cannot query if VANC output is supported, so we will fall back to non-VANC output if enabling the video output with VANC fails. Fixes ticket #7867. Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 23 Apr, 2019 1 commit
-
-
Takayuki 'January June' Suwa authored
Fixes: https://bugs.archlinux.org/task/58619 Found-by: Elias (Bleuzen) https://bugs.archlinux.org/user/26956Signed-off-by: Nicolas George <george@nsup.org>
-
- 15 Apr, 2019 3 commits
-
-
Marton Balint authored
Fixes ticket #7789. Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
Marton Balint authored
Format list can be input and profile dependant. Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 10 Apr, 2019 1 commit
-
-
Don C. Bigler authored
-
- 06 Apr, 2019 1 commit
-
-
Octavio Alvarez authored
There is a calculation error in xcbgrab_reposition() that breaks vertical repositioning on follow_mouse. It made the bottom reposition occur when moving the mouse lower than N pixels after the capture bottom edge, instead of before. This commit fixes the calculation to match the documentation. follow_mouse: centered or number of pixels. The documentation says: When it is specified with "centered", the grabbing region follows the mouse pointer and keeps the pointer at the center of region; otherwise, the region follows only when the mouse pointer reaches within PIXELS (greater than zero) to the edge of region.
-
- 23 Mar, 2019 1 commit
-
-
Carl Eugen Hoyos authored
-
- 22 Mar, 2019 1 commit
-
-
Carl Eugen Hoyos authored
-
- 20 Mar, 2019 1 commit
-
-
Carl Eugen Hoyos authored
-
- 30 Jan, 2019 2 commits
-
-
Dilshod Mukhtarov authored
Mouse position was not calculated properly in area or window mode Signed-off-by: Dilshod Mukhtarov <dilshodm@gmail.com>
-
Dilshod Mukhtarov authored
In Windows if using scaling other than 100% then the grabbed window was not captured fully (cropped) Signed-off-by: Dilshod Mukhtarov <dilshodm@gmail.com>
-
- 15 Jan, 2019 1 commit
-
-
Carl Eugen Hoyos authored
-
- 03 Jan, 2019 1 commit
-
-
Oliver Collyer authored
Signed-off-by: James Almer <jamrial@gmail.com>
-
- 10 Dec, 2018 1 commit
-
-
Carl Eugen Hoyos authored
Fixes build with new Android toolchain.
-
- 01 Dec, 2018 1 commit
-
-
Marton Balint authored
Signed-off-by: Marton Balint <cus@passwd.hu>
-
- 01 Nov, 2018 1 commit
-
-
Michael Niedermayer authored
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-