mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-04-07 17:05:37 +00:00
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:
@@ -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); }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user