patch-libao2_ao_alsa_c 618 B

1234567891011121314
  1. --- mplayer-1.0-32749.orig/libao2/ao_alsa.c 2011-01-03 11:26:52.000000000 +0100
  2. +++ mplayer-1.0-32749/libao2/ao_alsa.c 2011-09-14 20:52:35.457990653 +0200
  3. @@ -760,8 +760,9 @@ static int play(void* data, int len, int
  4. {
  5. int num_frames;
  6. snd_pcm_sframes_t res = 0;
  7. - if (!(flags & AOPLAY_FINAL_CHUNK))
  8. - len = len / ao_data.outburst * ao_data.outburst;
  9. + // SIGFPE on Sharp Zaurus ARM CPU
  10. + //if (!(flags & AOPLAY_FINAL_CHUNK))
  11. + // len = len / ao_data.outburst * ao_data.outburst;
  12. num_frames = len / bytes_per_sample;
  13. //mp_msg(MSGT_AO,MSGL_ERR,"alsa-play: frames=%i, len=%i\n",num_frames,len);