为啥 ByteBuffer putShort(value) 的方法在我的情况下无法正常工作?

Posted

技术标签:

【中文标题】为啥 ByteBuffer putShort(value) 的方法在我的情况下无法正常工作?【英文标题】:Why method for ByteBuffer putShort(value) does not working correctly in my case?为什么 ByteBuffer putShort(value) 的方法在我的情况下无法正常工作? 【发布时间】:2017-12-20 12:22:03 【问题描述】:

我的任务是将 short[] 数组转换为 byte[] 数组,因为需要通过套接字发送字节。这是 AudioTrack (android) 的字节 对于转换使用这个post,特别是this 和this 当尝试将short转换为字节数组时,此方法只会产生白噪声:

 val sampleBuffer = decoder.decodeFrame(frameHeader, bitstream) as SampleBuffer
 val pcm = sampleBuffer.buffer //pcm is short[] array 

byteBuf = ByteBuffer.allocate(pcm.size * 2) // because 1 short = 2 bytes

while (pcm.size > i) 
   byteBuf.putShort(pcm[i]) 
   i++ 


auddioTrack.write(byteBuf.array(), 0, byteBuf.limit());

但是这个转换工作正常:

var i = 0
    val byteBuf = ByteBuffer.allocate(pcm.size * 2)
    val buff =  ByteBuffer.allocate(2)

    //pcm size equals 2304
    while (pcm.size > i) 
       // byteBuf.putShort(pcm[i])
      byteBuf.put(byteArrayOf((pcm[i].toInt() and 0x00FF).toByte(), ((pcm[i].toInt() and 0xFF00) shr (8)).toByte()))                       
     i++
    

auddioTrack.write(byteBuf.array(), 0, byteBuf.limit());

为什么会这样?

【问题讨论】:

【参考方案1】:

byteBuf.array().size 将返回缓冲区的大小 (pcm.size * 2),无论是否将这么多字节写入缓冲区。你可能想要byteBuf.limit()

【讨论】:

@Sergey pcm.size * 2 的值是多少? byteBuf.limit() 的值是多少? pcm[i]的类型是什么? type is short[] -- array ,所以当数组 short 转换为数组 byte 时,byte[] 的大小将是 size*2 @Sergey 拿一个short。通过putShort()put(byte[]) 运行它。告诉我们每个array() 的输入值和输出值。 以后再做吧,现在没时间了。需要工作,对不起))

以上是关于为啥 ByteBuffer putShort(value) 的方法在我的情况下无法正常工作?的主要内容,如果未能解决你的问题,请参考以下文章

字节缓冲区替代

为啥 ByteBuffer.allocate() 和 ByteBuffer.allocateDirect() 之间的奇怪性能曲线差异

为啥 ByteBuffer 不保留 putDouble 和 getDouble 的索引?

为啥websocket传不了bytebuffer

为啥我不能将字符串添加到 ByteBuffer?

为啥我们可以直接在ByteBuffer中分配字节而不在FloatBuffer中分配浮点数