Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. typedef struct header_file
  2. {
  3.     char chunk_id[4];
  4.     int chunk_size;
  5.     char format[4];
  6.     char subchunk1_id[4];
  7.     int subchunk1_size;
  8.     short int audio_format;
  9.     short int num_channels;    
  10.     int sample_rate;           
  11.     int byte_rate;
  12.     short int block_align;
  13.     short int bits_per_sample;  
  14.     char subchunk2_id[4];
  15.     int subchunk2_size;    
  16. } header;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement