Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
4839abe7
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4839abe7
编写于
9月 30, 2009
作者:
M
malc
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sdlaudio: make it suck less
Signed-off-by:
N
malc
<
av1474@comtv.ru
>
上级
d6859202
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
30 addition
and
50 deletion
+30
-50
audio/sdlaudio.c
audio/sdlaudio.c
+30
-50
未找到文件。
audio/sdlaudio.c
浏览文件 @
4839abe7
...
...
@@ -41,8 +41,8 @@
typedef
struct
SDLVoiceOut
{
HWVoiceOut
hw
;
int
live
;
int
rpos
;
int
decr
;
int
pending
;
}
SDLVoiceOut
;
static
struct
{
...
...
@@ -225,6 +225,10 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len)
HWVoiceOut
*
hw
=
&
sdl
->
hw
;
int
samples
=
len
>>
hw
->
info
.
shift
;
if
(
sdl_lock
(
s
,
"sdl_callback"
))
{
return
;
}
if
(
s
->
exit
)
{
return
;
}
...
...
@@ -232,49 +236,34 @@ static void sdl_callback (void *opaque, Uint8 *buf, int len)
while
(
samples
)
{
int
to_mix
,
decr
;
/* dolog ("in callback samples=%d\n", samples); */
sdl_wait
(
s
,
"sdl_callback"
);
if
(
s
->
exit
)
{
return
;
}
if
(
sdl_lock
(
s
,
"sdl_callback"
))
{
return
;
}
if
(
audio_bug
(
AUDIO_FUNC
,
sdl
->
live
<
0
||
sdl
->
live
>
hw
->
samples
))
{
dolog
(
"sdl->live=%d hw->samples=%d
\n
"
,
sdl
->
live
,
hw
->
samples
);
return
;
}
if
(
!
sdl
->
live
)
{
goto
again
;
while
(
!
sdl
->
pending
)
{
if
(
sdl_unlock
(
s
,
"sdl_callback"
))
{
return
;
}
sdl_wait
(
s
,
"sdl_callback"
);
if
(
s
->
exit
)
{
return
;
}
if
(
sdl_lock
(
s
,
"sdl_callback"
))
{
return
;
}
sdl
->
pending
+=
sdl
->
live
;
sdl
->
live
=
0
;
}
/* dolog ("in callback live=%d\n", live); */
to_mix
=
audio_MIN
(
samples
,
sdl
->
live
);
decr
=
to_mix
;
while
(
to_mix
)
{
int
chunk
=
audio_MIN
(
to_mix
,
hw
->
samples
-
hw
->
rpos
);
struct
st_sample
*
src
=
hw
->
mix_buf
+
hw
->
rpos
;
/* dolog ("in callback to_mix %d, chunk %d\n", to_mix, chunk); */
hw
->
clip
(
buf
,
src
,
chunk
);
sdl
->
rpos
=
(
sdl
->
rpos
+
chunk
)
%
hw
->
samples
;
to_mix
-=
chunk
;
buf
+=
chunk
<<
hw
->
info
.
shift
;
}
to_mix
=
audio_MIN
(
samples
,
sdl
->
pending
);
decr
=
audio_pcm_hw_clip_out
(
hw
,
buf
,
to_mix
,
0
);
buf
+=
decr
<<
hw
->
info
.
shift
;
samples
-=
decr
;
sdl
->
live
-=
decr
;
sdl
->
decr
+=
decr
;
sdl
->
pending
-=
decr
;
}
again:
if
(
sdl_unlock
(
s
,
"sdl_callback"
))
{
return
;
}
if
(
sdl_unlock
(
s
,
"sdl_callback"
))
{
return
;
}
/* dolog ("done len=%d\n", len); */
}
static
int
sdl_write_out
(
SWVoiceOut
*
sw
,
void
*
buf
,
int
len
)
...
...
@@ -292,18 +281,9 @@ static int sdl_run_out (HWVoiceOut *hw, int live)
return
0
;
}
if
(
sdl
->
decr
>
live
)
{
ldebug
(
"sdl->decr %d live %d sdl->live %d
\n
"
,
sdl
->
decr
,
live
,
sdl
->
live
);
}
decr
=
audio_MIN
(
sdl
->
decr
,
live
);
sdl
->
decr
-=
decr
;
sdl
->
live
=
live
-
decr
;
hw
->
rpos
=
sdl
->
rpos
;
sdl
->
live
=
live
;
decr
=
sdl
->
decr
;
sdl
->
decr
=
0
;
if
(
sdl
->
live
>
0
)
{
sdl_unlock_and_post
(
s
,
"sdl_run_out"
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录