diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-09-24 00:34:15 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-16 02:07:38 +0100 |
| commit | 0cd87b0438427c02fec78c819adec96b05416d80 (patch) | |
| tree | b4649bdc221672095304e9abd5a9dc5e27bb3334 /src/lib/wscript | |
| parent | 301fd6b621d8ca44e27862ee4e5dc5b15597538b (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 dad8947b1..e0cfaa79c 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 |
