diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-09-16 11:07:13 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-09-16 11:07:13 +0200 |
commit | 5861b2783c0615345b80a93470312b36d1cb9907 (patch) | |
tree | 42ded4821e0834063449a5620a1b46bc6f1e509b /package/mplayer/patches/patch-libao2_ao_alsa_c | |
parent | e3d296fa18ef060fad7e654cd9308e57ffd0934b (diff) | |
parent | d8a75c17f7cb861b42f327afc9a9ec3901133d2c (diff) |
fix conflict
Diffstat (limited to 'package/mplayer/patches/patch-libao2_ao_alsa_c')
-rw-r--r-- | package/mplayer/patches/patch-libao2_ao_alsa_c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/mplayer/patches/patch-libao2_ao_alsa_c b/package/mplayer/patches/patch-libao2_ao_alsa_c new file mode 100644 index 000000000..26d0832dc --- /dev/null +++ b/package/mplayer/patches/patch-libao2_ao_alsa_c @@ -0,0 +1,14 @@ +--- mplayer-1.0-32749.orig/libao2/ao_alsa.c 2011-01-03 11:26:52.000000000 +0100 ++++ mplayer-1.0-32749/libao2/ao_alsa.c 2011-09-14 20:52:35.457990653 +0200 +@@ -760,8 +760,9 @@ static int play(void* data, int len, int + { + int num_frames; + snd_pcm_sframes_t res = 0; +- if (!(flags & AOPLAY_FINAL_CHUNK)) +- len = len / ao_data.outburst * ao_data.outburst; ++ // SIGFPE on Sharp Zaurus ARM CPU ++ //if (!(flags & AOPLAY_FINAL_CHUNK)) ++ // len = len / ao_data.outburst * ao_data.outburst; + num_frames = len / bytes_per_sample; + + //mp_msg(MSGT_AO,MSGL_ERR,"alsa-play: frames=%i, len=%i\n",num_frames,len); |