diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-06-04 13:54:23 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-06-04 13:54:23 +0200 |
| commit | e8c71ec28755e77bd6851b9ffd698794d214208a (patch) | |
| tree | c60799b066253b586969cffffacf60b9ceee91cf | |
| parent | 0a895a0ef1dc0f8c2c11d5e56c8445c0d3c08848 (diff) | |
Missing finalize() in dcpdecryptmxf.
| -rw-r--r-- | tools/dcpdecryptmxf.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/dcpdecryptmxf.cc b/tools/dcpdecryptmxf.cc index 8280cfff..cf8df735 100644 --- a/tools/dcpdecryptmxf.cc +++ b/tools/dcpdecryptmxf.cc @@ -79,6 +79,7 @@ void copy (T const& in, shared_ptr<U> writer) auto frame = reader->get_frame (i); writer->write (frame->data(), frame->size()); } + writer->finalize(); }; |
