3

我有一小段 C++ 代码,它试图打开一个 ogg/opus 编码文件并使用 opus API 来使用函数 opus_decode() 对其进行解码。问题是,我为相同的声音所做的 opus_decode() 调用几乎有一半返回负(错误)代码。-4 和 -2(无效的包和缓冲区太短)我无法解决。输出就像

N 解码:960 N 解码:-4 N 解码:-4 N 解码:960 N 解码:-4 N 解码:1920 N 解码:960 N 解码:-4 N 解码:-4

等等。

#include <string.h>
#include <opus/opus.h>
#include <stdio.h>
#include <stdlib.h>
#include <cstdio>
#include <iostream>
#include <fstream>

#define LEN 1024
#define FREQ 48000
#define CHANNELS 1
#define FRAMESIZE 1920

int main(int argc, char *argv[]) {

    int size = opus_decoder_get_size(CHANNELS);

    OpusDecoder *decoders = (OpusDecoder*)malloc(size);
    int error = opus_decoder_init(decoders, FREQ, CHANNELS);

    std::ifstream inputfile;
    inputfile.open("/home/vir/Descargas/detodos.opus"); //48000Hz, Mono

    char input[LEN];

    opus_int16 *data = (opus_int16*)calloc(CHANNELS*FRAMESIZE,sizeof(opus_int16));


    if(inputfile.is_open())
        while (!inputfile.eof()) {

            inputfile >> input;         

            std::cerr << "N decoded: " << opus_decode(decoders, (const unsigned char*)&input[0], LEN, data, FRAMESIZE, 0)  << "\n";

        }


    return error;
}
4

1 回答 1

7

看来您使用的是 Opus-Tools 而不是 OpusFile。显然,您已经链接到libopus.a库,但您还需要下载并构建 OpusFile 0.7 并将您的程序链接libopusfile.a到从构建 OpusFile 中创建的程序。opusfile.h从 OpusFile 0.7包含在您的程序中。最后,您需要通过从xiph.org/downloads下载 libogg 1.3.2并链接到该库来下载并构建 libogg 库。

此链接是解释如何打开和关闭 ogg opus 流进行解码的文档。

确保您有一个 ogg opus 文件并使用...打开流

OggOpusFile *file = op_open_file(inputfile, error)(inputfile is char* inputfile and error is an int pointer)

用 关闭流op_free(file)。这是实际解码 ogg opus 流的函数文档。在调用 op_free 之前,使用...解码音频数据

op_read(file,buffer,bufferSize,null), buffer is opus_int16 pcm[120*48*2]

bufferSizesizeof(pcm)/sizeof(*pcm)op_read将解码更多的文件,所以把它放在一个for循环中,直到op_read返回0

于 2016-08-30T02:22:10.457 回答