You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RawDecoder.java 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
  2. * Copyright (C) 2019 Brian P. Hinz
  3. *
  4. * This is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This software is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this software; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
  17. * USA.
  18. */
  19. package com.tigervnc.rfb;
  20. import com.tigervnc.rdr.*;
  21. public class RawDecoder extends Decoder {
  22. public RawDecoder() { super(DecoderFlags.DecoderPlain); }
  23. public void readRect(Rect r, InStream is,
  24. ServerParams server, OutStream os)
  25. {
  26. os.copyBytes(is, r.area() * server.pf().bpp/8);
  27. }
  28. static LogWriter vlog = new LogWriter("RawDecoder");
  29. public void decodeRect(Rect r, Object buffer,
  30. int buflen, ServerParams server,
  31. ModifiablePixelBuffer pb)
  32. {
  33. assert(buflen >= r.area() * server.pf().bpp/8);
  34. pb.imageRect(server.pf(), r, (byte[])buffer);
  35. }
  36. }