Skip to content

Commit 2ca38e7

Browse files
committed
recompress: fix compress_done use
Reflects the commit 0557730 (from 2024-03-08) that replaced generic module deleter with compress_done().
1 parent 7d53ff9 commit 2ca38e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hd-rum-translator/hd-rum-recompress.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* (therefore it wraps the whole sending part of UltraGrid).
99
*/
1010
/*
11-
* Copyright (c) 2013-2023 CESNET, z. s. p. o.
11+
* Copyright (c) 2013-2025 CESNET
1212
* All rights reserved.
1313
*
1414
* Redistribution and use in source and binary forms, with or without
@@ -66,7 +66,7 @@
6666

6767
namespace {
6868
struct compress_state_deleter{
69-
void operator()(struct compress_state *s){ module_done(CAST_MODULE(s)); }
69+
void operator()(struct compress_state *s){ compress_done(s); }
7070
};
7171
}
7272

0 commit comments

Comments
 (0)