From 2521925c878381cb5423361d871b336ae4fee159 Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 8 Nov 2021 09:22:32 +0100 Subject: [PATCH] DeckLink: return to default BPS == 4 This partially reverts 2a511d58. The value 4 should be default now (best quality), BPS==2 should be perhaps set later by a preset (after/if implemented). --- src/video_capture/decklink.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video_capture/decklink.cpp b/src/video_capture/decklink.cpp index 1d4bfe1ec..5f4c170a0 100644 --- a/src/video_capture/decklink.cpp +++ b/src/video_capture/decklink.cpp @@ -9,7 +9,7 @@ * Dalibor Matura <255899@mail.muni.cz> * Ian Wesley-Smith * - * Copyright (c) 2005-2020 CESNET z.s.p.o. + * Copyright (c) 2005-2021 CESNET z.s.p.o. * * Redistribution and use in source and binary forms, with or without * modification, is permitted provided that the following conditions @@ -75,7 +75,7 @@ #include "video.h" #include "video_capture.h" -constexpr const int DEFAULT_AUDIO_BPS = 2; +constexpr const int DEFAULT_AUDIO_BPS = 4; constexpr const size_t MAX_AUDIO_PACKETS = 10; #define MOD_NAME "[DeckLink capture] "