== SEQUENCER ==

This fixes 

[#18079] Sequencer color correction does not apply on float image if "make float" is not applied

and closes

[#18582] bug fix #18079

by removing ibuf->rect on image load if ibuf->rect_float is used.
(Don't know, why the OpenEXR loader does that, but I fix this on sequencer
side for now...)
This commit is contained in:
Peter Schlaile
2009-04-23 06:07:51 +00:00
parent 073abf7047
commit ad8e98bccd

View File

@@ -1761,6 +1761,11 @@ static void do_build_seq_ibuf(Sequence * seq, TStripElem *se, int cfra,
if (!se->ibuf) {
se->ibuf= IMB_loadiffname(
name, IB_rect);
/* we don't need both (speed reasons)! */
if (se->ibuf->rect_float && se->ibuf->rect) {
imb_freerectImBuf(se->ibuf);
}
copy_to_ibuf_still(seq, se);
}
@@ -1791,6 +1796,12 @@ static void do_build_seq_ibuf(Sequence * seq, TStripElem *se, int cfra,
if(seq->anim) {
IMB_anim_set_preseek(seq->anim, seq->anim_preseek);
se->ibuf = IMB_anim_absolute(seq->anim, se->nr + seq->anim_startofs);
/* we don't need both (speed reasons)! */
if (se->ibuf->rect_float
&& se->ibuf->rect) {
imb_freerectImBuf(se->ibuf);
}
}
copy_to_ibuf_still(seq, se);
}