1. 18 9月, 2009 8 次提交
  2. 14 9月, 2009 3 次提交
  3. 13 9月, 2009 2 次提交
  4. 12 9月, 2009 6 次提交
  5. 11 9月, 2009 2 次提交
  6. 02 9月, 2009 1 次提交
  7. 26 8月, 2009 1 次提交
  8. 13 8月, 2009 1 次提交
    • M
      Fix typo · 197bc219
      malc 提交于
      197bc219
  9. 12 8月, 2009 5 次提交
  10. 01 8月, 2009 1 次提交
  11. 30 7月, 2009 1 次提交
    • B
      alsa: add host suspend/resume support · 86635821
      Bjørn Mork 提交于
      Both input and output streams may be in SND_PCM_STATE_SUSPENDED
      after the host is suspended and resumed, meaning "Hardware is
      suspended".  snd_pcm_readi() and snd_pcm_writei() will return
      -ESTRPIPE if called while the stream is in this state.
      
      Call snd_pcm_resume() to enable audio output and capture after
      host resume.
      Signed-off-by: NBjørn Mork <bjorn@mork.no>
      Signed-off-by: Nmalc <av1474@comtv.ru>
      86635821
  12. 28 7月, 2009 2 次提交
  13. 24 7月, 2009 1 次提交
  14. 22 7月, 2009 1 次提交
  15. 17 7月, 2009 1 次提交
    • M
      Ignore -Waddress for alsaaudio.c · 2637872b
      malc 提交于
      /usr/include/alsa/pcm.h contains:
      
      #define snd_pcm_sw_params_alloca(ptr) do { assert(ptr); *ptr = (snd_pcm_sw_params_t *) alloca(snd_pcm_sw_params_sizeof()); memset(*ptr, 0, snd_pcm_sw_params_sizeof()); } while (0)
      
      The assert generates: "error: the address of 'sw_params' will always
      evaluate as 'true'" which combined with -Werror prevents alsaaudio.o
      from being built with certain versions of GCC.
      2637872b
  16. 19 6月, 2009 2 次提交
  17. 14 5月, 2009 1 次提交
  18. 12 5月, 2009 1 次提交
    • P
      Make AUD_init failure fatal · 0d9acba8
      Paul Brook 提交于
      Failure to initialize the audio subsystem is not handled consistently.
      Where it is handled it has guest visible effects, which is wrong.
      We already have a "nosound" audio driver as a last resort, so trying to
      proceed without an audio backend seems pointless.
      
      Also protect against multiple calls to AUD_init so that this can be
      pushed down into individual devices.
      Signed-off-by: NPaul Brook <paul@codesourcery.com>
      0d9acba8