#ifndef ka_ainfo_h
#define ka_ainfo_h

#include "inttypes.h"

typedef struct
{
  const char* audiotype // Audio type decriptor
  uint32_t channels;
  uint32_t samplerate;  // in Hz
  uint32_t bitrate;     // in Kb/s
} ka_ainfo_t;

#endif
