oiio: no need to perform explicit seek_subimage #547

pull/555/head
nick black 4 years ago
parent 294e8fd90a
commit 86ec4af810
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -105,14 +105,16 @@ ncvisual* ncvisual_open_plane(notcurses* nc, const char* filename,
}
nc_err_e ncvisual_decode(ncvisual* nc){
//fprintf(stderr, "current subimage: %d frame: %p\n", nc->image->current_subimage(), nc->frame.get());
const auto &spec = nc->image->spec_dimensions(nc->framenum);
OIIO::ImageSpec newspec;
/* OIIO::ImageSpec newspec;
if(nc->frame){
fprintf(stderr, "seeking subimage: %d\n", nc->image->current_subimage() + 1);
if(!nc->image->seek_subimage(nc->image->current_subimage() + 1, 0, newspec)){
return NCERR_EOF;
}
// FIXME check newspec vis-a-vis image->spec()
}
}*/
//fprintf(stderr, "SUBIMAGE: %d\n", nc->image->current_subimage());
nc->did_scaling = false;
auto pixels = spec.width * spec.height;// * spec.nchannels;

Loading…
Cancel
Save