Re: [FFmpeg-devel] [PATCH] MAINTAINERS: change the decklink maintainer to myself

2017-09-30 Thread Deti Fliegl
avfoundation.mThilo Borgmann - decklink* Deti Fliegl + decklink* Marton Balint dshow.c Roger Pack (CC rogerdp...@gmail.com) fbdev_enc.c Lukasz

Re: [FFmpeg-devel] [PATCH] FFmpeg Decklink input connection options

2016-05-10 Thread Deti Fliegl
Hi, thank you. Patch approved. Deti On 10.05.16 19:34, Felipe Astroza wrote: Hello, I thought you could have interest in this: The patch adds additional input options: video input connection (vinput), audio input connection (ainput). *Usage: ffmpeg -f decklink -i 'Card name'@fmt

Re: [FFmpeg-devel] [PATCH 1/8] avdevice/decklink_dec: fix bitrate calculations

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_dec.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 1c305f3..3b5d4be 100644 --

Re: [FFmpeg-devel] [PATCH 2/8] avdevice/decklink: factorize cleanup function to common code

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 13 + libavdevice/decklink_common.h | 1 + libavdevice/decklink_dec.cpp| 11 ++- libavdevice/decklink_enc.cpp| 10 ++

Re: [FFmpeg-devel] [PATCH 5/8] avdevice/decklink: always free decklink resources on error

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_dec.cpp | 18 -- libavdevice/decklink_enc.cpp | 12 ++-- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/libavdevice/decklink_dec

Re: [FFmpeg-devel] [PATCH 3/8] avdevice/decklink: remove unused itermode iterators

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_dec.cpp | 9 - libavdevice/decklink_enc.cpp | 8 2 files changed, 17 deletions(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.c

Re: [FFmpeg-devel] [PATCH 6/8] avdevice/decklink: add support for setting duplex mode

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: This patch also makes BlackMagic drivers v10.6.1 a hard requirement. Signed-off-by: Marton Balint --- configure | 3 ++- doc/indevs.texi | 4 libavdevice/decklink_common.cpp | 33

Re: [FFmpeg-devel] [PATCH 4/8] avdevice/decklink: factorize device finder function

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 29 + libavdevice/decklink_common.h | 1 + libavdevice/decklink_dec.cpp| 29 - libavdevice/dec

Re: [FFmpeg-devel] [PATCH 7/8] avdevice/decklink: add support for audio and video input selection

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- doc/indevs.texi | 10 ++ libavdevice/decklink_common.cpp | 43 + libavdevice/decklink_common.h | 21 lib

Re: [FFmpeg-devel] [PATCH 8/8] avdevice/decklink: add support for setting input packet timestamp source

2016-06-26 Thread Deti Fliegl
Patch accepted, please apply. On 23/06/16 02:47, Marton Balint wrote: Signed-off-by: Marton Balint --- doc/indevs.texi | 8 ++ libavdevice/decklink_common.h | 2 ++ libavdevice/decklink_common_c.h | 9 ++ libavdevice/decklink_dec.cpp| 62 +++

Re: [FFmpeg-devel] [PATCH] avdevice/decklink: fix mingw portability

2016-06-26 Thread Deti Fliegl
patch accepted, please apply. On 27.06.16 01:15, Marton Balint wrote: Signed-off-by: Marton Balint --- libavdevice/decklink_common.cpp | 7 +-- libavdevice/decklink_common.h | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/libavdevice/decklink_common.cpp b/libavde

[FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-08-18 Thread Deti Fliegl
Signed-off-by: Deti fliegl --- libavdevice/decklink_common.cpp | 227 ++ libavdevice/decklink_common.h | 98 libavdevice/decklink_common_c.h | 32 +++ libavdevice/decklink_dec.cpp| 520 libavdevice/decklink_dec.h

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-08-18 Thread Deti Fliegl
On 18.08.14 19:23, Carl Eugen Hoyos wrote: > Deti Fliegl fliegl.de> writes: > >> +/* free() is needed for a string returned by the DeckLink SDL. */ >> +#undef free > > I believe this is not needed anymore but ... removed it - but this has been part of the existing cod

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-08-18 Thread Deti Fliegl
Rebased commits to have all changes in one patch. Hopefully it's complete now. Deti On 18.08.14 19:48, Deti Fliegl wrote: > On 18.08.14 19:23, Carl Eugen Hoyos wrote: >> Deti Fliegl fliegl.de> writes: >> >>> +/* free() is needed for a string returned by the D

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-08-18 Thread Deti Fliegl
On 18.08.14 20:05, Carl Eugen Hoyos wrote: > Deti Fliegl fliegl.de> writes: > >>>> +av_log(NULL, AV_LOG_ERROR, >>> >>> Context should not be NULL. >> Can hardly be done in this file unless you supply avctx as >> argument in ever

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-08-19 Thread Deti Fliegl
Minor update to propagate field dominance. On 18.08.14 20:40, Deti Fliegl wrote: > Rebased commits to have all changes in one patch. Hopefully it's > complete now. > > Deti > > On 18.08.14 19:48, Deti Fliegl wrote: >> On 18.08.14 19:23, Carl Eugen Hoyos wrote: >&

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-08-23 Thread Deti Fliegl
On 19.08.14 15:43, Carl Eugen Hoyos wrote: Deti Fliegl fliegl.de> writes: Minor update to propagate field dominance. At least a Changelog entry and a libavdevice version bump are still missing, but consider waiting for a real review. Well in the meantime I updated my patch once again to

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-09-02 Thread Deti Fliegl
k device. Deti Signed-off-by: Deti fliegl --- MAINTAINERS | 1 + configure| 4 +- doc/indevs.texi | 54 + libavdevice/Makefile | 3 +- libavdevice/alldevices.c | 2 +- libavdevice/decklink_dec.c

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-09-05 Thread Deti Fliegl
On 04.09.14 16:44, Deron wrote: What I did to test capture capabilities was use two decklink devices and connect them together. To test output, I happen to have an HD-SDI capable monitor. Good luck, I've not had any luck with the "official" ffmpeg decklink driver. Could you please explain what yo

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-09-05 Thread Deti Fliegl
t; somehow [I know dshow is deficient in multiple ways, FWIW]. Or was it just to add linux support? Cheers! -roger- On Mon, Aug 18, 2014 at 12:40 PM, Deti Fliegl wrote: Rebased commits to have all changes in one patch. Hopefully it's complete now. Deti On 18.08.14 19:48, Deti Fliegl wrot

Re: [FFmpeg-devel] [PATCH] Add input support for DeckLink devices.

2014-09-14 Thread Deti Fliegl
10:50:37PM +0200, Deti Fliegl wrote: On 19.08.14 15:43, Carl Eugen Hoyos wrote: Deti Fliegl fliegl.de> writes: Minor update to propagate field dominance. At least a Changelog entry and a libavdevice version bump are still missing, but consider waiting for a real review. Well in the me

Re: [FFmpeg-devel] [PATCH 2/3] lavd/decklink_dec: add support for teletext

2016-01-28 Thread Deti Fliegl
Hi, I am sorry for the delay. Your patch seems ok as far as I could test. Deti On 28.01.16 21:43, Marton Balint wrote: On Thu, 21 Jan 2016, Marton Balint wrote: On Thu, 14 Jan 2016, Marton Balint wrote: It uses the libzvbi slicer, therefore teletext capture requires libzvbi. Signed-off-b

Re: [FFmpeg-devel] [PATCH] decklink: support all valid numbers of audio channels

2016-02-02 Thread Deti Fliegl
Hi Matthias, thanks for adding this necessary option. Please commit this patch. Deti On 02.02.16 20:58, Marton Balint wrote: On Sun, 20 Dec 2015, Matthias Hunstock wrote: As it is already written in the documentation, BMD DeckLink cards are capable of capturing 2, 8 or 16 audio channels (for