В сообщении от Tuesday 17 March 2020 17:21:59 Phyllis Smith написал(а): > Oh, sorry. I did not read your email correctly. > > Look at formattools.C === use_brender > And at formatpopup.C > > If you need more information, let me know as GG had a lot more to say but I > could not understand it well enough to pass it along.
Done, while I can't see any speed increase, even with jpeg (with fullHD h264 video + blur effect, and rgba-float project format :} ) > > > On Mon, Mar 16, 2020 at 10:52 PM Andrew Randrianasulu < > [email protected]> wrote: > > > В сообщении от Tuesday 17 March 2020 02:30:15 Phyllis Smith написал(а): > > > EXR and EXR Sequence is already available and is the OpenEXR version > > > 2.2.1. You will see it after GIF and GIF Sequence. GG does not have any > > > plans to upgrade EXR from 2.2.1 to the current 2.4 version because of the > > > compilation problem on older distros for the monthly builds. > > > > Yes, I can _render_ to them, but in Preferences there is *Background* > > render, > > where I can choose all those image sequence types BUT OpenEXR. > > > > Of course, right now OpenEXR is too slow for this role for big images > > (fullHD+), IMO, > > but ...I just curious where this difference coded? > > > > > > > > > > > On Mon, Mar 16, 2020 at 1:16 PM Andrew Randrianasulu < > > > [email protected]> wrote: > > > > > > > I was completely unable to find where this list is saved or generated > > :/ > > > > > > > > I can see JPEG/PPM/PNG/TIFF/TGA .. But how to add (say) openEXR there? > > In > > > > theory > > > > this format was already marked as is_image_render in file.C: > > > > > > > > > > > > > > > > int File::is_image_render(int format) > > > > { > > > > switch( format ) { > > > > case FILE_EXR: > > > > case FILE_JPEG: > > > > case FILE_PNG: > > > > case FILE_PPM: > > > > case FILE_TGA: > > > > case FILE_TIFF: > > > > return 1; > > > > } > > > > > > > > return 0; > > > > } > > > > > > > > ? > > > > -- > > > > Cin mailing list > > > > [email protected] > > > > https://lists.cinelerra-gg.org/mailman/listinfo/cin > > > > > > > > > > > > > -- > > Cin mailing list > > [email protected] > > https://lists.cinelerra-gg.org/mailman/listinfo/cin > > >
diff --git a/cinelerra-5.1/cinelerra/formatpopup.C b/cinelerra-5.1/cinelerra/formatpopup.C index addd4a2..dc1e951 100644 --- a/cinelerra-5.1/cinelerra/formatpopup.C +++ b/cinelerra-5.1/cinelerra/formatpopup.C @@ -92,7 +92,10 @@ void FormatPopup::create_objects() if(!use_brender) post_item(FILE_TIFF); post_item(FILE_TIFF_LIST); - +#ifdef HAVE_OPENEXR + if(use_brender) + post_item(FILE_EXR_LIST); +#endif update(&format_items, 0, 0, 1); }
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

