Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 1st, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #ifndef FORMAT_H
  2. #define FORMAT_H
  3.  
  4. struct format_info;
  5. typedef struct format_info format_info_t;
  6.  
  7. struct format_info {
  8.         int channels;
  9.         int rate;
  10.         int bytes_sample;
  11. };
  12.  
  13. #endif