1 /*
2 Copyright (c) 2003-2010 Sony Pictures Imageworks Inc., et al.
3 All Rights Reserved.
4 
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions are
7 met:
8 * Redistributions of source code must retain the above copyright
9   notice, this list of conditions and the following disclaimer.
10 * Redistributions in binary form must reproduce the above copyright
11   notice, this list of conditions and the following disclaimer in the
12   documentation and/or other materials provided with the distribution.
13 * Neither the name of Sony Pictures Imageworks nor the names of its
14   contributors may be used to endorse or promote products derived from
15   this software without specific prior written permission.
16 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28 
29 package org.OpenColorIO;
30 import org.OpenColorIO.*;
31 import java.nio.FloatBuffer;
32 
33 public class PackedImageDesc extends ImageDesc
34 {
PackedImageDesc(FloatBuffer data, long width, long height, long numChannels)35     public PackedImageDesc(FloatBuffer data, long width, long height, long numChannels)
36     {
37         super();
38         create(data, width, height, numChannels);
39     }
PackedImageDesc(FloatBuffer data, long width, long height, long numChannels, long chanStrideBytes, long xStrideBytes, long yStrideBytes)40     public PackedImageDesc(FloatBuffer data, long width, long height, long numChannels,
41                            long chanStrideBytes, long xStrideBytes, long yStrideBytes)
42     {
43         super();
44         create(data, width, height, numChannels, chanStrideBytes, xStrideBytes, yStrideBytes);
45     }
PackedImageDesc(long impl)46     protected PackedImageDesc(long impl) { super(impl); }
create(FloatBuffer data, long width, long height, long numChannels)47     protected native void create(FloatBuffer data, long width, long height, long numChannels);
create(FloatBuffer data, long width, long height, long numChannels, long chanStrideBytes, long xStrideBytes, long yStrideBytes)48     protected native void create(FloatBuffer data, long width, long height, long numChannels,
49                                  long chanStrideBytes, long xStrideBytes, long yStrideBytes);
dispose()50     public native void dispose();
finalize()51     protected void finalize() { dispose(); }
getData()52     public native FloatBuffer getData();
getWidth()53     public native long getWidth();
getHeight()54     public native long getHeight();
getNumChannels()55     public native long getNumChannels();
getChanStrideBytes()56     public native long getChanStrideBytes();
getXStrideBytes()57     public native long getXStrideBytes();
getYStrideBytes()58     public native long getYStrideBytes();
59 };
60