English 中文(简体)
为什么本地的libmpg123 这么长时间 和libgdx在一起?
原标题:Why is native libmpg123 taking so long on android with libgdx?

我试图使用 gdx- audio 扩展, 但无法解码 mp3 。 它有效, 但非常慢!! 一个 10 秒的文件需要 6. 57 秒才能解码 : (这里的方法是 :

public void decode() {
    Mpg123Decoder decoder = new Mpg123Decoder(externalFile);

    short[] sampleArray = new short[1024];

    // read until we reach the end of the file
    while (decoder.readSamples(sampleArray, 0, sampleArray.length) > 0) {}
}

谁能告诉我为什么这么长时间?

最佳回答

因为 libmpg123 是一个软件解码器, 它可以对 CPU 进行全部操作。 取决于您拥有的 CPU, 您通常只能得到 2x 的实时解码 。 我们还没有在 libmpg123 的构建中启用 ARM 组装, 这可以帮助它加速一点, 但通常不会太多 。

问题回答

暂无回答




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签