update export dialog to use higher quality parameters

Since the backend parameters were hardcoded not too long ago, for testing the
parameters had to equal the backend parameters. Now that they are not hardcoded
we can use higher quality parameters in export contexts.
This commit is contained in:
itsmattkc
2019-12-20 04:41:26 +11:00
parent 1b844fb760
commit 15e01c9452
+1 -2
View File
@@ -179,8 +179,7 @@ void ExportDialog::accept()
dest_height);
// FIXME: Hardcoded pixel format
//VideoRenderingParams video_render_params(dest_width, dest_height, 0, olive::PIX_FMT_RGBA32F, olive::kOnline);
VideoRenderingParams video_render_params(dest_width, dest_height, 0, olive::PIX_FMT_RGBA16F, olive::kOffline, 2);
VideoRenderingParams video_render_params(dest_width, dest_height, rational(), olive::PIX_FMT_RGBA32F, olive::kOnline);
ColorProcessorPtr color_processor = ColorProcessor::Create(color_manager_->GetConfig(),
OCIO::ROLE_SCENE_LINEAR,