Package org.bigbluebutton.deskshare.client.blocks

Examples of org.bigbluebutton.deskshare.client.blocks.Block


  }
 
  public void send(ByteArrayOutputStream videoData, boolean isKeyFrame) throws ConnectionException {
    int totalBlocks = blockManager.getColumnCount() * blockManager.getRowCount();
    for (int i = 1; i <= totalBlocks; i++) {
        Block block = blockManager.getBlock(i);
//        if (block.getEncodedBlock().length < 5) continue;
//        BlockVideoData blockData = new BlockVideoData(room, block.getPosition(), block.getEncodedBlock(), block.isKeyFrame());
//        try {
//          screenQ.put(blockData);
//        } catch (InterruptedException e) {
View Full Code Here

TOP

Related Classes of org.bigbluebutton.deskshare.client.blocks.Block

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.