设为首页收藏本站

AnyChat技术支持论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 活动 交友 discuz
查看: 12667|回复: 19
打印 上一主题 下一主题

关于anychat登录流程

[复制链接]

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
跳转到指定楼层
楼主
发表于 2014-9-9 21:35:17 | 只看该作者 |只看大图 回帖奖励 |正序浏览 |阅读模式
现状描述:自己实现的消息透传机制。当A端收到B端  《进入房间消息》后,A端开始初始化anychat----》connect()---》login()----》enterRoom(),不确定进入哪个步骤了,此时A端又收到B端《挂断消息》,A端应结束当前界面且释放anychat资源。本人在A端onDestroy()进行anychat资源释放

释放源码:

        @Override
        protected void onDestroy() {
                super.onDestroy();
                System.out.println("FriendAudioPickActivity===================onDestroy===================");
                if (bNeedRelease) {
                        if (anychat != null)
                                anychat.Release();// 关闭SDK,释放
                }
        }

问题:A端会出现闪退效果

求解:1、分析异常
           2、调用anychat.Release();方法后,还需要在之前调用LeaveRoom()、Logout()方法吗?如果需要调用,我如何判断是否进入了房间或者登陆了
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
推荐
 楼主| 发表于 2014-9-10 17:44:41 | 只看该作者
admin 发表于 2014-9-10 17:30
请将SD卡根目录下的BRAnyChatCore.log文件内容附上来,谢谢。

[2014-09-10 17:31:21(284)]        ---------------------------AnyChat Platform Core SDK Client Log---------------------------
[2014-09-10 17:31:21(286)]        Load libanychatcore.so success!(V5.0 Build Time:Aug 18 2014 01:58:39)
[2014-09-10 17:31:21(287)]        Android OS SDK Version:16, Support ARMv7:2, Support Neon:4
[2014-09-10 17:31:21(307)]        Load libmediautil_v7.so success!(V5.0 Build Time:Aug 18 2014 01:59:45)
[2014-09-10 17:31:21(316)]        Load libmediashow_4.0.so success!(V5.0 Build Time:Aug 18 2014 01:59:09)
[2014-09-10 17:31:21(324)]        Load libmediacore_4.1.so success!(V5.0 Build Time:Aug 18 2014 01:59:29)
[2014-09-10 17:31:21(327)]        CPU:13.53 MIPS, Hardware:MI 2
[2014-09-10 17:31:21(329)]        Invoke        BRAC_Connect(demo.anychat.cn,8906)=0
[2014-09-10 17:31:21(482)]        CheckClientSocketLink         Connect(ip=121.199.51.198,port=8906)
[2014-09-10 17:31:21(525)]        Server version: V5.1(Build Time:2014-09-03 20:45:57, Server OS:Windows)
[2014-09-10 17:31:21(556)]        Message        OnConnect(bSuccess:1, errorcode=0)
[2014-09-10 17:31:21(568)]        Invoke        LoginServer(username=82)
[2014-09-10 17:31:21(792)]        Message        OnLoginSystem(userid=-2051,errorcode=0,username=82), msg deliver worked(0)
[2014-09-10 17:31:21(793)]        OnReceiveUserDefine(dwSrcUserId:0, dwTarUserId:-2051, dwCommand:13, wParam:0, lParam:0, dwBufSize:212)
[2014-09-10 17:31:21(797)]        Invoke        EnterRoom(2247CCB68D8F461D978AF14B4886BFAE)
[2014-09-10 17:31:21(805)]        Connection to streaming media server successfully!(udp delay:6ms)
[2014-09-10 17:31:22(019)]        Message        OnEnterRoom(roomid=243,errorcode=0,siteindex=0)
[2014-09-10 17:31:22(030)]        AllocAudioStream(dwFrameCount:3200, ret:0)
[2014-09-10 17:31:22(031)]        Audio Playback Device Init(0, 1, 16000, 16), Default Playback Driver
[2014-09-10 17:31:22(032)]        Message        OnReceiveOnlineUser(count=1,roomid=243)
[2014-09-10 17:31:22(041)]        Invoke        UserSpeakControl(userid=-1,bOpen=1)
[2014-09-10 17:31:22(592)]        Default Audio Capture Driver()
[2014-09-10 17:31:22(593)]        Audio Init, error:0, device:0, 1, 16000, 16, capmode:0
[2014-09-10 17:31:22(594)]        Audio codec init, handle:1, 11, 1, 16000, 16, 15850
[2014-09-10 17:31:22(603)]        Audio FX Status: VAD:1, NS:1, AGC:1, AEC:1
[2014-09-10 17:31:23(028)]        Invoke        UserSpeakControl(userid=-1,bOpen=0)
回复 支持 1 反对 0

使用道具 举报

249

主题

2967

帖子

9103

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
9103
20#
发表于 2014-9-11 09:13:35 | 只看该作者
您好,请将客户端的SDK升级到V5.1版本,看问题是否依然存在?

参考:AnyChat版本升级步骤指南
回复 支持 反对

使用道具 举报

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
19#
 楼主| 发表于 2014-9-11 08:50:00 | 只看该作者
admin 发表于 2014-9-10 17:30
请将SD卡根目录下的BRAnyChatCore.log文件内容附上来,谢谢。

这个就是log文件内容:

[2014-09-11 08:45:12(338)]        ---------------------------AnyChat Platform Core SDK Client Log---------------------------
[2014-09-11 08:45:12(338)]        Load libanychatcore.so success!(V5.0 Build Time:Aug 18 2014 01:58:39)
[2014-09-11 08:45:12(339)]        Android OS SDK Version:17, Support ARMv7:2, Support Neon:4
[2014-09-11 08:45:12(360)]        Load libmediautil_v7.so success!(V5.0 Build Time:Aug 18 2014 01:59:45)
[2014-09-11 08:45:12(371)]        Load libmediashow_4.0.so success!(V5.0 Build Time:Aug 18 2014 01:59:09)
[2014-09-11 08:45:12(383)]        Cannot load library: soinfo_relocate(linker.cpp:975): cannot locate symbol "_ZN7android6Camera7connectEi" referenced by "libmediacore_4.2.so"...
[2014-09-11 08:45:12(385)]        Load libmediacore.so success!(V5.0 Build Time:Aug 18 2014 01:59:12)
[2014-09-11 08:45:12(387)]        CPU:2376.00 MIPS, Hardware:PXA1088
[2014-09-11 08:45:12(387)]        Invoke        BRAC_Connect(demo.anychat.cn,8906)=0
[2014-09-11 08:45:17(643)]        CheckClientSocketLink         Connect(ip=121.199.51.198,port=8906)
[2014-09-11 08:45:17(674)]        Server version: V5.1(Build Time:2014-09-03 20:45:57, Server OS:Windows)
[2014-09-11 08:45:17(716)]        Message        OnConnect(bSuccess:1, errorcode=0)
[2014-09-11 08:45:17(726)]        Invoke        LoginServer(username=82)
[2014-09-11 08:45:17(934)]        Message        OnLoginSystem(userid=-2199,errorcode=0,username=82), msg deliver worked(0)
[2014-09-11 08:45:17(936)]        OnReceiveUserDefine(dwSrcUserId:0, dwTarUserId:-2199, dwCommand:13, wParam:0, lParam:0, dwBufSize:212)
[2014-09-11 08:45:17(945)]        Invoke        EnterRoom(CD8AB4D42B074D858B251E6A0C31CFCB)
[2014-09-11 08:45:17(948)]        Connection to streaming media server successfully!(udp delay:6ms)
[2014-09-11 08:45:18(214)]        Message        OnEnterRoom(roomid=274,errorcode=0,siteindex=0)
[2014-09-11 08:45:18(215)]        Audio Playback Device Init(0, 1, 16000, 16), Default Playback Driver
[2014-09-11 08:45:18(216)]        Message        OnReceiveOnlineUser(count=1,roomid=274)
[2014-09-11 08:45:18(246)]        Invoke        UserSpeakControl(userid=-1,bOpen=1)
[2014-09-11 08:45:18(291)]        Audio Init, error:0, device:-1, 1, 16000, 16, capmode:0
[2014-09-11 08:45:18(292)]        Audio codec init, handle:1, 11, 1, 16000, 16, 15850
[2014-09-11 08:45:18(567)]        Audio FX Status: VAD:1, NS:1, AGC:1, AEC:1
回复 支持 反对

使用道具 举报

249

主题

2967

帖子

9103

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
9103
18#
发表于 2014-9-10 22:20:25 | 只看该作者
您好,异常发生之后,请将SD卡根目录下的日志文件(BRAnyChatCore.log)附上来,我们帮您分析一下,谢谢。
回复 支持 反对

使用道具 举报

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
17#
 楼主| 发表于 2014-9-10 20:08:59 | 只看该作者
廖斌 发表于 2014-9-10 18:00
您好,从这个anychat日志来看,记录的是刚打开音频就关闭了。可以将崩溃时候的所以的系统日志发过来看下 ...

09-10 20:07:07.890: I/DEBUG(112): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
09-10 20:07:07.890: I/DEBUG(112): Build fingerprint: 'samsung/delos3gzm/delos3gcmcc:4.2.2/JDQ39/I8558ZMUANG1:user/release-keys'
09-10 20:07:07.890: I/DEBUG(112): Revision: '0'
09-10 20:07:07.898: I/DEBUG(112): pid: 12751, tid: 12954, name: om.yyk.knowchat  >>> com.yyk.knowchat <<<
09-10 20:07:07.898: I/DEBUG(112): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 000014f4
09-10 20:07:08.015: I/DEBUG(112):     r0 00000000  r1 00000020  r2 79c733c6  r3 79c733c6
09-10 20:07:08.015: I/DEBUG(112):     r4 5637a380  r5 5637f5ac  r6 00000000  r7 000014f4
09-10 20:07:08.015: I/DEBUG(112):     r8 5634529d  r9 00100000  sl 530a2524  fp 00000073
09-10 20:07:08.015: I/DEBUG(112):     ip 00004000  sp 580cbeb0  lr 400efa81  pc 563452c8  cpsr 28000030
09-10 20:07:08.015: I/DEBUG(112):     d0  3fd0a783014c3a00  d1  bda8fae9be8838d4
09-10 20:07:08.015: I/DEBUG(112):     d2  3ef9db46fc7ab6fd  d3  bf568b981cf7443b
09-10 20:07:08.015: I/DEBUG(112):     d4  3e789e2600000154  d5  3f2ab39f40e00000
09-10 20:07:08.015: I/DEBUG(112):     d6  00000000be8b9314  d7  014c3a00c2180000
09-10 20:07:08.015: I/DEBUG(112):     d8  0000000000000000  d9  4397800043d98000
09-10 20:07:08.015: I/DEBUG(112):     d10 0000000043e88000  d11 0000000000000000
09-10 20:07:08.015: I/DEBUG(112):     d12 0000000000000000  d13 0000000000000000
09-10 20:07:08.015: I/DEBUG(112):     d14 0000000000000000  d15 0000000000000000
09-10 20:07:08.015: I/DEBUG(112):     d16 4174c3a008000000  d17 3fe0000000000000
09-10 20:07:08.015: I/DEBUG(112):     d18 3f86b7789de66ada  d19 3f95d2fa92c9e56f
09-10 20:07:08.015: I/DEBUG(112):     d20 3fd0a783edcd12b6  d21 3fe0a783edcd12b6
09-10 20:07:08.015: I/DEBUG(112):     d22 3fa4f776c93ab663  d23 3fe715e20fe666be
09-10 20:07:08.015: I/DEBUG(112):     d24 3ff0000000000000  d25 0000000000000000
09-10 20:07:08.015: I/DEBUG(112):     d26 0000000000000000  d27 0000000000000000
09-10 20:07:08.023: I/DEBUG(112):     d28 0000000000000000  d29 0000000000000000
09-10 20:07:08.023: I/DEBUG(112):     d30 0000000000000000  d31 0000000000000000
09-10 20:07:08.023: I/DEBUG(112):     scr 60000092
09-10 20:07:08.023: I/DEBUG(112): backtrace:
09-10 20:07:08.023: I/DEBUG(112):     #00  pc 0003f2c8  /data/app-lib/com.yyk.knowchat-2/libanychatcore.so (VerifyBindDomainThread(void*)+43)
09-10 20:07:08.023: I/DEBUG(112):     #01  pc 0000e418  /system/lib/libc.so (__thread_entry+72)
09-10 20:07:08.023: I/DEBUG(112):     #02  pc 0000db04  /system/lib/libc.so (pthread_create+160)
09-10 20:07:08.023: I/DEBUG(112): stack:
09-10 20:07:08.023: I/DEBUG(112):          580cbe70  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbe74  98fe4cfb  
09-10 20:07:08.023: I/DEBUG(112):          580cbe78  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbe7c  580cbecc  [stack:12954]
09-10 20:07:08.023: I/DEBUG(112):          580cbe80  5637f5ac  
09-10 20:07:08.023: I/DEBUG(112):          580cbe84  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbe88  530a2524  
09-10 20:07:08.023: I/DEBUG(112):          580cbe8c  5634529d  /data/app-lib/com.yyk.knowchat-2/libanychatcore.so (VerifyBindDomainThread(void*))
09-10 20:07:08.023: I/DEBUG(112):          580cbe90  00100000  
09-10 20:07:08.023: I/DEBUG(112):          580cbe94  530a2524  
09-10 20:07:08.023: I/DEBUG(112):          580cbe98  00000073  
09-10 20:07:08.023: I/DEBUG(112):          580cbe9c  56347de3  /data/app-lib/com.yyk.knowchat-2/libanychatcore.so (AC_IOUtils:nsResolution(char const*, unsigned int&, unsigned int)+14)
09-10 20:07:08.023: I/DEBUG(112):          580cbea0  5637f5ac  
09-10 20:07:08.023: I/DEBUG(112):          580cbea4  530dcac0  
09-10 20:07:08.023: I/DEBUG(112):          580cbea8  df0027ad  
09-10 20:07:08.023: I/DEBUG(112):          580cbeac  00000000  
09-10 20:07:08.023: I/DEBUG(112):     #00  580cbeb0  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbeb4  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbeb8  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbebc  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbec0  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbec4  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbec8  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbecc  79c733c6  
09-10 20:07:08.023: I/DEBUG(112):          580cbed0  530a2524  
09-10 20:07:08.023: I/DEBUG(112):          580cbed4  580cbf00  [stack:12954]
09-10 20:07:08.023: I/DEBUG(112):          580cbed8  584f0528  
09-10 20:07:08.023: I/DEBUG(112):          580cbedc  5634529d  /data/app-lib/com.yyk.knowchat-2/libanychatcore.so (VerifyBindDomainThread(void*))
09-10 20:07:08.023: I/DEBUG(112):          580cbee0  530a2524  
09-10 20:07:08.023: I/DEBUG(112):          580cbee4  400e041c  /system/lib/libc.so (__thread_entry+76)
09-10 20:07:08.023: I/DEBUG(112):     #01  580cbee8  530a2524  
09-10 20:07:08.023: I/DEBUG(112):          580cbeec  580cbf00  [stack:12954]
09-10 20:07:08.023: I/DEBUG(112):          580cbef0  40114978  /system/lib/libc.so
09-10 20:07:08.023: I/DEBUG(112):          580cbef4  584f0528  
09-10 20:07:08.023: I/DEBUG(112):          580cbef8  00000078  
09-10 20:07:08.023: I/DEBUG(112):          580cbefc  400dfb08  /system/lib/libc.so (pthread_create+164)
09-10 20:07:08.023: I/DEBUG(112):     #02  580cbf00  580cbf00  [stack:12954]
09-10 20:07:08.023: I/DEBUG(112):          580cbf04  584f0528  
09-10 20:07:08.023: I/DEBUG(112):          580cbf08  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf0c  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf10  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf14  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf18  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf1c  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf20  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf24  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf28  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf2c  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf30  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf34  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf38  00000000  
09-10 20:07:08.023: I/DEBUG(112):          580cbf3c  00000000  
09-10 20:07:08.023: I/DEBUG(112): memory near r2:
09-10 20:07:08.023: I/DEBUG(112):     79c733a4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733b4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733c4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733d4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733e4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733f4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73404 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73414 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73424 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73434 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73444 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73454 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73464 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73474 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73484 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73494 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112): memory near r3:
09-10 20:07:08.023: I/DEBUG(112):     79c733a4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733b4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733c4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733d4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733e4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c733f4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73404 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73414 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73424 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73434 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73444 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73454 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73464 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73474 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73484 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     79c73494 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112): memory near r4:
09-10 20:07:08.023: I/DEBUG(112):     5637a360 5637a354 00000000 00000000 00000011  
09-10 20:07:08.023: I/DEBUG(112):     5637a370 7800001d 00000000 4133a480 4133a480  
09-10 20:07:08.023: I/DEBUG(112):     5637a380 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a390 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a3a0 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a3b0 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a3c0 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a3d0 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a3e0 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a3f0 00000001 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a400 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a410 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a420 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a430 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a440 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637a450 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112): memory near r5:
09-10 20:07:08.023: I/DEBUG(112):     5637f58c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f59c 00000000 00000000 00000001 0002afb4  
09-10 20:07:08.023: I/DEBUG(112):     5637f5ac 6f6d6564 796e612e 74616863 006e632e  
09-10 20:07:08.023: I/DEBUG(112):     5637f5bc 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f5cc 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f5dc 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f5ec 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f5fc 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f60c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f61c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f62c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f63c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f64c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f65c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f66c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112):     5637f67c 00000000 00000000 00000000 00000000  
09-10 20:07:08.023: I/DEBUG(112): memory near r7:
09-10 20:07:08.023: I/DEBUG(112):     000014d4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     000014e4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     000014f4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001504 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001514 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001524 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001534 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001544 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001554 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001564 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001574 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001584 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00001594 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     000015a4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     000015b4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     000015c4 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112): memory near r8:
09-10 20:07:08.023: I/DEBUG(112):     5634527c 7b23431a 432b021b 7ba47b65 432b042d  
09-10 20:07:08.023: I/DEBUG(112):     5634528c 43230624 faeef7f1 46c0bd38 000349e8  
09-10 20:07:08.023: I/DEBUG(112):     5634529c 4d1db5f0 2201b089 682d447d a9072600  
09-10 20:07:08.023: I/DEBUG(112):     563452ac 42521c28 f0029607 42b0fd8f 4c17d028  
09-10 20:07:08.023: I/DEBUG(112):     563452bc 9a074f17 6824447c 68202120 960059c3  
09-10 20:07:08.023: I/DEBUG(112):     563452cc 1ad29601 415a4253 93032301 96021c33  
09-10 20:07:08.023: I/DEBUG(112):     563452dc f0039604 6823fe99 59db9a07 d00f429a  
09-10 20:07:08.023: I/DEBUG(112):     563452ec 4478480c fa56f002 98071c04 ffa0f002  
09-10 20:07:08.023: I/DEBUG(112):     563452fc 48091c03 1c2a1c21 68004478 f818f004  
09-10 20:07:08.023: I/DEBUG(112):     5634530c 2000b009 46c0bdf0 00034a38 00034984  
09-10 20:07:08.023: I/DEBUG(112):     5634531c 000014f4 0002f0d1 00034930 4b03b508  
09-10 20:07:08.023: I/DEBUG(112):     5634532c 681b447b f7ee6818 bd08fd5f 00034918  
09-10 20:07:08.023: I/DEBUG(112):     5634533c 4b04b508 681b447b 66016818 fbaef7ee  
09-10 20:07:08.023: I/DEBUG(112):     5634534c 46c0bd08 00034904 f00fb508 bd08fc6d  
09-10 20:07:08.023: I/DEBUG(112):     5634535c 4b03b508 681b447b f7ef6818 bd08fa39  
09-10 20:07:08.023: I/DEBUG(112):     5634536c 000348e4 1c13b510 1c0c4a09 447a7859  
09-10 20:07:08.023: I/DEBUG(112): memory near r9:
09-10 20:07:08.023: I/DEBUG(112):     000fffe0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     000ffff0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00100000 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00100010 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.023: I/DEBUG(112):     00100020 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00100030 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00100040 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00100050 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00100060 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00100070 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00100080 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00100090 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     001000a0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     001000b0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     001000c0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     001000d0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112): memory near sl:
09-10 20:07:08.031: I/DEBUG(112):     530a2504 00000000 00000000 00000000 dead10cc  
09-10 20:07:08.031: I/DEBUG(112):     530a2514 00000000 00000000 00000000 000007d0  
09-10 20:07:08.031: I/DEBUG(112):     530a2524 563791c0 00000000 00000077 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a2534 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a2544 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a2554 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a2564 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a2574 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a2584 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a2594 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a25a4 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a25b4 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a25c4 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a25d4 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a25e4 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     530a25f4 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112): memory near ip:
09-10 20:07:08.031: I/DEBUG(112):     00003fe0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00003ff0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004000 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004010 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004020 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004030 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004040 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004050 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004060 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004070 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004080 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     00004090 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     000040a0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     000040b0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     000040c0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112):     000040d0 ffffffff ffffffff ffffffff ffffffff  
09-10 20:07:08.031: I/DEBUG(112): memory near sp:
09-10 20:07:08.031: I/DEBUG(112):     580cbe90 00100000 530a2524 00000073 56347de3  
09-10 20:07:08.031: I/DEBUG(112):     580cbea0 5637f5ac 530dcac0 df0027ad 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbeb0 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbec0 00000000 00000000 00000000 79c733c6  
09-10 20:07:08.031: I/DEBUG(112):     580cbed0 530a2524 580cbf00 584f0528 5634529d  
09-10 20:07:08.031: I/DEBUG(112):     580cbee0 530a2524 400e041c 530a2524 580cbf00  
09-10 20:07:08.031: I/DEBUG(112):     580cbef0 40114978 584f0528 00000078 400dfb08  
09-10 20:07:08.031: I/DEBUG(112):     580cbf00 580cbf00 584f0528 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf10 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf20 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf30 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf40 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf50 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf60 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf70 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112):     580cbf80 00000000 00000000 00000000 00000000  
09-10 20:07:08.031: I/DEBUG(112): code around pc:
09-10 20:07:08.031: I/DEBUG(112):     563452a8 a9072600 42521c28 f0029607 42b0fd8f  
09-10 20:07:08.031: I/DEBUG(112):     563452b8 4c17d028 9a074f17 6824447c 68202120  
09-10 20:07:08.031: I/DEBUG(112):     563452c8 960059c3 1ad29601 415a4253 93032301  
09-10 20:07:08.031: I/DEBUG(112):     563452d8 96021c33 f0039604 6823fe99 59db9a07  
09-10 20:07:08.031: I/DEBUG(112):     563452e8 d00f429a 4478480c fa56f002 98071c04  
09-10 20:07:08.031: I/DEBUG(112):     563452f8 ffa0f002 48091c03 1c2a1c21 68004478  
09-10 20:07:08.031: I/DEBUG(112):     56345308 f818f004 2000b009 46c0bdf0 00034a38  
09-10 20:07:08.031: I/DEBUG(112):     56345318 00034984 000014f4 0002f0d1 00034930  
09-10 20:07:08.031: I/DEBUG(112):     56345328 4b03b508 681b447b f7ee6818 bd08fd5f  
09-10 20:07:08.031: I/DEBUG(112):     56345338 00034918 4b04b508 681b447b 66016818  
09-10 20:07:08.031: I/DEBUG(112):     56345348 fbaef7ee 46c0bd08 00034904 f00fb508  
09-10 20:07:08.031: I/DEBUG(112):     56345358 bd08fc6d 4b03b508 681b447b f7ef6818  
09-10 20:07:08.031: I/DEBUG(112):     56345368 bd08fa39 000348e4 1c13b510 1c0c4a09  
09-10 20:07:08.031: I/DEBUG(112):     56345378 447a7859 02096812 781a6810 789a4311  
09-10 20:07:08.031: I/DEBUG(112):     56345388 43110412 061278da 1c224311 fd36f7f2  
09-10 20:07:08.031: I/DEBUG(112):     56345398 46c0bd10 000348ca 1c0cb538 7a897a4b  
09-10 20:07:08.031: I/DEBUG(112): code around lr:
09-10 20:07:08.031: I/DEBUG(112):     400efa60 6c606010 f7efb118 2300fa6f 68316463  
09-10 20:07:08.031: I/DEBUG(112):     400efa70 60a02000 81a06060 4620b111 faf4f000  
09-10 20:07:08.031: I/DEBUG(112):     400efa80 bd704628 0002a52e 4605b573 a9014608  
09-10 20:07:08.031: I/DEBUG(112):     400efa90 fab0f000 2c004604 2103d036 46282200  
09-10 20:07:08.031: I/DEBUG(112):     400efaa0 fe44f7fd 46062800 f000db2d 2b020303  
09-10 20:07:08.031: I/DEBUG(112):     400efab0 9801d009 0203f000 d0044293 fa34f7f1  
09-10 20:07:08.031: I/DEBUG(112):     400efac0 60032316 f000e01f b1e8fa07 b2a49901  
09-10 20:07:08.031: I/DEBUG(112):     400efad0 054a8184 0573d504 f444bf5c 81847480  
09-10 20:07:08.031: I/DEBUG(112):     400efae0 490b4a0a 6812447a 62424b0a 68094479  
09-10 20:07:08.031: I/DEBUG(112):     400efaf0 447b4a09 81c5681b 6812447a 62c161c0  
09-10 20:07:08.031: I/DEBUG(112):     400efb00 62026283 2000e000 bf00bd7c 0002a488  
09-10 20:07:08.031: I/DEBUG(112):     400efb10 0002a484 0002a482 0002a480 4604b570  
09-10 20:07:08.031: I/DEBUG(112):     400efb20 447e4e08 68336836 f000b10b 89a5fa90  
09-10 20:07:08.031: I/DEBUG(112):     400efb30 f3c56830 b1101540 f0004620 4628fa95  
09-10 20:07:08.031: I/DEBUG(112):     400efb40 bf00bd70 0002a41a f3c08980 47701080  
09-10 20:07:08.031: I/DEBUG(112):     400efb50 300cf9b0 4604b570 0008f013 6925d021  
09-10 20:07:08.031: I/DEBUG(112): memory map around fault addr 000014f4:
09-10 20:07:08.031: I/DEBUG(112):     (no map below)
09-10 20:07:08.031: I/DEBUG(112):     (no map for address)
09-10 20:07:08.031: I/DEBUG(112):     400a4000-400a6000 /system/bin/app_process
09-10 20:07:08.226: I/DEBUG(112): !@dumpstate -k -t -z -d -o /data/log/dumpstate_app_native -m 12751
回复 支持 反对

使用道具 举报

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
16#
 楼主| 发表于 2014-9-10 18:24:58 | 只看该作者
廖斌 发表于 2014-9-10 18:00
您好,从这个anychat日志来看,记录的是刚打开音频就关闭了。可以将崩溃时候的所以的系统日志发过来看下 ...

09-10 18:24:37.144: I/DEBUG(171): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
09-10 18:24:37.144: I/DEBUG(171): Build fingerprint: 'Xiaomi/aries/aries:4.1.1/JRO03L/JLB39.0:user/release-keys'
09-10 18:24:37.144: I/DEBUG(171): pid: 15447, tid: 15447, name: om.yyk.knowchat  >>> com.yyk.knowchat <<<
09-10 18:24:37.144: I/DEBUG(171): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad
09-10 18:24:37.214: I/DEBUG(171):     r0 00000043  r1 bed6f448  r2 00000003  r3 deadbaad
09-10 18:24:37.214: I/DEBUG(171):     r4 40277a6c  r5 6988df58  r6 bed6f470  r7 40261063
09-10 18:24:37.214: I/DEBUG(171):     r8 6988df60  r9 62e85ce4  sl 59c460c0  fp bed6f69c
09-10 18:24:37.214: I/DEBUG(171):     ip 00000000  sp bed6f470  lr 4024f2a5  pc 4023aa78  cpsr 08000030
09-10 18:24:37.214: I/DEBUG(171):     d0  0000000000000000  d1  0000000000000000
09-10 18:24:37.214: I/DEBUG(171):     d2  000003f500000000  d3  0000000000000000
09-10 18:24:37.214: I/DEBUG(171):     d4  654d776f6e4b3c0a  d5  0a0d3e6567617373
09-10 18:24:37.214: I/DEBUG(171):     d6  67617373654d3c09  d7  014c3a003f800000
09-10 18:24:37.214: I/DEBUG(171):     d8  3f8000003f800000  d9  4434000000000000
09-10 18:24:37.214: I/DEBUG(171):     d10 0000000044a00000  d11 0000000000000000
09-10 18:24:37.214: I/DEBUG(171):     d12 0000000000000000  d13 0000000000000000
09-10 18:24:37.214: I/DEBUG(171):     d14 0000000000000000  d15 0000000000000000
09-10 18:24:37.214: I/DEBUG(171):     d16 006f006900640075  d17 006e0069006c0046
09-10 18:24:37.214: I/DEBUG(171):     d18 0046003400350038  d19 0042004500300034
09-10 18:24:37.214: I/DEBUG(171):     d20 0032003900340042  d21 0045003100420046
09-10 18:24:37.214: I/DEBUG(171):     d22 0032004300310037  d23 0032003300440031
09-10 18:24:37.214: I/DEBUG(171):     d24 0002000000020001  d25 0006000500040003
09-10 18:24:37.214: I/DEBUG(171):     d26 0000000000000000  d27 0000000000000000
09-10 18:24:37.214: I/DEBUG(171):     d28 0000000000000000  d29 3ff0000000000000
09-10 18:24:37.214: I/DEBUG(171):     d30 0006000600060006  d31 0000000000000000
09-10 18:24:37.214: I/DEBUG(171):     scr 88000012
09-10 18:24:37.214: I/DEBUG(171): backtrace:
09-10 18:24:37.214: I/DEBUG(171):     #00  pc 00013a78  /system/lib/libc.so
09-10 18:24:37.214: I/DEBUG(171):     #01  pc 00015e55  /system/lib/libc.so (dlfree+1628)
09-10 18:24:37.214: I/DEBUG(171):     #02  pc 00017003  /system/lib/libc.so (free+10)
09-10 18:24:37.214: I/DEBUG(171):     #03  pc 0004308f  /system/lib/libmedia.so (android::AudioRecord::~AudioRecord()+10)
09-10 18:24:37.214: I/DEBUG(171):     #04  pc 000116c5  /data/data/com.yyk.knowchat/lib/libmediacore_4.1.so (CAndroidAudioCapture::Release()+34)
09-10 18:24:37.214: I/DEBUG(171):     #05  pc 0000d167  /data/data/com.yyk.knowchat/lib/libmediacore_4.1.so (BRMC_AudioCaptureDestroy+30)
09-10 18:24:37.214: I/DEBUG(171):     #06  pc 0003729f  /data/data/com.yyk.knowchat/lib/libanychatcore.so (CMediaCenter:estroyAudioCaptureModule()+66)
09-10 18:24:37.214: I/DEBUG(171):     #07  pc 0003057b  /data/data/com.yyk.knowchat/lib/libanychatcore.so (CControlCenter:eaveRoom(int)+398)
09-10 18:24:37.214: I/DEBUG(171): stack:
09-10 18:24:37.214: I/DEBUG(171):          bed6f430  00000001  
09-10 18:24:37.214: I/DEBUG(171):          bed6f434  40261063  /system/lib/libc.so
09-10 18:24:37.214: I/DEBUG(171):          bed6f438  6988df60  
09-10 18:24:37.214: I/DEBUG(171):          bed6f43c  4024f30f  /system/lib/libc.so
09-10 18:24:37.214: I/DEBUG(171):          bed6f440  00000000  
09-10 18:24:37.214: I/DEBUG(171):          bed6f444  00000007  
09-10 18:24:37.214: I/DEBUG(171):          bed6f448  bed6f444  [stack]
09-10 18:24:37.214: I/DEBUG(171):          bed6f44c  00000001  
09-10 18:24:37.214: I/DEBUG(171):          bed6f450  40261047  /system/lib/libc.so
09-10 18:24:37.214: I/DEBUG(171):          bed6f454  00000005  
09-10 18:24:37.214: I/DEBUG(171):          bed6f458  bed6f47c  [stack]
09-10 18:24:37.214: I/DEBUG(171):          bed6f45c  0000003d  
09-10 18:24:37.214: I/DEBUG(171):          bed6f460  40277a6c  
09-10 18:24:37.214: I/DEBUG(171):          bed6f464  6988df58  
09-10 18:24:37.214: I/DEBUG(171):          bed6f468  df0027ad  
09-10 18:24:37.214: I/DEBUG(171):          bed6f46c  00000000  
09-10 18:24:37.214: I/DEBUG(171):     #00  bed6f470  38383936  
09-10 18:24:37.214: I/DEBUG(171):          bed6f474  38356664  
09-10 18:24:37.214: I/DEBUG(171):          bed6f478  00000000  
09-10 18:24:37.214: I/DEBUG(171):          bed6f47c  20404040  
09-10 18:24:37.214: I/DEBUG(171):          bed6f480  524f4241  /dev/ashmem/dalvik-heap (deleted)
09-10 18:24:37.214: I/DEBUG(171):          bed6f484  474e4954  /dev/ashmem/dalvik-heap (deleted)
09-10 18:24:37.214: I/DEBUG(171):          bed6f488  4e49203a  /dev/ashmem/dalvik-heap (deleted)
09-10 18:24:37.214: I/DEBUG(171):          bed6f48c  494c4156  /dev/ashmem/dalvik-heap (deleted)
09-10 18:24:37.214: I/DEBUG(171):          bed6f490  45482044  /dev/ashmem/dalvik-heap (deleted)
09-10 18:24:37.214: I/DEBUG(171):          bed6f494  41205041  /system/lib/libicui18n.so (icu_48::Calendar::kDOWPrecedence+281)
09-10 18:24:37.214: I/DEBUG(171):          bed6f498  45524444  /dev/ashmem/dalvik-heap (deleted)
09-10 18:24:37.214: I/DEBUG(171):          bed6f49c  49205353  /dev/ashmem/dalvik-heap (deleted)
09-10 18:24:37.214: I/DEBUG(171):          bed6f4a0  6c64204e  /data/data/com.yyk.knowchat/lib/libmediautil_v7.so (CAudioCodec::Encode(MediaCodecContext*, MediaPacket*, MediaPacket*)+237)
09-10 18:24:37.214: I/DEBUG(171):          bed6f4a4  65657266  /data/dalvik-cache/system@framework@services.jar@classes.dex
09-10 18:24:37.214: I/DEBUG(171):          bed6f4a8  64646120  /data/dalvik-cache/system@framework@framework.jar@classes.dex
09-10 18:24:37.214: I/DEBUG(171):          bed6f4ac  78303d72  
09-10 18:24:37.214: I/DEBUG(171):          ........  ........
09-10 18:24:37.214: I/DEBUG(171):     #01  bed6f598  4023c7f9  /system/lib/libc.so (dlfree)
09-10 18:24:37.214: I/DEBUG(171):          bed6f59c  6988df60  
09-10 18:24:37.214: I/DEBUG(171):          bed6f5a0  6a7305b0  
09-10 18:24:37.214: I/DEBUG(171):          bed6f5a4  6a7305ac  
09-10 18:24:37.214: I/DEBUG(171):          bed6f5a8  6b24e94c  
09-10 18:24:37.214: I/DEBUG(171):          bed6f5ac  bed6f688  [stack]
09-10 18:24:37.214: I/DEBUG(171):          bed6f5b0  62e85ce4  
09-10 18:24:37.214: I/DEBUG(171):          bed6f5b4  4023e005  /system/lib/libc.so (free+12)
09-10 18:24:37.214: I/DEBUG(171):     #02  bed6f5b8  414cf085  /system/lib/libmedia.so (android::AudioRecord::~AudioRecord())
09-10 18:24:37.214: I/DEBUG(171):          bed6f5bc  414cf093  /system/lib/libmedia.so (android::AudioRecord::~AudioRecord()+14)
09-10 18:24:37.214: I/DEBUG(171): memory near r1:
09-10 18:24:37.214: I/DEBUG(171):     bed6f428 40261047 bed6f47c 00000001 40261063  G.&@|.......c.&@
09-10 18:24:37.214: I/DEBUG(171):     bed6f438 6988df60 4024f30f 00000000 00000007  `..i..$@........
09-10 18:24:37.214: I/DEBUG(171):     bed6f448 bed6f444 00000001 40261047 00000005  D.......G.&@....
09-10 18:24:37.214: I/DEBUG(171):     bed6f458 bed6f47c 0000003d 40277a6c 6988df58  |...=...lz'@X..i
09-10 18:24:37.214: I/DEBUG(171):     bed6f468 df0027ad 00000000 38383936 38356664  .'......6988df58
09-10 18:24:37.214: I/DEBUG(171): memory near r4:
09-10 18:24:37.214: I/DEBUG(171):     40277a4c 00000000 00000000 00000000 00000000  ................
09-10 18:24:37.214: I/DEBUG(171):     40277a5c 00000000 00000000 00000000 00000000  ................
09-10 18:24:37.214: I/DEBUG(171):     40277a6c 76bc5503 00000000 00000000 00000000  .U.v............
09-10 18:24:37.214: I/DEBUG(171):     40277a7c 00000000 00000000 00000000 00000000  ................
09-10 18:24:37.214: I/DEBUG(171):     40277a8c 00000000 00000000 00000000 00000000  ................
09-10 18:24:37.214: I/DEBUG(171): memory near r5:
09-10 18:24:37.214: I/DEBUG(171):     6988df38 00000000 00000000 00000000 00000000  ................
09-10 18:24:37.214: I/DEBUG(171):     6988df48 00000000 00000000 00000000 00000000  ................
09-10 18:24:37.214: I/DEBUG(171):     6988df58 00000000 00000083 414f6f14 00000000  .........oOA....
09-10 18:24:37.214: I/DEBUG(171):     6988df68 6a8bbeb0 00000000 00000000 dead10cc  ...j............
09-10 18:24:37.214: I/DEBUG(171):     6988df78 deadc04d 00003e80 6cf87940 00000001  M....>..@y.l....
09-10 18:24:37.214: I/DEBUG(171): memory near r6:
09-10 18:24:37.214: I/DEBUG(171):     bed6f450 40261047 00000005 bed6f47c 0000003d  G.&@....|...=...
09-10 18:24:37.214: I/DEBUG(171):     bed6f460 40277a6c 6988df58 df0027ad 00000000  lz'@X..i.'......
09-10 18:24:37.214: I/DEBUG(171):     bed6f470 38383936 38356664 00000000 20404040  6988df58....@@@
09-10 18:24:37.214: I/DEBUG(171):     bed6f480 524f4241 474e4954 4e49203a 494c4156  ABORTING: INVALI
09-10 18:24:37.214: I/DEBUG(171):     bed6f490 45482044 41205041 45524444 49205353  D HEAP ADDRESS I
09-10 18:24:37.214: I/DEBUG(171): memory near r7:
09-10 18:24:37.214: I/DEBUG(171):     40261040 3d726464 6c007830 00636269 50414548  ddr=0x.libc.HEAP
09-10 18:24:37.214: I/DEBUG(171):     40261050 4d454d20 2059524f 52524f43 49545055   MEMORY CORRUPTI
09-10 18:24:37.214: I/DEBUG(171):     40261060 49004e4f 4c41564e 48204449 20504145  ON.INVALID HEAP
09-10 18:24:37.214: I/DEBUG(171):     40261070 52444441 00535345 2078616d 74737973  ADDRESS.max syst
09-10 18:24:37.214: I/DEBUG(171):     40261080 62206d65 73657479 25203d20 756c3031  em bytes = %10lu
09-10 18:24:37.214: I/DEBUG(171): memory near r8:
09-10 18:24:37.214: I/DEBUG(171):     6988df40 00000000 00000000 00000000 00000000  ................
09-10 18:24:37.214: I/DEBUG(171):     6988df50 00000000 00000000 00000000 00000083  ................
09-10 18:24:37.214: I/DEBUG(171):     6988df60 414f6f14 00000000 6a8bbeb0 00000000  .oOA.......j....
09-10 18:24:37.214: I/DEBUG(171):     6988df70 00000000 dead10cc deadc04d 00003e80  ........M....>..
09-10 18:24:37.214: I/DEBUG(171):     6988df80 6cf87940 00000001 00640001 00000001  @y.l......d.....
09-10 18:24:37.214: I/DEBUG(171): memory near r9:
09-10 18:24:37.214: I/DEBUG(171):     62e85cc4 64b291dc 00000000 62e85cf8 68814fb4  ...d.....\.b.O.h
09-10 18:24:37.214: I/DEBUG(171):     62e85cd4 63380930 00000006 00000000 17900019  0.8c............
09-10 18:24:37.214: I/DEBUG(171):     62e85ce4 62e85d38 6483fa28 6337df20 68814fb4  8].b(..d .7c.O.h
09-10 18:24:37.214: I/DEBUG(171):     62e85cf4 00000000 6484399a 00000000 42a1df40  .....9.d....@..B
09-10 18:24:37.214: I/DEBUG(171):     62e85d04 4293b100 426a61b8 00000000 ffffffff  ...B.ajB........
09-10 18:24:37.214: I/DEBUG(171): memory near sl:
09-10 18:24:37.225: I/DEBUG(171):     59c460a0 fffffffc 00000000 00000000 00000453  ............S...
09-10 18:24:37.225: I/DEBUG(171):     59c460b0 64239552 62e85ce0 6337df20 62942000  R.#d.\.b .7c. .b
09-10 18:24:37.225: I/DEBUG(171):     59c460c0 0000001d 76bc5503 bed6f7b0 00000000  .....U.v........
09-10 18:24:37.225: I/DEBUG(171):     59c460d0 bed6f7e4 00000001 00000000 41237d00  .............}#A
09-10 18:24:37.225: I/DEBUG(171):     59c460e0 00000000 00000000 62170670 62e80300  ........p..b...b
09-10 18:24:37.225: I/DEBUG(171): memory near fp:
09-10 18:24:37.225: I/DEBUG(171):     bed6f67c 63380930 59c460b0 41237b74 62e85ce0  0.8c.`.Yt{#A.\.b
09-10 18:24:37.225: I/DEBUG(171):     bed6f68c 00000001 4293b100 00000000 426a1f00  .......B......jB
09-10 18:24:37.225: I/DEBUG(171):     bed6f69c 412668bd 62e85ce0 68851444 6b2bf751  .h&A.\.bD..hQ.+k
09-10 18:24:37.225: I/DEBUG(171):     bed6f6ac 59c460c0 00000000 00000000 00000001  .`.Y............
09-10 18:24:37.225: I/DEBUG(171):     bed6f6bc 40277a6c 426a6158 426a6158 59c4641c  lz'@XajBXajB.d.Y
09-10 18:24:37.225: I/DEBUG(171): memory near sp:
09-10 18:24:37.225: I/DEBUG(171):     bed6f450 40261047 00000005 bed6f47c 0000003d  G.&@....|...=...
09-10 18:24:37.225: I/DEBUG(171):     bed6f460 40277a6c 6988df58 df0027ad 00000000  lz'@X..i.'......
09-10 18:24:37.225: I/DEBUG(171):     bed6f470 38383936 38356664 00000000 20404040  6988df58....@@@
09-10 18:24:37.225: I/DEBUG(171):     bed6f480 524f4241 474e4954 4e49203a 494c4156  ABORTING: INVALI
09-10 18:24:37.225: I/DEBUG(171):     bed6f490 45482044 41205041 45524444 49205353  D HEAP ADDRESS I
09-10 18:24:37.225: I/DEBUG(171): code around pc:
09-10 18:24:37.225: I/DEBUG(171):     4023aa58 f00f4479 a803f8cd f44f4669 f00f7280  yD......iFO..r..
09-10 18:24:37.225: I/DEBUG(171):     4023aa68 490df8c7 aa032007 f0144479 4b05fc23  ...I. ..yD..#..K
09-10 18:24:37.225: I/DEBUG(171):     4023aa78 9a43601d 428a6821 f016d001 b045fe9f  .`C.!h.B......E.
09-10 18:24:37.225: I/DEBUG(171):     4023aa88 bf00bdf0 deadbaad 00030abc 00026634  ............4f..
09-10 18:24:37.225: I/DEBUG(171):     4023aa98 0002661d 000265e2 000265d3 4c19b538  .f...e...e..8..L
09-10 18:24:37.225: I/DEBUG(171): code around lr:
09-10 18:24:37.225: I/DEBUG(171):     4024f284 0001c5aa 00028810 b5704b0a 240c447b  .........Kp.{D.$
09-10 18:24:37.225: I/DEBUG(171):     4024f294 fb04460d 22033400 46296860 ec8ef7e4  .F...4."`h)F....
09-10 18:24:37.225: I/DEBUG(171):     4024f2a4 46061c43 f7ebd104 6800fb95 d0f22804  C..F.......h.(..
09-10 18:24:37.225: I/DEBUG(171):     4024f2b4 bd704630 0001c568 b088b570 4615460c  0Fp.h...p....F.F
09-10 18:24:37.225: I/DEBUG(171):     4024f2c4 b9099001 447c4c12 46204912 f7e64479  .....L|D.I FyD..
09-10 18:24:37.225: I/DEBUG(171): memory map around fault addr deadbaad:
09-10 18:24:37.225: I/DEBUG(171):     bed4f000-bed70000 [stack]
09-10 18:24:37.225: I/DEBUG(171):     (no map for address)
09-10 18:24:37.225: I/DEBUG(171):     ffff0000-ffff1000 [vectors]
回复 支持 反对

使用道具 举报

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
15#
 楼主| 发表于 2014-9-10 18:17:58 | 只看该作者
廖斌 发表于 2014-9-10 18:00
您好,从这个anychat日志来看,记录的是刚打开音频就关闭了。可以将崩溃时候的所以的系统日志发过来看下 ...

就是在模拟,接听方刚点击接听按钮,拨打方那边取消拨打,然后接听方收到对方取消拨打消息后,退出anychat服务器和结束当前activity
回复 支持 反对

使用道具 举报

5

主题

1269

帖子

3677

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3677
14#
发表于 2014-9-10 18:00:02 | 只看该作者
YYK 发表于 2014-9-10 17:44
[2014-09-10 17:31:21(284)]        ---------------------------AnyChat Platform Core SDK Client Log-------- ...

您好,从这个anychat日志来看,记录的是刚打开音频就关闭了。可以将崩溃时候的所以的系统日志发过来看下。您也可以自己定位下是不是上传的原因(例如空指针),或者库文件问题(系统日志有DEBUG为tag的,并不是error红色的)
回复 支持 反对

使用道具 举报

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
13#
 楼主| 发表于 2014-9-10 17:56:05 | 只看该作者
YYK 发表于 2014-9-10 17:17
A端结束当前界面且释放anychat资源
相关代码:
        anychat.UserSpeakControl(-1, 0);

我仅仅调用 anychat.Release();这一个方法可行吗?不在此之前调用 LeaveRoom()、Logout(),因为我这边以房间名称登录,不知道房间ID
回复 支持 反对

使用道具 举报

5

主题

27

帖子

91

积分

注册会员

Rank: 2

积分
91
12#
 楼主| 发表于 2014-9-10 17:55:36 | 只看该作者
YYK 发表于 2014-9-10 17:17
A端结束当前界面且释放anychat资源
相关代码:
        anychat.UserSpeakControl(-1, 0);

我仅仅调用 anychat.Release();这一个方法可行吗?不在此之前调用 LeaveRoom()、Logout(),因为我这边以房间名称登录,不知道房间ID
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|AnyChat ( 粤ICP备13022410号-1 )  

GMT+8, 2024-10-1 06:38 , Processed in 0.155824 second(s), 24 queries .

Powered by Discuz! X3

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表