summaryrefslogtreecommitdiff
path: root/test/ffmpeg_encoder_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-06-24 23:01:13 +0200
committerCarl Hetherington <cth@carlh.net>2024-06-24 23:01:13 +0200
commit6675bba6ab7d5cee50fa4d8c892af69d054c6804 (patch)
treefeee88dc93797235a1b19d02851f93a3161c1851 /test/ffmpeg_encoder_test.cc
parentcb6b0865614761df9c0ecc0f9dabc6b41de65659 (diff)
Add ProRes LT export option (#2834).
Diffstat (limited to 'test/ffmpeg_encoder_test.cc')
-rw-r--r--test/ffmpeg_encoder_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ffmpeg_encoder_test.cc b/test/ffmpeg_encoder_test.cc
index b42ff92d8..0a48cd745 100644
--- a/test/ffmpeg_encoder_test.cc
+++ b/test/ffmpeg_encoder_test.cc
@@ -69,6 +69,10 @@ ffmpeg_content_test (int number, boost::filesystem::path content, ExportFormat f
name += "prores-hq";
extension = "mov";
break;
+ case ExportFormat::PRORES_LT:
+ name += "prores-lt";
+ extension = "mov";
+ break;
case ExportFormat::SUBTITLES_DCP:
BOOST_REQUIRE (false);
}