]> git.sesse.net Git - nageru/log
nageru
6 months agoRelease Nageru and Futatabi 2.3.0. 2.3.0
Steinar H. Gunderson [Wed, 4 Oct 2023 22:26:26 +0000 (00:26 +0200)]
Release Nageru and Futatabi 2.3.0.

6 months agoDrop buffered SRT data if the connection is down for too long.
Steinar H. Gunderson [Wed, 4 Oct 2023 22:18:16 +0000 (00:18 +0200)]
Drop buffered SRT data if the connection is down for too long.

This stops huge backlogs from building up, like we can get with HTTP.

6 months agoRename global_flags.srt_output_latency to have a proper unit.
Steinar H. Gunderson [Wed, 4 Oct 2023 22:13:06 +0000 (00:13 +0200)]
Rename global_flags.srt_output_latency to have a proper unit.

6 months agoPort FFmpegCapture to the AVChannelLayout API.
Steinar H. Gunderson [Sun, 1 Oct 2023 21:28:05 +0000 (23:28 +0200)]
Port FFmpegCapture to the AVChannelLayout API.

This removes the last compilation warnings with FFmpeg 6.0.

6 months agoRemove more not-so-useful output.
Steinar H. Gunderson [Sun, 1 Oct 2023 09:51:42 +0000 (11:51 +0200)]
Remove more not-so-useful output.

6 months agoRemove an informational message that has no value to the user.
Steinar H. Gunderson [Sun, 1 Oct 2023 09:48:16 +0000 (11:48 +0200)]
Remove an informational message that has no value to the user.

6 months agoUse AVFrame::duration instead of AVFrame::pkt_duration.
Steinar H. Gunderson [Sun, 1 Oct 2023 09:23:51 +0000 (11:23 +0200)]
Use AVFrame::duration instead of AVFrame::pkt_duration.

This field was introduced in FFmpeg 5.2 and then the old one
promptly deprecated; the difference seems to be effectively nil?
Use an #ifdef so that we retain bookworm (FFmpeg 5.1) compatibility.

6 months agoWork around a bogus compilation warning (it claimed the generated copy constructor...
Steinar H. Gunderson [Sun, 1 Oct 2023 09:16:03 +0000 (11:16 +0200)]
Work around a bogus compilation warning (it claimed the generated copy constructor of PendingDecode could be using fade_alpha uninitialized during push_back).

6 months agoStop using av_init_packet().
Steinar H. Gunderson [Sun, 1 Oct 2023 09:11:52 +0000 (11:11 +0200)]
Stop using av_init_packet().

It's a shame that we now need to call malloc for each and every
allocation of a common 104-byte struct, but evidently, that's the way
FFmpeg wants it. So move to heap allocation everywhere, silencing
a barrage of deprecation warnings during build.

6 months agoThe new channel layout API requires FFmpeg 5.1.
Steinar H. Gunderson [Sun, 1 Oct 2023 08:44:48 +0000 (10:44 +0200)]
The new channel layout API requires FFmpeg 5.1.

6 months agoFix channel layout deprecations in AudioEncoder.
Steinar H. Gunderson [Sun, 1 Oct 2023 08:42:55 +0000 (10:42 +0200)]
Fix channel layout deprecations in AudioEncoder.

6 months agoUpdate most code to the new FFmpeg channel layout API.
Steinar H. Gunderson [Sun, 1 Oct 2023 08:39:06 +0000 (10:39 +0200)]
Update most code to the new FFmpeg channel layout API.

Fixes a bunch of noisy deprecation warnings. FFmpegCapture and
AudioEncoder are not done yet.

6 months agoFix a Qt build warning.
Steinar H. Gunderson [Sun, 1 Oct 2023 08:27:01 +0000 (10:27 +0200)]
Fix a Qt build warning.

7 months agoUse nonblocking srt_connect(), to allow faster abort on quit.
Steinar H. Gunderson [Sun, 17 Sep 2023 15:57:02 +0000 (17:57 +0200)]
Use nonblocking srt_connect(), to allow faster abort on quit.

7 months agoFix some addrinfo leaks in the error paths for outbound SRT, by means of RAII.
Steinar H. Gunderson [Sun, 17 Sep 2023 14:59:19 +0000 (16:59 +0200)]
Fix some addrinfo leaks in the error paths for outbound SRT, by means of RAII.

7 months agoMake it possible to quit while SRT is not connected, although slowly.
Steinar H. Gunderson [Sun, 17 Sep 2023 14:33:59 +0000 (16:33 +0200)]
Make it possible to quit while SRT is not connected, although slowly.

7 months agoSoftware README updates.
Steinar H. Gunderson [Thu, 7 Sep 2023 22:26:09 +0000 (00:26 +0200)]
Software README updates.

7 months agoUpdate hardware demands in README.
Steinar H. Gunderson [Thu, 7 Sep 2023 22:23:00 +0000 (00:23 +0200)]
Update hardware demands in README.

7 months agoIf a FFmpeg input does not give a frame for at least ten seconds, consider it a fatal...
Steinar H. Gunderson [Thu, 7 Sep 2023 20:12:05 +0000 (22:12 +0200)]
If a FFmpeg input does not give a frame for at least ten seconds, consider it a fatal error (causing a restart).

7 months agoFix a warning wording in FFmpegCapture.
Steinar H. Gunderson [Thu, 7 Sep 2023 19:45:56 +0000 (21:45 +0200)]
Fix a warning wording in FFmpegCapture.

7 months agoFix crash without SRT output.
Steinar H. Gunderson [Thu, 7 Sep 2023 18:44:39 +0000 (20:44 +0200)]
Fix crash without SRT output.

7 months agoWhen muxing in the background, write the header in the background, too.
Steinar H. Gunderson [Mon, 4 Sep 2023 22:28:17 +0000 (00:28 +0200)]
When muxing in the background, write the header in the background, too.

This is especially important with SRT output, which can hang pretty much
forever on connect. Note that we still buffer forever (which we probably
shouldn't), and we don't exit cleanly if SRT is not connected.

8 months agoRemove some stray help.
Steinar H. Gunderson [Sun, 27 Aug 2023 16:41:53 +0000 (18:41 +0200)]
Remove some stray help.

8 months agoAdd metrics for the SRT output (basically same as on inputs).
Steinar H. Gunderson [Sun, 6 Aug 2023 22:52:08 +0000 (00:52 +0200)]
Add metrics for the SRT output (basically same as on inputs).

8 months agoMove the SRT Prometheus metrics into its own class, for reusability.
Steinar H. Gunderson [Sun, 6 Aug 2023 21:10:02 +0000 (23:10 +0200)]
Move the SRT Prometheus metrics into its own class, for reusability.

8 months agoImplement SRT output.
Steinar H. Gunderson [Sun, 6 Aug 2023 20:51:18 +0000 (22:51 +0200)]
Implement SRT output.

This is useful for push, and for bad networks (e.g. 4G).
You can in theory push to another Nageru instance, but the most
logical would either be to a Cubemap (running FFmpeg to demux,
unfortunately), or to something like YouTube, which is now working
on SRT ingest.

Note that for YouTube SRT ingest to work, someone from YouTube needs to
set a special flag on your account for now.

8 months agoFix another crash with newer SVT-AV1.
Steinar H. Gunderson [Sat, 5 Aug 2023 16:13:55 +0000 (18:13 +0200)]
Fix another crash with newer SVT-AV1.

8 months agoExplicitly set VBR for AV1 (the default is CRF, seemingly).
Steinar H. Gunderson [Sat, 5 Aug 2023 16:07:02 +0000 (18:07 +0200)]
Explicitly set VBR for AV1 (the default is CRF, seemingly).

8 months agoFix a crash with SVT-AV1.
Steinar H. Gunderson [Sat, 5 Aug 2023 15:54:28 +0000 (17:54 +0200)]
Fix a crash with SVT-AV1.

8 months agoRemove a check for very old SVT-AV1.
Steinar H. Gunderson [Sat, 5 Aug 2023 12:15:09 +0000 (14:15 +0200)]
Remove a check for very old SVT-AV1.

8 months agoAdd AVFMT_FLAG_AUTO_BSF when muxing, just in case.
Steinar H. Gunderson [Sat, 5 Aug 2023 12:03:24 +0000 (14:03 +0200)]
Add AVFMT_FLAG_AUTO_BSF when muxing, just in case.

8 months agoRemove/hide some SRT flags if not compiling with SRT.
Steinar H. Gunderson [Fri, 4 Aug 2023 22:37:36 +0000 (00:37 +0200)]
Remove/hide some SRT flags if not compiling with SRT.

8 months agoInclude the Nageru version in the timecode display.
Steinar H. Gunderson [Fri, 4 Aug 2023 19:59:50 +0000 (21:59 +0200)]
Include the Nageru version in the timecode display.

8 months agoSpecify font family explicitly for the stream timecode.
Steinar H. Gunderson [Fri, 4 Aug 2023 19:55:00 +0000 (21:55 +0200)]
Specify font family explicitly for the stream timecode.

Seemingly the default is now a font where not all digits are equally wide,
and that makes the text jump constantly back and forth. Noto Sans should
be pretty widely supported, and if not, we'll probably fall back to
whatever we had before.

8 months agoBump version number.
Steinar H. Gunderson [Fri, 4 Aug 2023 19:56:00 +0000 (21:56 +0200)]
Bump version number.

9 months agoRelease Nageru and Futatabi 2.2.3. 2.2.3
Steinar H. Gunderson [Mon, 24 Jul 2023 12:02:31 +0000 (14:02 +0200)]
Release Nageru and Futatabi 2.2.3.

9 months agoFix missing NEWS entry.
Steinar H. Gunderson [Mon, 24 Jul 2023 12:01:24 +0000 (14:01 +0200)]
Fix missing NEWS entry.

9 months agoFix theme menu check state.
Steinar H. Gunderson [Mon, 24 Jul 2023 12:00:17 +0000 (14:00 +0200)]
Fix theme menu check state.

We'd always (wrongly) get the value from the last entry in the list.

Reported by Stefano Rivera.

9 months agoFix SRT with newer libsrt.
Steinar H. Gunderson [Mon, 24 Jul 2023 11:50:46 +0000 (13:50 +0200)]
Fix SRT with newer libsrt.

Upstream changed their bind behavior:

  https://github.com/Haivision/srt/issues/2764

9 months agoBump the version number.
Steinar H. Gunderson [Mon, 24 Jul 2023 11:50:43 +0000 (13:50 +0200)]
Bump the version number.

9 months agoRelease Nageru and Futatabi 2.2.2. 2.2.2
Steinar H. Gunderson [Sat, 15 Jul 2023 15:16:56 +0000 (17:16 +0200)]
Release Nageru and Futatabi 2.2.2.

9 months agoFix a build failure with GCC 13.
Steinar H. Gunderson [Sat, 15 Jul 2023 15:15:42 +0000 (17:15 +0200)]
Fix a build failure with GCC 13.

9 months agoFix an inverted condition in YCbCr format choice.
Steinar H. Gunderson [Wed, 12 Jul 2023 21:05:42 +0000 (23:05 +0200)]
Fix an inverted condition in YCbCr format choice.

9 months agoStop caring about FFmpeg pre-5.0.
Steinar H. Gunderson [Tue, 4 Jul 2023 18:55:01 +0000 (20:55 +0200)]
Stop caring about FFmpeg pre-5.0.

9 months agoRename stream_mux to http_mux.
Steinar H. Gunderson [Tue, 4 Jul 2023 18:09:54 +0000 (20:09 +0200)]
Rename stream_mux to http_mux.

9 months agoFix compilation break with SVT-AV1.
Steinar H. Gunderson [Tue, 4 Jul 2023 18:15:11 +0000 (20:15 +0200)]
Fix compilation break with SVT-AV1.

9 months agoBump the version number.
Steinar H. Gunderson [Tue, 4 Jul 2023 18:09:19 +0000 (20:09 +0200)]
Bump the version number.

12 months agoRelease Nageru and Futatabi 2.2.1. 2.2.1
Steinar H. Gunderson [Mon, 17 Apr 2023 16:35:47 +0000 (18:35 +0200)]
Release Nageru and Futatabi 2.2.1.

12 months agoFix a buffer overrun when receiving 4K (or 8K etc.) FFmpeg streams.
Steinar H. Gunderson [Mon, 17 Apr 2023 16:19:46 +0000 (18:19 +0200)]
Fix a buffer overrun when receiving 4K (or 8K etc.) FFmpeg streams.

Of course, it would be better to just support this than to throw them away,
but at least we avoid a crash.

12 months agoUnify all the FRAME_SIZE #defines.
Steinar H. Gunderson [Mon, 17 Apr 2023 16:16:05 +0000 (18:16 +0200)]
Unify all the FRAME_SIZE #defines.

12 months agoImprove selection of software formats on hwaccel fallback.
Steinar H. Gunderson [Sun, 16 Apr 2023 08:35:13 +0000 (10:35 +0200)]
Improve selection of software formats on hwaccel fallback.

We assumed the first format was a software format, whereas in practice,
it would now seemingly be vdpau or cuda, causing multiple trips
through the selection function.

12 months agoAdd a warning when trying to hardware-decode H.264 Baseline streams.
Steinar H. Gunderson [Sat, 15 Apr 2023 23:49:51 +0000 (01:49 +0200)]
Add a warning when trying to hardware-decode H.264 Baseline streams.

12 months agoImprove error messaging when VAAPI/VDPAU pixel format selection fails.
Steinar H. Gunderson [Sat, 15 Apr 2023 23:31:44 +0000 (01:31 +0200)]
Improve error messaging when VAAPI/VDPAU pixel format selection fails.

12 months agoFix autodetection of VA-API H.264 encoders without the right profile support.
Steinar H. Gunderson [Sat, 15 Apr 2023 22:50:34 +0000 (00:50 +0200)]
Fix autodetection of VA-API H.264 encoders without the right profile support.

These would sometimes be chosen, and then error out when actually trying to use them.

12 months agoSupport decoding FFmpeg via VDPAU.
Steinar H. Gunderson [Sat, 15 Apr 2023 22:33:28 +0000 (00:33 +0200)]
Support decoding FFmpeg via VDPAU.

This fixes a bug where we hit the VAAPI-by-VDPAU emulation,
which is seemingly bad and just hangs.

Note that this means that if you have a VDPAU card with worse
format support than your VA-API card, you'll now lose some formats.

12 months agoBe more resilient to video decoding errors.
Steinar H. Gunderson [Sat, 15 Apr 2023 17:03:35 +0000 (19:03 +0200)]
Be more resilient to video decoding errors.

In particular, hardware decoding of SRT streams that don't start
on a keyframe can throw errors the first few frames, but then
recover afterwards.

12 months agoRename MAX_FPS to TYPICAL_FPS.
Steinar H. Gunderson [Thu, 13 Apr 2023 15:02:14 +0000 (17:02 +0200)]
Rename MAX_FPS to TYPICAL_FPS.

12 months agoFix crashes when the master clock goes faster than 60 Hz.
Steinar H. Gunderson [Thu, 13 Apr 2023 14:58:34 +0000 (16:58 +0200)]
Fix crashes when the master clock goes faster than 60 Hz.

This could happen in particularly when using a video as the master card;
e.g. Larix Broadcaster sometimes sends SRT with 60.06 fps or similar.
We solve it by completely rewriting how DTS is calculated when doing
Quick Sync encoding, which ended up being much simpler than what we
had before (and probably a lot more common)

This essentially removes the meaning of MAX_FPS; we could now easily
do e.g. 144 fps if needed.

12 months agoAdd some asserts to track down pts/dts problems before we get crashes back from FFmpe...
Steinar H. Gunderson [Wed, 12 Apr 2023 22:46:54 +0000 (00:46 +0200)]
Add some asserts to track down pts/dts problems before we get crashes back from FFmpeg way down the chain.

13 months agoWork around an issue with OpenGL on Wayland.
Steinar H. Gunderson [Sun, 19 Mar 2023 12:51:05 +0000 (13:51 +0100)]
Work around an issue with OpenGL on Wayland.

17 months agoTypo fix.
Steinar H. Gunderson [Thu, 17 Nov 2022 23:27:20 +0000 (00:27 +0100)]
Typo fix.

17 months agozita-resampler was mentioned twice in the dependency list.
Steinar H. Gunderson [Thu, 17 Nov 2022 23:26:39 +0000 (00:26 +0100)]
zita-resampler was mentioned twice in the dependency list.

17 months agoBump the version number.
Steinar H. Gunderson [Thu, 17 Nov 2022 23:26:21 +0000 (00:26 +0100)]
Bump the version number.

17 months agoRelease Nageru and Futatabi 2.2.0. 2.2.0
Steinar H. Gunderson [Mon, 14 Nov 2022 23:25:44 +0000 (00:25 +0100)]
Release Nageru and Futatabi 2.2.0.

17 months agoRemove the QCustomPlot dependency.
Steinar H. Gunderson [Mon, 14 Nov 2022 23:07:06 +0000 (00:07 +0100)]
Remove the QCustomPlot dependency.

This was becoming more a liability than an asset, so replace it with
some custom drawing code. It's not 100% as nice, but pretty close.

20 months agoUse VBR for AV1.
Steinar H. Gunderson [Fri, 5 Aug 2022 20:07:08 +0000 (22:07 +0200)]
Use VBR for AV1.

CBR isn't really ready yet; it requires low-delay mode, which limits
SVT-AV1 to three cores and also is pretty bad for quality in general.
(Also, its CBR isn't really CBR yet; see SVT-AV1 bug 1959.)

21 months agoChange ALSA output period size to 2048 samples.
Steinar H. Gunderson [Fri, 22 Jul 2022 15:50:03 +0000 (17:50 +0200)]
Change ALSA output period size to 2048 samples.

Anything less seemingly triggers a bug in the ALSA PulseAudio
plugin when used against PipeWire (audio just never starts playing).

It would be nice to generally have less latency here, but with the
current design based on large resampling queues, this isn't going
to be what causes it.

21 months agoUpdate the comment on get_scene() about the signals parameter.
Steinar H. Gunderson [Thu, 21 Jul 2022 23:05:58 +0000 (01:05 +0200)]
Update the comment on get_scene() about the signals parameter.

Users won't know what InputState is, and scene selection isn't
a thing anymore after the themes became a thing.

21 months agoMake the theme cardinality warnings more lenient.
Steinar H. Gunderson [Thu, 21 Jul 2022 23:02:12 +0000 (01:02 +0200)]
Make the theme cardinality warnings more lenient.

The default theme hits the 200 limit, so it felt a bit weird to warn on that.

21 months agoRemove the zerocopy warnings.
Steinar H. Gunderson [Thu, 21 Jul 2022 23:00:47 +0000 (01:00 +0200)]
Remove the zerocopy warnings.

It's unlikely that the user will be able to glean meaningful information
from this.

21 months agoExpose BlurEffect and UnsharpMaskEffect.
Steinar H. Gunderson [Thu, 21 Jul 2022 22:23:50 +0000 (00:23 +0200)]
Expose BlurEffect and UnsharpMaskEffect.

This was mostly so that people could sharpen the input if they wanted to
(even though unsharp mask is not the best sharpener). BlurEffect was added
mainly because it felt wrong that one could only use a compound effect and not
the underlying one.

21 months agoSmall consistency fix in --help.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:48:15 +0000 (23:48 +0200)]
Small consistency fix in --help.

21 months agoRemove a now-obsolete reference in --help.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:47:54 +0000 (23:47 +0200)]
Remove a now-obsolete reference in --help.

21 months agoTake --x264-speedcontrol-verbose out of the --help output.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:46:47 +0000 (23:46 +0200)]
Take --x264-speedcontrol-verbose out of the --help output.

21 months agoTake --no-flush-pbos out of the --help output.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:44:17 +0000 (23:44 +0200)]
Take --no-flush-pbos out of the --help output.

21 months agoRemove the x264 VBV settings.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:42:58 +0000 (23:42 +0200)]
Remove the x264 VBV settings.

The user shouldn't generally muck around with this, so remove them.

21 months agoRemove the --http-uncompressed-video flag.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:39:19 +0000 (23:39 +0200)]
Remove the --http-uncompressed-video flag.

This is probably unused; it is so expensive to send uncompressed data
across sockets, and it was made at a time where it was envisioned
that we do most of our encoding externally.

21 months agoCollapse all the 10-bit flags.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:35:57 +0000 (23:35 +0200)]
Collapse all the 10-bit flags.

It's unlikely that a user would want 10-bit input but not 10-bit-output,
or the other way around. Having only one flag simplifies things for the
user (although not much in the code, as we're already fp16 internally
anyway).

21 months agoAdd support for 10-bit AV1 encoding.
Steinar H. Gunderson [Thu, 21 Jul 2022 21:02:05 +0000 (23:02 +0200)]
Add support for 10-bit AV1 encoding.

21 months agoFix a read-past-the-end in av_write_header(); extradata must have AV_INPUT_BUFFER_PAD...
Steinar H. Gunderson [Thu, 21 Jul 2022 21:01:26 +0000 (23:01 +0200)]
Fix a read-past-the-end in av_write_header(); extradata must have AV_INPUT_BUFFER_PADDING_SIZE padding as per avformat.h comments.

21 months agoDrop the SSE2 fastpath.
Steinar H. Gunderson [Thu, 21 Jul 2022 15:40:58 +0000 (17:40 +0200)]
Drop the SSE2 fastpath.

Pre-Haswell CPUs are not really worth optimizing for anymore.

21 months agoSupport --record-x264-video with AV1 HTTP output.
Steinar H. Gunderson [Thu, 21 Jul 2022 15:12:09 +0000 (17:12 +0200)]
Support --record-x264-video with AV1 HTTP output.

21 months agoSupport AV1 streaming over HTTP, via SVT-AV1.
Steinar H. Gunderson [Thu, 21 Jul 2022 14:45:02 +0000 (16:45 +0200)]
Support AV1 streaming over HTTP, via SVT-AV1.

This is optional, and pretty rough currently. But it might be interesting
for certain use cases, in particular around 1080p or 4K streaming.

21 months agoUpdate README for Debian bullseye.
Steinar H. Gunderson [Thu, 21 Jul 2022 11:35:09 +0000 (13:35 +0200)]
Update README for Debian bullseye.

21 months agoSlightly more verbose error messages in Mux when a libavformat error happens.
Steinar H. Gunderson [Tue, 19 Jul 2022 21:24:55 +0000 (23:24 +0200)]
Slightly more verbose error messages in Mux when a libavformat error happens.

21 months agoMake an interface to wrap X264Encoder.
Steinar H. Gunderson [Tue, 19 Jul 2022 12:21:13 +0000 (14:21 +0200)]
Make an interface to wrap X264Encoder.

This will be useful when adding more video codecs later.

2 years agoUpdate CEF file names (this is compatible with CEF 100).
Steinar H. Gunderson [Sun, 17 Apr 2022 18:46:38 +0000 (20:46 +0200)]
Update CEF file names (this is compatible with CEF 100).

2 years agoRemove the web_security flag for newer CEF, since it is no longer available (https...
Steinar H. Gunderson [Sun, 17 Apr 2022 18:45:19 +0000 (20:45 +0200)]
Remove the web_security flag for newer CEF, since it is no longer available (https://bitbucket.org/chromiumembedded/cef/issues/3058/remove-cefbrowsersettingsweb_security).

2 years agoAdd explicit check arguments to run_command, to fix a Meson warning.
Steinar H. Gunderson [Sun, 17 Apr 2022 18:23:58 +0000 (20:23 +0200)]
Add explicit check arguments to run_command, to fix a Meson warning.

2 years agoFix (?) the mode scanning.
Steinar H. Gunderson [Sun, 17 Apr 2022 15:12:45 +0000 (17:12 +0200)]
Fix (?) the mode scanning.

2 years agoBump the version number.
Steinar H. Gunderson [Sun, 17 Apr 2022 15:12:40 +0000 (17:12 +0200)]
Bump the version number.

2 years agoRelease Nageru and Futatabi 2.1.0. 2.1.0
Steinar H. Gunderson [Sun, 6 Feb 2022 15:09:11 +0000 (16:09 +0100)]
Release Nageru and Futatabi 2.1.0.

2 years agoFix compilation with FFmpeg _before_ version 5.0.
Steinar H. Gunderson [Sun, 6 Feb 2022 14:41:27 +0000 (15:41 +0100)]
Fix compilation with FFmpeg _before_ version 5.0.

2 years agoFix compilation with FFmpeg 5.0.
Steinar H. Gunderson [Mon, 31 Jan 2022 21:51:26 +0000 (22:51 +0100)]
Fix compilation with FFmpeg 5.0.

2 years agoFix an issue where scrubbing in Futatabi could lock up if there were no inputs going...
Steinar H. Gunderson [Thu, 14 Oct 2021 19:29:58 +0000 (21:29 +0200)]
Fix an issue where scrubbing in Futatabi could lock up if there were no inputs going, with certain GL drivers.

2 years agoFix white balance with non-VAAPI decoding.
Plastkast user [Fri, 8 Oct 2021 17:51:20 +0000 (19:51 +0200)]
Fix white balance with non-VAAPI decoding.

2 years agoSupport unsynchronized HDMI/SDI output.
Steinar H. Gunderson [Sat, 2 Oct 2021 14:54:58 +0000 (16:54 +0200)]
Support unsynchronized HDMI/SDI output.

This is for if you want just a monitor output without synchronizing
your entire stream chain to the output card (ie., you want to keep
some other camera as the master). Sound support is untested, and is
probably going to crackle a fair bit.

There's no GUI support for changing this currently.

2 years agoYet another crash fix in changing output cards.
Steinar H. Gunderson [Sat, 2 Oct 2021 14:17:35 +0000 (16:17 +0200)]
Yet another crash fix in changing output cards.

This got broken when we started sharing the IDeckLinkInput interface
for the driver bugfix workaround.

2 years agoFix mode-switching on output cards.
Steinar H. Gunderson [Sat, 2 Oct 2021 14:12:31 +0000 (16:12 +0200)]
Fix mode-switching on output cards.

2 years agoNewer drivers can seemingly send completions out-of-order on shutdown, so adjust...
Steinar H. Gunderson [Sat, 2 Oct 2021 14:12:24 +0000 (16:12 +0200)]
Newer drivers can seemingly send completions out-of-order on shutdown, so adjust asserts accordingly.