summaryrefslogtreecommitdiff
path: root/test/ffmpeg_encoder_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-06-12 22:32:30 +0200
committerCarl Hetherington <cth@carlh.net>2022-06-12 22:32:34 +0200
commit1c57df596882f15403ee97d01862f8b76cfb797b (patch)
tree2ba7bf92d0de90cd4469e4b16802fd7394994f33 /test/ffmpeg_encoder_test.cc
parent59209af1e2d73334ff7dfe6c7da465293dc24c0b (diff)
Add Prores 4444 support (#2263).
Diffstat (limited to 'test/ffmpeg_encoder_test.cc')
-rw-r--r--test/ffmpeg_encoder_test.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/ffmpeg_encoder_test.cc b/test/ffmpeg_encoder_test.cc
index ff730ad53..c85eb6bd4 100644
--- a/test/ffmpeg_encoder_test.cc
+++ b/test/ffmpeg_encoder_test.cc
@@ -57,8 +57,12 @@ ffmpeg_content_test (int number, boost::filesystem::path content, ExportFormat f
name += "h264";
extension = "mp4";
break;
+ case ExportFormat::PRORES_4444:
+ name += "prores-444";
+ extension = "mov";
+ break;
case ExportFormat::PRORES_HQ:
- name += "prores";
+ name += "prores-hq";
extension = "mov";
break;
case ExportFormat::SUBTITLES_DCP: