我有一小段 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;
}