diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-03 02:02:53 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-04 20:48:35 +0200 |
| commit | 4b8b74ae8ae721f2fbf317f1d7ce5be6048ae1b0 (patch) | |
| tree | 657138b1d1254363719f674230bb41b26d2cd311 /test | |
| parent | 8d9e73b753ed51067d93aa377bb24400ff22936e (diff) | |
Move chain to the Interop/SMPTE metadata.
Diffstat (limited to 'test')
| -rw-r--r-- | test/isdcf_name_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/isdcf_name_test.cc b/test/isdcf_name_test.cc index 54b9a24d7..c559e433f 100644 --- a/test/isdcf_name_test.cc +++ b/test/isdcf_name_test.cc @@ -143,7 +143,7 @@ BOOST_AUTO_TEST_CASE (isdcf_name_test) film->set_pre_release (true); film->set_red_band (true); film->set_two_d_version_of_three_d (true); - m.chain = "MyChain"; + film->set_chain (string("MyChain")); m.mastered_luminance = "4fl"; film->set_isdcf_metadata (m); film->set_video_frame_rate (48); @@ -156,7 +156,7 @@ BOOST_AUTO_TEST_CASE (isdcf_name_test) film->set_pre_release (false); film->set_red_band (false); film->set_two_d_version_of_three_d (false); - m.chain = ""; + film->set_chain (string("")); m.mastered_luminance = ""; film->set_isdcf_metadata (m); film->set_video_frame_rate (24); |
