From 2ca38e7c055208e640c174d1d0c91fab41f6135c Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 16 Jun 2025 14:28:11 +0200 Subject: [PATCH] recompress: fix compress_done use Reflects the commit 0557730f (from 2024-03-08) that replaced generic module deleter with compress_done(). --- src/hd-rum-translator/hd-rum-recompress.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hd-rum-translator/hd-rum-recompress.cpp b/src/hd-rum-translator/hd-rum-recompress.cpp index 57efeb1bb..42ffdfcd7 100644 --- a/src/hd-rum-translator/hd-rum-recompress.cpp +++ b/src/hd-rum-translator/hd-rum-recompress.cpp @@ -8,7 +8,7 @@ * (therefore it wraps the whole sending part of UltraGrid). */ /* - * Copyright (c) 2013-2023 CESNET, z. s. p. o. + * Copyright (c) 2013-2025 CESNET * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -66,7 +66,7 @@ namespace { struct compress_state_deleter{ - void operator()(struct compress_state *s){ module_done(CAST_MODULE(s)); } + void operator()(struct compress_state *s){ compress_done(s); } }; }