diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-09-24 00:34:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-28 02:01:57 +0100 |
| commit | f8d0dac871883c7cbfa6f31c182ca3e6d213aed1 (patch) | |
| tree | 6bc2c82776d66380382cbfb76940463c950f4b6e /src/lib/wscript | |
| parent | 25dd85d10a05b363f5f6a94d6dafbf4aed47c4ac (diff) | |
Rearrange encoder threading.
Soon we'll add a new encoder type, and the existing structure was
already creaking a bit at the seams while handling local and remote
encodes. Here we split out an encoder thread and introduce the concept
of a "sync" thread (which blocks while the encoding is happening).
Later we'll have another type which submits the encode request to a
GPU and receives the reply back later.
Diffstat (limited to 'src/lib/wscript')
| -rw-r--r-- | src/lib/wscript | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/wscript b/src/lib/wscript index d71f2a368..00d50b279 100644 --- a/src/lib/wscript +++ b/src/lib/wscript @@ -59,6 +59,7 @@ sources = """ content_factory.cc combine_dcp_job.cc copy_dcp_details_to_film.cc + cpu_j2k_encoder_thread.cc create_cli.cc crop.cc cross_common.cc @@ -122,6 +123,7 @@ sources = """ font_id_map.cc frame_interval_checker.cc frame_rate_change.cc + grok_j2k_encoder_thread.cc guess_crop.cc hints.cc internet.cc @@ -138,6 +140,8 @@ sources = """ job.cc job_manager.cc j2k_encoder.cc + j2k_encoder_thread.cc + j2k_sync_encoder_thread.cc json_server.cc kdm_cli.cc kdm_recipient.cc @@ -163,6 +167,7 @@ sources = """ referenced_reel_asset.cc release_notes.cc render_text.cc + remote_j2k_encoder_thread.cc resampler.cc resolution.cc rgba.cc |
