blob: 46d22f7f89cdeddda03bb66e7d2bddc86c03e4d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
package com.tightvnc.decoder;
import com.tightvnc.vncviewer.RecordInterface;
import com.tightvnc.vncviewer.RfbInputStream;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.ColorModel;
import java.awt.image.DirectColorModel;
import java.awt.image.MemoryImageSource;
import java.awt.Color;
public class RawDecoder {
public RawDecoder(Graphics g, RfbInputStream is) {
setGraphics(g);
setRfbInputStream(is);
cm24 = new DirectColorModel(24, 0xFF0000, 0x00FF00, 0x0000FF);
}
public RawDecoder(Graphics g, RfbInputStream is, int frameBufferW,
int frameBufferH) {
setGraphics(g);
setRfbInputStream(is);
setFrameBufferSize(frameBufferW, frameBufferH);
cm24 = new DirectColorModel(24, 0xFF0000, 0x00FF00, 0x0000FF);
}
public void setRfbInputStream(RfbInputStream is) {
rfbis = is;
}
public void setGraphics(Graphics g) {
graphics = g;
}
public void setBPP(int bpp) {
bytesPerPixel = bpp;
}
public int getBPP() {
return bytesPerPixel;
}
public void setFrameBufferSize(int w, int h) {
framebufferWidth = w;
framebufferHeight = h;
}
protected int bytesPerPixel = 4;
protected int framebufferWidth = 0;
protected int framebufferHeight = 0;
protected RfbInputStream rfbis = null;
protected Graphics graphics = null;
protected RecordInterface rec = null;
protected static byte []pixels8 = null;
protected static int []pixels24 = null;
protected static MemoryImageSource pixelsSource = null;
protected static Image rawPixelsImage = null;
private static ColorModel cm8 = null;
private static ColorModel cm24 = null;
private static Color []color256 = null;
}
|