(int first, int last, FileInfo fi)
| 736 | } |
| 737 | |
| 738 | void getLuts(int first, int last, FileInfo fi) throws IOException { |
| 739 | fi.channelLuts = new byte[last-first+1][]; |
| 740 | int index = 0; |
| 741 | for (int i=first; i<=last; i++) { |
| 742 | int len = metaDataCounts[i]; |
| 743 | fi.channelLuts[index] = new byte[len]; |
| 744 | in.readFully(fi.channelLuts[index], len); |
| 745 | index++; |
| 746 | } |
| 747 | } |
| 748 | |
| 749 | void getRoi(int first, FileInfo fi) throws IOException { |
| 750 | int len = metaDataCounts[first]; |