recompress: fix compress_done use

Reflects the commit 0557730f (from 2024-03-08) that replaced generic
module deleter with compress_done().
This commit is contained in:
Martin Pulec
2025-06-16 14:28:11 +02:00
parent 7d53ff95c4
commit 2ca38e7c05

View File

@@ -8,7 +8,7 @@
* (therefore it wraps the whole sending part of UltraGrid). * (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. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@@ -66,7 +66,7 @@
namespace { namespace {
struct compress_state_deleter{ struct compress_state_deleter{
void operator()(struct compress_state *s){ module_done(CAST_MODULE(s)); } void operator()(struct compress_state *s){ compress_done(s); }
}; };
} }