Java ByteBuffer to Long readUBEInt16(ByteBuffer b)

Here you can find the source of readUBEInt16(ByteBuffer b)

Description

read UBE Int

License

Open Source License

Declaration

public static int readUBEInt16(ByteBuffer b) 

Method Source Code

//package com.java2s;
/*/*from w ww . j a v  a  2s.c  om*/
 * Entagged Audio Tag library
 * Copyright (c) 2003-2005 Rapha?l Slinckx <raphael@slinckx.net>
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *  
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 * 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

import java.nio.ByteBuffer;

public class Main {
    public static int readUBEInt16(ByteBuffer b) {
        int result = 0;
        result += readUInt8(b) << 8;
        result += readUInt8(b);
        return result;
    }

    public static int readUInt8(ByteBuffer b) {
        return read(b);
    }

    public static int read(ByteBuffer b) {
        int result = (b.get() & 0xFF);
        return result;
    }
}

Related

  1. readLong64ls(int size, ByteBuffer byteBuf)
  2. readLongArray(ByteBuffer bb)
  3. readLongLE(ByteBuffer buf, int i)
  4. readUB1(ByteBuffer buffer)
  5. readUB4(ByteBuffer buffer)
  6. readUInt16(ByteBuffer bb)
  7. readUInt16BE(ByteBuffer bb)
  8. readUInt32(ByteBuffer buf, int length)
  9. readUInt64(ByteBuffer bb)