jdk/src/share/classes/sun/awt/image/JPEGImageDecoder.java
changeset 25103 4dcb7cd7652e
parent 24538 25bf8153fbfe
equal deleted inserted replaced
25102:669df2eb0922 25103:4dcb7cd7652e
    54 
    54 
    55     static {
    55     static {
    56         java.security.AccessController.doPrivileged(
    56         java.security.AccessController.doPrivileged(
    57             new java.security.PrivilegedAction<Void>() {
    57             new java.security.PrivilegedAction<Void>() {
    58                 public Void run() {
    58                 public Void run() {
    59                     System.loadLibrary("jpeg");
    59                     System.loadLibrary("javajpeg");
    60                     return null;
    60                     return null;
    61                 }
    61                 }
    62             });
    62             });
    63         initIDs(InputStreamClass);
    63         initIDs(InputStreamClass);
    64         RGBcolormodel = new DirectColorModel(24, 0xff0000, 0xff00, 0xff);
    64         RGBcolormodel = new DirectColorModel(24, 0xff0000, 0xff00, 0xff);