runsisi
C++博客
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
45 随笔 :: 15 文章 :: 26 评论 :: 0 Trackbacks
<
2010年2月
>
日
一
二
三
四
五
六
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
1
2
3
4
5
6
7
8
9
10
11
12
13
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔分类
C++
(rss)
随笔档案
2019年3月 (1)
2015年8月 (2)
2015年1月 (1)
2014年12月 (1)
2014年9月 (3)
2014年8月 (4)
2014年7月 (2)
2013年5月 (1)
2013年4月 (1)
2013年3月 (1)
2013年2月 (1)
2012年10月 (1)
2012年8月 (1)
2010年9月 (2)
2010年6月 (1)
2010年5月 (2)
2010年4月 (1)
2010年2月 (2)
2010年1月 (6)
2009年11月 (1)
2009年9月 (1)
2009年7月 (1)
2009年6月 (3)
2009年5月 (2)
2009年4月 (3)
文章分类
embedded system(2)
(rss)
linux(10)
(rss)
文章档案
2009年6月 (1)
2009年5月 (1)
2009年4月 (1)
2009年3月 (12)
相册
runsisi@HUST
搜索
最新评论
1. re: solar eclipse
哈哈,哈哈
--Www
2. re: Powerline字体补丁
评论内容较长,点击标题查看
--runsisi
3. re: Powerline字体补丁
您好,请问您的FontForge怎么编译的=。=我编译的都快哭了
--Xana
4. re: 又到一月发工资时。。
评论内容较长,点击标题查看
--zter
5. re: 又到一月发工资时。。[未登录]
加250说明你就是一个250,觉悟没有
--wony
阅读排行榜
1. C++14 标准制定完成(17556)
2. Powerline字体补丁(7722)
3. 使用ceph-deploy工具部署时出现错误:Unable to find /var/lib/ceph/bootstrap-osd/ceph.keyring(6553)
4. gxgx ^^(3483)
5. ceph测试环境搭建(3105)
评论排行榜
1. 2009我们一起毕业(8)
2. 表白(7)
3. 又到一月发工资时。。(2)
4. Powerline字体补丁(2)
5. audacious-mac-0.3.10.modified(2)
audacious 2.2 ape插件patch
和上篇文章一样,只不过是
适合audacious 2.2版本
。
diff
-
Nur audacious
-
mac
-
0.3
.
10
.orig
/
src
/
mac.cpp audacious
-
mac
-
0.3
.
10
.modified
/
src
/
mac.cpp
---
audacious
-
mac
-
0.3
.
10
.orig
/
src
/
mac.cpp
2007
-
10
-
15
17
:
21
:
33.000000000
+
0800
+++
audacious
-
mac
-
0.3
.
10
.modified
/
src
/
mac.cpp
2010
-
02
-
06
21
:
38
:
34.276458793
+
0800
@@
-
11
,
7
+
11
,
7
@@
#include
<
glib.h
>
const
gchar
*
fmts[]
=
{
"
mac
"
,
"
ape
"
,
"
apl
"
, NULL }
;
-
+
//
modified by runsisi@163.com
InputPlugin mac_plugin_info
=
{
NULL,
@@
-
21
,
32
+
21
,
28
@@
NULL,
mac_about,
NULL,
+
NULL,
FALSE,
+
FALSE,
+
(gchar
**
)fmts,
+
NULL,
NULL,
+
mac_is_our_file_from_vfs,
NULL,
mac_play_file,
mac_stop,
mac_pause,
-
mac_seek,
-
NULL,
-
NULL,
-
NULL,
-
NULL,
+
mac_seek,
+
mac_mseek,
NULL,
NULL,
NULL,
NULL,
NULL,
mac_file_info_box,
-
NULL,
mac_get_song_tuple,
NULL,
-
NULL,
-
mac_is_our_file_from_vfs,
-
(gchar
**
)fmts,
-
mac_mseek,
}
;
-
InputPlugin
*
mac_plugin_infolist[]
=
{
&
mac_plugin_info, NULL }
;
SIMPLE_INPUT_PLUGIN(mac_plugin_info, mac_plugin_infolist)
@@
-
295
,
7
+
291
,
7
@@
GTK_SIGNAL_FUNC(gtk_widget_destroyed),
&
aboutbox);
}
-
int
mac_is_our_file_from_vfs(gchar
*
filename, VFSFile
*
file)
+
int
mac_is_our_file_from_vfs(
const
gchar
*
filename, VFSFile
*
file)
{
gchar magic[
4
];
const
gchar
*
ext;
@@
-
383
,
7
+
379
,
7
@@
mac_mseek(playback, time
*
1000
);
}
-
Tuple
*
mac_get_song_tuple(gchar
*
uriname)
+
Tuple
*
mac_get_song_tuple(
const
gchar
*
uriname)
{
int
nRetVal
=
0
;
char
*
filename;
diff
-
Nur audacious
-
mac
-
0.3
.
10
.orig
/
src
/
mac.h audacious
-
mac
-
0.3
.
10
.modified
/
src
/
mac.h
---
audacious
-
mac
-
0.3
.
10
.orig
/
src
/
mac.h
2007
-
09
-
08
20
:
04
:
35.000000000
+
0800
+++
audacious
-
mac
-
0.3
.
10
.modified
/
src
/
mac.h
2010
-
02
-
06
21
:
16
:
39.478580938
+
0800
@@
-
44
,
10
+
44
,
10
@@
#ifdef __cplusplus
extern
"
C
"
{
#endif
-
+
//
modified by runsisi@163.com
static
void
mac_about();
-
static
int
mac_is_our_file_from_vfs(gchar
*
filename, VFSFile
*
file);
+
static
int
mac_is_our_file_from_vfs(
const
gchar
*
filename, VFSFile
*
file);
static
void
mac_play_file(InputPlayback
*
data);
@@
-
59
,
9
+
59
,
9
@@
static
void
mac_seek(InputPlayback
*
data,
int
time);
-
static
Tuple
*
mac_get_song_tuple(gchar
*
filename);
+
static
Tuple
*
mac_get_song_tuple(
const
gchar
*
filename);
-
void
mac_file_info_box(
char
*
filename);
+
void
mac_file_info_box(
const
char
*
filename);
#ifdef __cplusplus
}
runsisi@HUST
posted on 2010-02-08 21:30
runsisi
阅读(420)
评论(1)
编辑
收藏
引用
评论
#
re: audacious 2.2 ape插件patch[未登录]
2010-05-26 21:01
Henry
兄弟,这个补丁在2.3下又不能用了,期待你的新补丁。
回复
更多评论
刷新评论列表
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
Powered by:
C++博客
Copyright © runsisi