[BACK]Return to audioctl.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / audioctl

Diff for /src/usr.bin/audioctl/audioctl.c between version 1.28 and 1.29

version 1.28, 2015/05/26 18:17:12 version 1.29, 2015/07/28 20:51:10
Line 59 
Line 59 
   
 char encbuf[1000];  char encbuf[1000];
   
 int properties, fullduplex, perrors, rerrors;  int properties, fullduplex;
   
 struct audio_offset poffs, roffs;  struct audio_pos getpos;
   
 struct field {  struct field {
         const char *name;          const char *name;
Line 97 
Line 97 
         { "play.pause",         &info.play.pause,       UCHAR,  0 },          { "play.pause",         &info.play.pause,       UCHAR,  0 },
         { "play.active",        &info.play.active,      UCHAR,  READONLY },          { "play.active",        &info.play.active,      UCHAR,  READONLY },
         { "play.block_size",    &info.play.block_size,  UINT,   0 },          { "play.block_size",    &info.play.block_size,  UINT,   0 },
         { "play.bytes",         &poffs.samples,         INT,    READONLY },          { "play.bytes",         &getpos.play_pos,       UINT,   READONLY },
         { "play.errors",        &perrors,               INT,    READONLY },          { "play.errors",        &getpos.play_xrun,      UINT,   READONLY },
         { "record.rate",        &info.record.sample_rate,UINT,  0 },          { "record.rate",        &info.record.sample_rate,UINT,  0 },
         { "record.sample_rate", &info.record.sample_rate,UINT,  ALIAS },          { "record.sample_rate", &info.record.sample_rate,UINT,  ALIAS },
         { "record.channels",    &info.record.channels,  UINT,   0 },          { "record.channels",    &info.record.channels,  UINT,   0 },
Line 109 
Line 109 
         { "record.pause",       &info.record.pause,     UCHAR,  0 },          { "record.pause",       &info.record.pause,     UCHAR,  0 },
         { "record.active",      &info.record.active,    UCHAR,  READONLY },          { "record.active",      &info.record.active,    UCHAR,  READONLY },
         { "record.block_size",  &info.record.block_size,UINT,   0 },          { "record.block_size",  &info.record.block_size,UINT,   0 },
         { "record.bytes",       &roffs.samples,         INT,    READONLY },          { "record.bytes",       &getpos.rec_pos,        UINT,   READONLY },
         { "record.errors",      &rerrors,               INT,    READONLY },          { "record.errors",      &getpos.rec_xrun,       UINT,   READONLY },
         { 0 }          { 0 }
 };  };
   
Line 297 
Line 297 
                 err(1, "AUDIO_GETFD");                  err(1, "AUDIO_GETFD");
         if (ioctl(fd, AUDIO_GETPROPS, &properties) < 0)          if (ioctl(fd, AUDIO_GETPROPS, &properties) < 0)
                 err(1, "AUDIO_GETPROPS");                  err(1, "AUDIO_GETPROPS");
         if (ioctl(fd, AUDIO_PERROR, &perrors) < 0)          if (ioctl(fd, AUDIO_GETPROPS, &properties) < 0)
                 err(1, "AUDIO_PERROR");                  err(1, "AUDIO_GETPROPS");
         if (ioctl(fd, AUDIO_RERROR, &rerrors) < 0)  
                 err(1, "AUDIO_RERROR");  
         if (ioctl(fd, AUDIO_GETOOFFS, &poffs) < 0)  
                 err(1, "AUDIO_GETOOFFS");  
         if (ioctl(fd, AUDIO_GETIOFFS, &roffs) < 0)  
                 err(1, "AUDIO_GETOIFFS");  
         if (ioctl(fd, AUDIO_GETINFO, &info) < 0)          if (ioctl(fd, AUDIO_GETINFO, &info) < 0)
                 err(1, "AUDIO_GETINFO");                  err(1, "AUDIO_GETINFO");
           if (ioctl(fd, AUDIO_GETPOS, &getpos) < 0)
                   err(1, "AUDIO_GETPOS");
 }  }
   
 void  void

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29