- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
谁能给我解释一下这是为什么:
unsigned char * buf;
buf = new unsigned char[dataSize];
我的 C++ 程序崩溃了吗?它没有给我任何错误,所以我真的不知道我的程序由于这些代码行而崩溃的原因。提前致谢!
编辑:这是我目前正在处理的项目的代码,它使用的是 OpenAL,因此如果您想重新编译代码,您将需要它。
#include <cstdlib>
#include <iostream>
#include <Windows.h>
#include <al.h>
#include <alc.h>
#include <vector>
using namespace std;
class SoundSource
{
public:
ALuint Source;
ALuint buffer;
ALuint frequency;
ALenum format;
//position
ALfloat sourcePos[3];
ALfloat sourceVel[3];
};
ALCcontext * Context;
ALCdevice * Device;
SoundSource sound;
int endWithError(char * msg, int error = 0)
{
cout << msg << endl;
while(cin.get() != 10);
return error;
}
bool initSound()
{
Device = alcOpenDevice((ALCchar*)"DirectSound3D");
if(Device == NULL)
return false;
else
{
Context = alcCreateContext(Device,NULL);
alcMakeContextCurrent(Context);
alGetError();
return true;
}
return false;
}
string loadSound(SoundSource s)
{
char type[4];
DWORD size, chunkSize;
short formatType, channels;
DWORD sampleRate, avgBytesPerSec;
short bytesPerSample, bitsPerSample;
DWORD dataSize;
FILE * fp = NULL;
fp = fopen("test.wav","rb");
fread(type, sizeof(char), 4, fp);
if(!strcmp(type, "RIFF"))
endWithError("Error: Not RIFF format");
fread(&size, sizeof(DWORD), 1, fp);
fread(type, sizeof(char), 4, fp);
if(!strcmp(type, "WAVE"))
endWithError("Error: Not WAVE format");
fread(type, sizeof(char), 4, fp);
if(!strcmp(type, "fmt "))
endWithError("Error: Not fmt format");
fread(&chunkSize, sizeof(DWORD), 1, fp);
fread(&formatType, sizeof(short), 1, fp);
fread(&channels, sizeof(short), 1, fp);
fread(&sampleRate, sizeof(DWORD), 1, fp);
fread(&avgBytesPerSec, sizeof(DWORD), 1, fp);
fread(&bytesPerSample, sizeof(short), 1, fp);
fread(&bitsPerSample, sizeof(short), 1, fp);
cout << "Chuck size: " << chunkSize << endl;
cout << "Format type: " << formatType << endl;
cout << "Channels: " << channels << endl;
cout << "Sample rate: " << sampleRate << endl;
cout << "Avg Bytes per sec: " << avgBytesPerSec << endl;
cout << "Bytes per sample: " << bytesPerSample << endl;
cout << "Bits per sample: " << bitsPerSample << endl;
fread(type, sizeof(char), 4, fp);
if(!strcmp(type, "data"))
endWithError("Error: No data");
fread(&dataSize, sizeof(DWORD), 1, fp);
unsigned char * buf;
buf = new unsigned char[dataSize];
fread(buf, sizeof(BYTE), dataSize, fp);
alGenBuffers(1, &s.buffer);
alGenSources(1, &s.Source);
switch(bitsPerSample)
{
//8 bit
case 8:
{
switch(channels)
{
case 1: s.format = AL_FORMAT_MONO8; break;
case 2: s.format = AL_FORMAT_STEREO8; break;
}
}
//16 bit
case 16:
{
switch(channels)
{
case 1: s.format = AL_FORMAT_MONO16; break;
case 2: s.format = AL_FORMAT_STEREO16; break;
}
}
}
alBufferData(s.buffer, s.format, (ALvoid *)buf, dataSize, s.frequency);
s.sourcePos[0] = 0.0;
s.sourcePos[1] = 0.0;
s.sourcePos[2] = 0.0;
s.sourceVel[0] = 0.0;
s.sourceVel[1] = 0.0;
s.sourceVel[2] = 0.0;
fclose(fp);
//delete[] buf;
return "WAVE successfully loaded!";
}
void closeSound()
{
alDeleteSources(1, &sound.Source);
alDeleteBuffers(1, &sound.buffer);
Context = alcGetCurrentContext();
Device = alcGetContextsDevice(Context);
alcMakeContextCurrent(NULL);
alcDestroyContext(Context);
alcCloseDevice(Device);
cout << "OpenAL sound closed!" << endl;
}
int main()
{
string result;
if(initSound())
{
cout << "Sound Context and Device up!" << endl;
result = loadSound(sound);
cout << result.c_str() << endl;
alSourcePlay(sound.Source);
system("PAUSE");
}
else
{
{
cout << "Sound Context and Device not made.." << endl;
system("PAUSE");
}
}
closeSound();
return 0;
}
最佳答案
// replace this
if(!strcmp(type, "XXXX"))
endWithError("Error: Not RIFF format");
// with this
if(!memcmp(type, "XXXX", 4))
endWithError("Error: Not RIFF format");
因为类型没有\0终止
fread(&chunkSize, sizeof(DWORD), 1, fp);
提示:使用 sizeof(变量名) 而不是 sizeof(type)例如 fread(&chunkSize, sizeof(chunkSize), 1, fp);
如果您以后出于某种原因需要更改变量类型,它可能不会在您面前爆炸
fread(&dataSize, sizeof(DWORD), 1, fp);
unsigned char * buf;
buf = new unsigned char[dataSize];
fread(buf, sizeof(BYTE), dataSize, fp);
永远不要假设您读入的内容是正确的,而是在分配之前检查 dataSize 是多少。
避免使用全局变量也是一个好主意,您可以轻松地创建一个包含所需变量的结构并从函数中返回它
struct context_t // or whatever u want to call it
{
ALCcontext * Context;
ALCdevice * Device;
};
bool initSound(context_t & c) {}
void closeSound(context_t & c) {}
int main()
{
context_t context;
if (initSound(context))
{
...
}
..
closeSound(context);
关于c++ - 使用动态无符号字符数组时发生未知崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11963086/
给定一个字符串,例如 s="##$$$#",我如何找到索引之前的“#”符号数等于“”数的索引$"符号在索引之后? 示例:如果 s="##$$$#",则输出将为 2。 解释:在索引 2 之前我们有 2
在本教程中,您将借助示例了解 JavaScript 符号。 JavaScript 符号 JavaScript ES6 引入了一种新的原始数据类型,称为 Symbol(符号)。符号是不可变的(不能更改)
在“函数编程的工艺”一书中,符号 '>.>' 将函数连接在一起,与 '.' 的方向相反。但是当我使用 ghci 实现它时,它显示了超出范围的错误 '>.>'。为什么?它是不再使用的旧符号吗? 最佳答案
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我需要从向量中删除 \"。这是我的数据: data <- c("\"https://click.linksynergy.com/link?id=RUxZriH*PWc&offerid=323058.1
我在 Nginx 配置中使用正则表达式来捕获文件 URL,但如果文件 URL 包含 # 符号,正则表达式模式将不会捕获它。 这里是nginx的配置部分。 location ~ ^/p/(?[\w\-=
如何使 & 符号在此图表的第一组条形/列下正确显示: http://jsfiddle.net/VxbrK/2/ 应该是“Apples & Oranges”而不是“Apples & Oranges”。
**在verilog中是什么意思? 我为测试台提供了以下逻辑 localparam NUM_INPUT_BITS = 1; localparam NUM_OUTPUT_BITS
我有一个使用正则表达式来验证电子邮件地址的方法。 public String searchFormail(String searchWord) { Pattern pattern = Patt
我想将一个字符串拆分为数字部分和文本/符号部分我当前的代码不包含负数或小数,并且表现得很奇怪,在输出的末尾添加了一个空列表元素 import re mystring = 'AD%5(6ag 0.33-
我有一些代码需要从数组中选择一个随机字符串,但它一直返回单个字母或数字。如何解决这个问题? var name = ["Yayek", "Vozarut", "Gezex",
我刚开始使用 Python,我在考虑应该使用哪种表示法。我读过 PEP 8关于 Python 符号的指南,我同意那里的大多数内容,除了函数名称(我更喜欢混合大小写风格)。 在 C++ 中,我使用匈牙利
在用 C# 编写代码时,我错误地在 if 语句中的变量前添加了一个符号(而不是感叹号)。 bool b = false; if (@b) { } 我很惊讶它编译成功,没有任何错误。 我想知道:上面的代
本文实例为大家分享了特殊字符替换电话号码中某一部分的方法,ios利用-号替换电话号码中间四位,供大家参考,具体内容如下 1、效果图 2、代码 rootviewcontroll
当我使用“x”和“z”作为符号时,这段代码没有问题: from sympy import * x, z = symbols('x z') y = -6*x**2 + 2*x*z**0.5 + 50*x
我需要从文本中删除标点符号: data <- "Type the command AT&W enter. in order to save the new protocol on modem;"
我有几个数字是 numeric 类。下面的例子。 df = c(12974,12412,124124,124124,34543,4576547,32235) 现在我想在每个数字前添加 '$' 符号而不
我有一个 highcharts 图例,其中符号以不同的大小显示,因为它们在实际图表中的大小不同。不幸的是,当数据点的大小增加时,它们也会在图例中增加。无论数据点大小如何,我都希望图例符号保持相同的大小
我需要使用包含平均值+-SD的标题。到目前为止,我只能得到以下信息: "Mean +- SD or N (%)" [1] "Mean +- SD or N (%)" 如何直接使用“+-”符号?您知道一
使用 XSLT 和 XPath 1.0,我有一个要转义的字符串以用于 URL,例如: one word & another 因此,描述元素的 text() 应该进行 URL 转义。 我该怎么做
我是一名优秀的程序员,十分优秀!