Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

gcc 4.4.2 c89

I have a wave file: 8000 Hz 16 bit

I am wondering if there anyway I can load the raw data of this wave file into a buffer.

Many thanks for any advice

share|improve this question
How is it different from loading any file into a buffer? – Alok Mar 4 '10 at 4:22
If you want the sample data, there are fields in the header which specify the offset to the sample data and its length. – lucius Mar 4 '10 at 4:25

3 Answers

up vote 1 down vote accepted

Yes, you're looking for reading a binary file in C. Something like this:

FILE* f;
char buf[MAX_FILE_SIZE];
int n;

f = fopen("filename.bin", "rb");
if (f)
{
    n = fread(buf, sizeof(char), MAX_FILE_SIZE, f);
}
else
{
    // error opening file
}

This reads a buffer of bytes. From it you can build your data. Reading multi-byte data directly is more tricky because you run into issues of representation and endianness.

Two key C functions are used:

  • fopen that opens a file in binary mode (the "rb" flag)
  • fread that reads block data (useful for binary streams). Documented here.
share|improve this answer
Thanks. What do you mean by representation and endianness? – ant2009 Mar 4 '10 at 5:01
@robUK: I mean - how are multi-byte values stored in the memory (which is an array of bytes, basically). Endianness is an important issue you must read about - en.wikipedia.org/wiki/Endianness – Eli Bendersky Mar 5 '10 at 5:34

If you want to process the sound samples, you would be best to use a library that interprets the sound data for you. For example libsndfile.

share|improve this answer

The best way IMHO would be to use a linked list with elements holding a large(1024 or more) fixed size char arrays.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.