读了
https://www.jianshu.com/p/9491cc1adf70
https://blog.csdn.net/bberdong/article/details/88370351
很有收获

首次音頻接口打開需要配置
bta_av_ssm_execute->bta_av_sst_tbl->bta_av_sst_incoming->bta_av_setconfig_rsp-》BTA_AV_SINK_MEDIA_CFG_EVT

p_app_sink_data_cback就是
bte_av_sink_media_callback
接data就是p_app_sink_data_cback(BTA_AV_SINK_MEDIA_DATA_EVT

bta_av_sink_data_cback是用于接收器流事件的AVDTP回调函数在bta_av_api_register被註冊到系統中,在avdt_scb_event->avdt_scb_action->avdt_scb_hdl_pkt->avdt_scb_hdl_pkt_no_frag調用

if (p_scb->cs.p_sink_data_cback != NULL) {/* report sequence number */p_data->p_pkt->layer_specific = seq;(*p_scb->cs.p_sink_data_cback)(avdt_scb_to_hdl(p_scb), p_data->p_pkt,time_stamp,(uint8_t)(m_pt | (marker << 7)));}


btif_a2dp_sink_update_decoder-》BTIF_MEDIA_SINK_DECODER_UPDATE



btif_a2dp_sink_command_ready

btif_a2dp_sink_command_ready
->

    case BTIF_MEDIA_SINK_DECODER_UPDATE:btif_a2dp_sink_decoder_update_event((tBTIF_MEDIA_SINK_DECODER_UPDATE*)p_msg);break;

创建基于 android native层audiotrack.cpp的播放器
---->

  btif_a2dp_sink_cb.audio_track =
#ifndef OS_GENERICBtifAvrcpAudioTrackCreate(sample_rate, channel_type);
#elseNULL;
#endifif (btif_a2dp_sink_cb.audio_track == NULL) {APPL_TRACE_ERROR("%s: A2dpSink: Track creation failed", __func__);return;}

->如下创建audiotrack,使用AudioTrack.cpp这个文件中的native AudioTrack类进行播放的app,播放状态都不会被java层track(这里是追踪的意思)
system/bt/btif/src/btif_avrcp_audio_track.cc

audio sink角色接收到soure角色的数据后向下将数据解码并写到播放设备


btif_av_sink_execute_service->

bte_av_sink_media_callback->
btif_a2dp_sink_enqueue_buf->
btif_a2dp_sink_audio_handle_start_decoding->
20ms后执行btif_decode_alarm_cb->

btif_a2dp_sink_avk_handle_timer->
btif_a2dp_sink_handle_inc_media->
BtifAvrcpAudioTrackWriteData

如上打开,打开AudioTrack.cpp write的函数向speaker播放音频

打开DUMP_PCM_DATA宏可以追踪播放音乐时的断续问题
路径为:/data/misc/bluedroid/output_sample.pcm

来数据时
bta_av_sink_data_cback发送BTA_AV_SINK_MEDIA_DATA_EVT事件,bta_av_sink_data_cback这里可以将frame number :p_pkt->layer_specific打印出来,看是否丢失数据了

bta_av_sink_data_cback在bta_av_api_register里注册

a2dp基于avdt协议如协议手册

void avdt_scb_init(void) {memset(&avdt_cb.scb[0], 0, sizeof(tAVDT_SCB) * AVDT_NUM_SEPS);avdt_cb.p_scb_act = (tAVDT_SCB_ACTION*)avdt_scb_action;
}

avdt_scb_hdl_pkt->avdt_scb_hdl_pkt_no_frag->下一层avdt层调用数据的callback从而将数据传到a2dp 层,这里为a2dp sink

播放日志,如日志,播放时bt stack打开,执行java层的callback函数,让上层去获取歌曲信息
btif_av_execute_service->

    BTA_AvEnable(BTA_SEC_AUTHENTICATE,(BTA_AV_FEAT_RCTG | BTA_AV_FEAT_NO_SCO_SSPD), bte_av_callback);
static void bte_av_callback(tBTA_AV_EVT event, tBTA_AV* p_data) {btif_transfer_context(btif_av_handle_event, event, (char*)p_data,sizeof(tBTA_AV), btif_av_event_deep_copy);
}








播放控制

播放然后暂停

2010-01-01 11:38:47.643 1581-1667/com.android.bluetooth E/bt_btif: bta_av_proc_stream_evt: p_data is null
2010-01-01 11:38:47.643 1581-1667/com.android.bluetooth I/bt_bta_av: bta_av_link_role_ok hndl:x41 role:1 conn_audio:x1 bits:1 features:x825b
2010-01-01 11:38:47.643 1581-1667/com.android.bluetooth W/bt_btif: bta_dm_rm_cback:2, status:0
2010-01-01 11:38:47.644 1581-1667/com.android.bluetooth W/bt_btif: bta_dm_pm_ssr conn_srvc id:27, app_id:1
2010-01-01 11:38:47.644 1581-1667/com.android.bluetooth W/bt_btif: bta_dm_pm_ssr conn_srvc id:18, app_id:0
2010-01-01 11:38:47.644 1581-1667/com.android.bluetooth W/bt_btif: bta_dm_pm_ssr conn_srvc id:18, app_id:1
2010-01-01 11:38:47.644 1581-1667/com.android.bluetooth W/bt_btif: bta_dm_pm_ssr ssr:2, lat:1200
2010-01-01 11:38:47.644 1581-1667/com.android.bluetooth W/bt_btif: bta_dm_rm_cback:2, status:7
2010-01-01 11:38:47.648 1581-1629/com.android.bluetooth W/bt_btif: btif_av_state_opened_handler: BTA_AV_START_EVT status=0 suspending=0 initiator=0 flags=0x2
2010-01-01 11:38:47.649 1581-1629/com.android.bluetooth I/BluetoothA2dpSinkServiceJni: bta2dp_audio_state_callback
2010-01-01 11:38:47.651 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine: Connected process message: 101
2010-01-01 11:38:47.651 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine:  processAudioStateEvent in state 2
2010-01-01 11:38:47.651 1581-1679/com.android.bluetooth D/AvrcpControllerService: getAvrcpControllerService(): returning com.android.bluetooth.avrcpcontroller.AvrcpControllerService@d83dbc
2010-01-01 11:38:47.668 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: 202
2010-01-01 11:38:47.669 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:47.669 1581-1688/com.android.bluetooth D/AvrcpPlayer: getPlayBackState state 2 time 20666
2010-01-01 11:38:47.669 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastPlayBackStateChanged = PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3864548, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.697 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:47.697 1581-1688/com.android.bluetooth D/AvrcpTrackInfo:  TrackInfo Metadata [artist=王大毛 trackTitle= 去年夏天 albumTitle= 去年夏天 genre=  trackNum= -1 track_len : 245026 TotalTracks -1]
2010-01-01 11:38:47.698 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastMetaDataChanged = 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.698 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3864548, actions=0, custom actions=[], active item id=-1, error=null} mmd: null
2010-01-01 11:38:47.702 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3638109, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.703 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:47.703 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() playbackstate PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3864548, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.709 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:47.709 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: null mmd: android.media.MediaMetadata@c9d53ec
2010-01-01 11:38:47.717 1581-1629/com.android.bluetooth I/BluetoothAvrcpControllerJni: btavrcp_play_status_changed_callback
2010-01-01 11:38:47.717 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3864548, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.717 1581-1629/com.android.bluetooth D/AvrcpControllerService: onPlayStatusChanged 1
2010-01-01 11:38:47.717 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:47.718 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() mmd 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.718 1581-1629/com.android.bluetooth I/BluetoothAvrcpControllerJni: btavrcp_play_status_changed_callback
2010-01-01 11:38:47.718 1581-1629/com.android.bluetooth D/AvrcpControllerService: onPlayStatusChanged 1
2010-01-01 11:38:47.720 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: CB_PLAY_STATUS_CHANGED
2010-01-01 11:38:47.720 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:47.721 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: CB_PLAY_STATUS_CHANGED
2010-01-01 11:38:47.721 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:47.721 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine: Connected process message: 303
2010-01-01 11:38:47.722 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine: Connected process message: 303
2010-01-01 11:38:47.722 1581-1679/com.android.bluetooth D/AvrcpControllerService: getAvrcpControllerService(): returning com.android.bluetooth.avrcpcontroller.AvrcpControllerService@d83dbc
2010-01-01 11:38:47.727 1581-1679/com.android.bluetooth D/AvrcpControllerService: getAvrcpControllerService(): returning com.android.bluetooth.avrcpcontroller.AvrcpControllerService@d83dbc
2010-01-01 11:38:47.727 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: 202
2010-01-01 11:38:47.727 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:47.728 1581-1688/com.android.bluetooth D/AvrcpPlayer: getPlayBackState state 3 time 20666
2010-01-01 11:38:47.728 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastPlayBackStateChanged = PlaybackState {state=3, position=20666, buffered position=0, speed=1.0, updated=3864607, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.737 1581-1688/com.android.bluetooth D/AvrcpTrackInfo:  TrackInfo Metadata [artist=王大毛 trackTitle= 去年夏天 albumTitle= 去年夏天 genre=  trackNum= -1 track_len : 245026 TotalTracks -1]
2010-01-01 11:38:47.738 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastMetaDataChanged = 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.741 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:47.742 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: PlaybackState {state=3, position=20666, buffered position=0, speed=1.0, updated=3864607, actions=0, custom actions=[], active item id=-1, error=null} mmd: null
2010-01-01 11:38:47.746 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3864548, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.747 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:47.747 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: 202
2010-01-01 11:38:47.748 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:47.748 1581-1688/com.android.bluetooth D/AvrcpPlayer: getPlayBackState state 3 time 20666
2010-01-01 11:38:47.748 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastPlayBackStateChanged = PlaybackState {state=3, position=20666, buffered position=0, speed=1.0, updated=3864627, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.749 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() playbackstate PlaybackState {state=3, position=20666, buffered position=0, speed=1.0, updated=3864607, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.755 1581-1629/com.android.bluetooth I/BluetoothAvrcpControllerJni: btavrcp_track_changed_callback
2010-01-01 11:38:47.755 1581-1629/com.android.bluetooth D/AvrcpControllerService: onTrackChanged
2010-01-01 11:38:47.756 1581-1629/com.android.bluetooth D/AvrcpControllerService: onTrackChanged Metadata [artist=王大毛 trackTitle= 去年夏天 albumTitle= 去年夏天 genre=  trackNum= -1 track_len : 245026 TotalTracks -1]
2010-01-01 11:38:47.761 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:47.762 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: null mmd: android.media.MediaMetadata@61dcdbb
2010-01-01 11:38:47.764 1581-1688/com.android.bluetooth D/AvrcpTrackInfo:  TrackInfo Metadata [artist=王大毛 trackTitle= 去年夏天 albumTitle= 去年夏天 genre=  trackNum= -1 track_len : 245026 TotalTracks -1]
2010-01-01 11:38:47.765 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastMetaDataChanged = 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.765 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=3, position=20701, buffered position=0, speed=1.0, updated=3864642, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.768 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:47.769 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() mmd 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.777 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:47.778 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: PlaybackState {state=3, position=20666, buffered position=0, speed=1.0, updated=3864627, actions=0, custom actions=[], active item id=-1, error=null} mmd: null
2010-01-01 11:38:47.779 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: CB_TRACK_CHANGED
2010-01-01 11:38:47.780 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:47.780 1581-1688/com.android.bluetooth D/AvrcpTrackInfo:  TrackInfo Metadata [artist=王大毛 trackTitle= 去年夏天 albumTitle= 去年夏天 genre=  trackNum= -1 track_len : 245026 TotalTracks -1]
2010-01-01 11:38:47.781 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastMetaDataChanged = 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.786 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=3, position=20718, buffered position=0, speed=1.0, updated=3864659, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.788 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:47.788 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() playbackstate PlaybackState {state=3, position=20666, buffered position=0, speed=1.0, updated=3864627, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.794 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:47.795 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:47.796 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: null mmd: android.media.MediaMetadata@3d18a97
2010-01-01 11:38:47.800 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=3, position=20715, buffered position=0, speed=1.0, updated=3864676, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.802 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:47.802 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() mmd 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.806 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: null mmd: android.media.MediaMetadata@3c3484
2010-01-01 11:38:47.814 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=3, position=20726, buffered position=0, speed=1.0, updated=3864687, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:47.815 1581-1667/com.android.bluetooth D/AudioTrack: start(): 0xa2436800, mState = 4
2010-01-01 11:38:47.816 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:47.817 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() mmd 去年夏天, 王大毛, 去年夏天
2010-01-01 11:38:47.843 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:47.844 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10981184), mIsOut 1, avail 2052, mFrameCount 2052, filled 0
2010-01-01 11:38:47.844 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10981184), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:47.844 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 1024
2010-01-01 11:38:47.864 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:47.864 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10981184), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:47.864 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 2048
2010-01-01 11:38:47.883 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:47.884 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10981184), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:47.884 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10981184), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:47.884 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10981184), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:47.884 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10981184), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:47.940 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10983232), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:47.940 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 3072
2010-01-01 11:38:47.941 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:47.941 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10983232), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:47.941 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 4096
2010-01-01 11:38:47.941 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:47.942 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10983232), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:47.942 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10983232), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:47.942 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10983232), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:47.942 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10983232), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:47.983 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10985280), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:47.983 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10985280), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:47.983 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 5120
2010-01-01 11:38:47.984 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:47.984 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10985280), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:47.984 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 6144
2010-01-01 11:38:47.984 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:47.985 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10985280), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:47.985 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10985280), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:47.985 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10985280), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:47.985 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10985280), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.025 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10987328), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.026 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 7168
2010-01-01 11:38:48.026 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.026 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10987328), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.027 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 8192
2010-01-01 11:38:48.027 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.027 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10987328), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.028 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10987328), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.028 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10987328), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.028 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10987328), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.068 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10989376), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.068 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10989376), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.069 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 9216
2010-01-01 11:38:48.069 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.069 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10989376), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.069 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 10240
2010-01-01 11:38:48.070 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.070 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10989376), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.070 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10989376), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.070 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10989376), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.070 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10989376), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.111 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10991424), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.111 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 11264
2010-01-01 11:38:48.112 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.112 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10991424), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.112 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 12288
2010-01-01 11:38:48.112 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.113 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10991424), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.113 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10991424), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.113 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10991424), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.113 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10991424), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.154 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10993472), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.154 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10993472), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.154 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 13312
2010-01-01 11:38:48.155 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.155 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10993472), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.155 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 14336
2010-01-01 11:38:48.155 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.156 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10993472), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.156 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10993472), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.156 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10993472), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.156 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10993472), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.196 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10995520), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.196 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 15360
2010-01-01 11:38:48.197 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.197 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10995520), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.197 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 16384
2010-01-01 11:38:48.198 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.198 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10995520), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.198 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10995520), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.198 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10995520), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.198 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10995520), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.239 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10997568), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.239 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10997568), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.239 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 17408
2010-01-01 11:38:48.240 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.240 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10997568), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.240 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 18432
2010-01-01 11:38:48.241 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.241 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10997568), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.241 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10997568), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.241 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10997568), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.241 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10997568), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.281 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10999616), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.282 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 19456
2010-01-01 11:38:48.282 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.283 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10999616), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.283 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 20480
2010-01-01 11:38:48.283 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.283 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10999616), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.284 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10999616), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.284 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10999616), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.284 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(10999616), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.324 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11001664), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.324 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11001664), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.325 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 21504
2010-01-01 11:38:48.325 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.325 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11001664), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.326 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 22528
2010-01-01 11:38:48.326 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.326 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11001664), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.326 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11001664), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.326 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11001664), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.327 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11001664), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.367 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11003712), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.367 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 23552
2010-01-01 11:38:48.368 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.368 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11003712), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.368 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 24576
2010-01-01 11:38:48.369 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.369 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11003712), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.369 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11003712), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.369 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11003712), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.369 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11003712), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.410 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11005760), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.410 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11005760), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.410 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 25600
2010-01-01 11:38:48.411 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.411 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11005760), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.411 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 26624
2010-01-01 11:38:48.412 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.412 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11005760), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.412 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11005760), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.412 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11005760), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.412 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11005760), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.452 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11007808), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.452 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 27648
2010-01-01 11:38:48.453 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.453 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11007808), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.453 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 28672
2010-01-01 11:38:48.454 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.454 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11007808), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.454 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11007808), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.454 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11007808), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.454 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11007808), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.495 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11009856), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.496 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11009856), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.496 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 29696
2010-01-01 11:38:48.497 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.498 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11009856), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.498 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 30720
2010-01-01 11:38:48.499 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.499 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11009856), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.499 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11009856), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.499 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11009856), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.499 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11009856), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.538 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11011904), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.538 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 31744
2010-01-01 11:38:48.539 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.539 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11011904), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.540 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 32768
2010-01-01 11:38:48.541 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.541 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11011904), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.541 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11011904), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.541 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11011904), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.541 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11011904), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.581 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11013952), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.581 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11013952), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.581 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 33792
2010-01-01 11:38:48.582 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.582 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11013952), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.582 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 34816
2010-01-01 11:38:48.583 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.583 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11013952), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.584 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11013952), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.584 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11013952), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.584 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11013952), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.624 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11016000), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.624 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 35840
2010-01-01 11:38:48.625 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.625 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11016000), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.625 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 36864
2010-01-01 11:38:48.626 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.626 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11016000), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.627 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11016000), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.627 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11016000), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.627 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11016000), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.666 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11018048), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.666 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11018048), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.666 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 37888
2010-01-01 11:38:48.667 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.667 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11018048), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.668 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 38912
2010-01-01 11:38:48.669 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.669 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11018048), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.669 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11018048), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.669 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11018048), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.669 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11018048), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.709 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11020096), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.709 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 39936
2010-01-01 11:38:48.710 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.710 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11020096), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.711 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 40960
2010-01-01 11:38:48.711 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.711 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11020096), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.712 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11020096), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.712 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11020096), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.712 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11020096), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.751 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11022144), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.752 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11022144), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.752 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 41984
2010-01-01 11:38:48.753 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.753 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11022144), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.753 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 43008
2010-01-01 11:38:48.754 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.754 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11022144), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.754 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11022144), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.755 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11022144), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.755 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11022144), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.794 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11024192), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.794 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 44032
2010-01-01 11:38:48.795 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.795 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11024192), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.795 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 45056
2010-01-01 11:38:48.796 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.796 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11024192), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.796 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11024192), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.796 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11024192), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.797 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11024192), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.836 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11026240), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.837 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11026240), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.837 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 46080
2010-01-01 11:38:48.838 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.838 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11026240), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.838 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 47104
2010-01-01 11:38:48.839 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.839 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11026240), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.839 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11026240), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.839 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11026240), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.839 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11026240), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.879 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11028288), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.879 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 48128
2010-01-01 11:38:48.880 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.880 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11028288), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.880 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 49152
2010-01-01 11:38:48.881 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.881 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11028288), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.881 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11028288), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.882 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11028288), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.882 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11028288), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.922 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11030336), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.922 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11030336), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:48.922 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 50176
2010-01-01 11:38:48.923 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.923 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11030336), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.923 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 51200
2010-01-01 11:38:48.924 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.924 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11030336), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.925 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11030336), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.925 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11030336), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.925 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11030336), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:48.964 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11032384), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:48.964 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 52224
2010-01-01 11:38:48.965 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.966 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11032384), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:48.966 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 53248
2010-01-01 11:38:48.966 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:48.967 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11032384), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:48.967 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11032384), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.967 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11032384), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:48.967 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11032384), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.007 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11034432), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.008 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11034432), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.008 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 54272
2010-01-01 11:38:49.009 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.009 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11034432), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.009 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 55296
2010-01-01 11:38:49.010 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.010 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11034432), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.010 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11034432), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.010 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11034432), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.010 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11034432), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.050 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11036480), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.050 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 56320
2010-01-01 11:38:49.051 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.051 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11036480), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.051 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 57344
2010-01-01 11:38:49.052 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.052 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11036480), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.052 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11036480), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.052 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11036480), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.052 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11036480), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.093 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11038528), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.093 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11038528), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.093 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 58368
2010-01-01 11:38:49.094 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.094 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11038528), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.094 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 59392
2010-01-01 11:38:49.095 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.095 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11038528), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.095 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11038528), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.095 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11038528), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.095 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11038528), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.133 1581-1629/com.android.bluetooth I/BluetoothAvrcpControllerJni: btavrcp_play_status_changed_callback
2010-01-01 11:38:49.134 1581-1629/com.android.bluetooth D/AvrcpControllerService: onPlayStatusChanged 2
2010-01-01 11:38:49.135 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11040576), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.135 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 60416
2010-01-01 11:38:49.136 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.136 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11040576), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.136 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 61440
2010-01-01 11:38:49.137 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.137 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11040576), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.137 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11040576), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.138 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11040576), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.138 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11040576), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.141 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: CB_PLAY_STATUS_CHANGED
2010-01-01 11:38:49.141 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:49.145 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine: Connected process message: 304
2010-01-01 11:38:49.145 1581-1679/com.android.bluetooth D/AvrcpControllerService: getAvrcpControllerService(): returning com.android.bluetooth.avrcpcontroller.AvrcpControllerService@d83dbc
2010-01-01 11:38:49.146 1581-1629/com.android.bluetooth I/BluetoothAvrcpControllerJni: btavrcp_play_status_changed_callback
2010-01-01 11:38:49.152 1581-1629/com.android.bluetooth D/AvrcpControllerService: onPlayStatusChanged 2
2010-01-01 11:38:49.154 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: 201
2010-01-01 11:38:49.154 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:49.155 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastPlayBackStateChanged = PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866033, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:49.161 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: CB_PLAY_STATUS_CHANGED
2010-01-01 11:38:49.161 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:49.162 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine: Connected process message: 304
2010-01-01 11:38:49.162 1581-1679/com.android.bluetooth D/AvrcpControllerService: getAvrcpControllerService(): returning com.android.bluetooth.avrcpcontroller.AvrcpControllerService@d83dbc
2010-01-01 11:38:49.164 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:49.165 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866033, actions=0, custom actions=[], active item id=-1, error=null} mmd: null
2010-01-01 11:38:49.167 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=3, position=22084, buffered position=0, speed=1.0, updated=3866045, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:49.168 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:49.168 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() playbackstate PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866033, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:49.171 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: 201
2010-01-01 11:38:49.171 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:49.172 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastPlayBackStateChanged = PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866051, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:49.179 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11042624), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.179 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11042624), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.179 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 62464
2010-01-01 11:38:49.180 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.180 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11042624), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.180 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 63488
2010-01-01 11:38:49.181 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.181 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11042624), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.181 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11042624), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.181 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11042624), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.181 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11042624), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.181 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:49.182 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866051, actions=0, custom actions=[], active item id=-1, error=null} mmd: null
2010-01-01 11:38:49.186 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866033, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:49.187 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:49.187 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() playbackstate PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866051, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:49.220 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11044672), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.220 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 64512
2010-01-01 11:38:49.221 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.221 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11044672), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.221 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 65536
2010-01-01 11:38:49.222 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.222 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11044672), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.222 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11044672), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.222 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11044672), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.222 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11044672), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.263 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11046720), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.263 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11046720), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.263 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 66560
2010-01-01 11:38:49.264 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.264 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11046720), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.264 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 67584
2010-01-01 11:38:49.265 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.265 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11046720), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.265 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11046720), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.265 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11046720), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.265 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11046720), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.305 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11048768), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.306 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 68608
2010-01-01 11:38:49.306 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.306 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11048768), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.306 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 69632
2010-01-01 11:38:49.307 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.307 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11048768), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.307 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11048768), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.307 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11048768), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.308 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11048768), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.348 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11050816), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.349 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11050816), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.349 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 70656
2010-01-01 11:38:49.349 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.349 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11050816), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.349 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 71680
2010-01-01 11:38:49.350 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.350 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11050816), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.350 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11050816), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.350 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11050816), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.351 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11050816), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.391 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11052864), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.391 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 72704
2010-01-01 11:38:49.392 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.392 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11052864), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.392 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 73728
2010-01-01 11:38:49.392 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.392 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11052864), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.393 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11052864), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.393 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11052864), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.393 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11052864), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.434 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11054912), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.434 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11054912), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.434 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 74752
2010-01-01 11:38:49.434 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.435 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11054912), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.435 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 75776
2010-01-01 11:38:49.435 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.435 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11054912), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.435 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11054912), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.436 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11054912), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.436 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11054912), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.476 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11056960), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.476 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 76800
2010-01-01 11:38:49.477 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.477 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11056960), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.477 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 77824
2010-01-01 11:38:49.478 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.478 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11056960), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.478 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11056960), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.478 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11056960), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.479 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11056960), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.519 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11059008), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.519 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11059008), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.519 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 78848
2010-01-01 11:38:49.520 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.520 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11059008), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.520 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 79872
2010-01-01 11:38:49.521 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.521 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11059008), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.521 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11059008), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.521 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11059008), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.521 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11059008), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.562 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11061056), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.562 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 80896
2010-01-01 11:38:49.562 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.562 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11061056), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.562 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 81920
2010-01-01 11:38:49.563 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.563 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11061056), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.563 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11061056), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.563 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11061056), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.563 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11061056), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.604 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11063104), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.604 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11063104), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.605 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 82944
2010-01-01 11:38:49.605 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.605 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11063104), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.605 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 83968
2010-01-01 11:38:49.606 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.606 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11063104), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.606 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11063104), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.606 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11063104), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.606 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11063104), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.647 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11065152), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.647 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 84992
2010-01-01 11:38:49.648 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.648 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11065152), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.649 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 86016
2010-01-01 11:38:49.649 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.649 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11065152), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.650 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11065152), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.650 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11065152), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.650 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11065152), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.690 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11067200), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.690 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11067200), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.690 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 87040
2010-01-01 11:38:49.691 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.691 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11067200), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.691 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 88064
2010-01-01 11:38:49.692 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.692 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11067200), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.692 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11067200), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.692 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11067200), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.692 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11067200), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.733 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11069248), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.733 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 89088
2010-01-01 11:38:49.734 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.734 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11069248), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.734 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 90112
2010-01-01 11:38:49.735 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.735 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11069248), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.735 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11069248), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.736 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11069248), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.736 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11069248), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.775 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11071296), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.775 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11071296), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.775 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 91136
2010-01-01 11:38:49.776 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.776 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11071296), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.776 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 92160
2010-01-01 11:38:49.777 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.777 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11071296), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.777 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11071296), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.777 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11071296), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.778 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11071296), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.817 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11073344), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.818 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 93184
2010-01-01 11:38:49.818 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.818 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11073344), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.818 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 94208
2010-01-01 11:38:49.819 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.819 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11073344), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.819 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11073344), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.819 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11073344), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.819 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11073344), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.860 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11075392), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.860 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11075392), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.861 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 95232
2010-01-01 11:38:49.861 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.861 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11075392), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.862 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 96256
2010-01-01 11:38:49.862 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.862 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11075392), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.862 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11075392), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.862 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11075392), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.863 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11075392), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.903 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11077440), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.903 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 97280
2010-01-01 11:38:49.904 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.904 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11077440), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.904 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 98304
2010-01-01 11:38:49.904 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.904 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11077440), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.905 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11077440), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.905 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11077440), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.905 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11077440), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.945 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11079488), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.946 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11079488), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:49.946 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 99328
2010-01-01 11:38:49.946 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.946 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11079488), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.947 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 100352
2010-01-01 11:38:49.947 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.948 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11079488), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.948 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11079488), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.948 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11079488), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.948 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11079488), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:49.988 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11081536), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:49.989 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 101376
2010-01-01 11:38:49.989 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.989 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11081536), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:49.990 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 102400
2010-01-01 11:38:49.990 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:49.991 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11081536), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:49.991 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11081536), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.991 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11081536), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:49.991 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11081536), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.031 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11083584), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.031 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11083584), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.031 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 103424
2010-01-01 11:38:50.032 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.032 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11083584), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.033 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 104448
2010-01-01 11:38:50.033 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.034 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11083584), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.034 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11083584), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.034 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11083584), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.034 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11083584), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.074 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11085632), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.074 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 105472
2010-01-01 11:38:50.075 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.075 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11085632), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.076 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 106496
2010-01-01 11:38:50.076 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.077 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11085632), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.077 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11085632), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.077 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11085632), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.077 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11085632), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.116 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11087680), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.117 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11087680), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.117 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 107520
2010-01-01 11:38:50.118 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.118 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11087680), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.118 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 108544
2010-01-01 11:38:50.119 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.119 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11087680), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.119 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11087680), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.119 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11087680), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.119 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11087680), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.159 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11089728), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.159 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 109568
2010-01-01 11:38:50.160 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.160 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11089728), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.161 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 110592
2010-01-01 11:38:50.161 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.162 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11089728), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.162 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11089728), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.162 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11089728), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.162 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11089728), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.202 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11091776), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.202 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11091776), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.202 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 111616
2010-01-01 11:38:50.203 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.204 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11091776), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.204 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 112640
2010-01-01 11:38:50.205 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.205 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11091776), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.205 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11091776), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.205 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11091776), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.205 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11091776), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.244 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11093824), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.244 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 113664
2010-01-01 11:38:50.245 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.245 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11093824), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.245 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 114688
2010-01-01 11:38:50.246 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.246 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11093824), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.246 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11093824), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.247 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11093824), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.247 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11093824), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.287 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11095872), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.287 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11095872), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.287 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 115712
2010-01-01 11:38:50.288 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.288 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11095872), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.288 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 116736
2010-01-01 11:38:50.289 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.289 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11095872), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.289 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11095872), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.289 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11095872), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.289 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11095872), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.329 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11097920), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.330 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 117760
2010-01-01 11:38:50.330 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.331 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11097920), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.331 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 118784
2010-01-01 11:38:50.331 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.332 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11097920), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.332 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11097920), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.332 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11097920), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.332 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11097920), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.372 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11099968), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.372 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11099968), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.372 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 119808
2010-01-01 11:38:50.373 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.373 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11099968), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.373 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 120832
2010-01-01 11:38:50.374 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.374 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11099968), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.374 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11099968), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.374 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11099968), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.374 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11099968), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.415 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11102016), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.415 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 121856
2010-01-01 11:38:50.415 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.416 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11102016), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.416 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 122880
2010-01-01 11:38:50.416 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.417 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11102016), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.417 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11102016), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.417 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11102016), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.417 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11102016), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.458 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11104064), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.458 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11104064), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.458 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 123904
2010-01-01 11:38:50.459 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.459 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11104064), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.460 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 124928
2010-01-01 11:38:50.461 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.461 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11104064), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.462 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11104064), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.462 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11104064), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.462 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11104064), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.501 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11106112), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.501 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 125952
2010-01-01 11:38:50.502 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.502 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11106112), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.502 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 126976
2010-01-01 11:38:50.503 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.503 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11106112), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.503 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11106112), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.504 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11106112), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.504 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11106112), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.544 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11108160), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.544 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11108160), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.544 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 128000
2010-01-01 11:38:50.545 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.545 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11108160), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.545 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 129024
2010-01-01 11:38:50.546 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.546 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11108160), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.546 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11108160), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.546 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11108160), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.547 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11108160), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.586 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11110208), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.586 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 130048
2010-01-01 11:38:50.587 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.587 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11110208), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.588 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 131072
2010-01-01 11:38:50.588 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.588 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11110208), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.589 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11110208), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.589 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11110208), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.589 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11110208), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.628 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11112256), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.628 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11112256), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.629 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 132096
2010-01-01 11:38:50.629 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.629 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11112256), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.629 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 133120
2010-01-01 11:38:50.630 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.630 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11112256), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.630 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11112256), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.630 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11112256), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.630 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11112256), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.671 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11114304), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.671 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 134144
2010-01-01 11:38:50.672 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.672 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11114304), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.672 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 135168
2010-01-01 11:38:50.672 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.673 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11114304), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.673 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11114304), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.673 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11114304), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.673 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11114304), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.714 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11116352), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.714 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11116352), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.714 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 136192
2010-01-01 11:38:50.715 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.715 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11116352), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.715 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 137216
2010-01-01 11:38:50.716 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.716 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11116352), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.716 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11116352), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.716 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11116352), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.716 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11116352), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.757 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11118400), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.757 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 138240
2010-01-01 11:38:50.757 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.758 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11118400), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.758 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 139264
2010-01-01 11:38:50.758 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.758 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11118400), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.759 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11118400), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.759 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11118400), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.759 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11118400), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.799 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11120448), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.799 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11120448), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.799 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 140288
2010-01-01 11:38:50.800 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.800 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11120448), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.800 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 141312
2010-01-01 11:38:50.801 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.801 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11120448), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.801 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11120448), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.801 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11120448), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.802 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11120448), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.842 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11122496), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.842 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 142336
2010-01-01 11:38:50.842 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.843 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11122496), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.843 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 143360
2010-01-01 11:38:50.843 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.843 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11122496), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.844 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11122496), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.844 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11122496), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.844 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11122496), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.884 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11124544), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.884 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11124544), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.885 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 144384
2010-01-01 11:38:50.885 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.885 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11124544), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.885 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 145408
2010-01-01 11:38:50.886 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.886 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11124544), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.886 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11124544), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.886 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11124544), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.886 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11124544), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.927 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11126592), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.927 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 146432
2010-01-01 11:38:50.928 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.928 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11126592), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.928 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 147456
2010-01-01 11:38:50.929 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.929 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11126592), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.929 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11126592), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.929 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11126592), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.929 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11126592), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:50.970 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11128640), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:50.970 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11128640), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:50.970 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 148480
2010-01-01 11:38:50.971 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.971 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11128640), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:50.971 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 149504
2010-01-01 11:38:50.972 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:50.972 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11128640), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:50.972 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11128640), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.972 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11128640), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:50.972 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11128640), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.012 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11130688), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.013 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 150528
2010-01-01 11:38:51.013 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.013 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11130688), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.014 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 151552
2010-01-01 11:38:51.014 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.014 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11130688), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.014 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11130688), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.014 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11130688), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.015 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11130688), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.055 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11132736), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.055 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11132736), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.056 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 152576
2010-01-01 11:38:51.056 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.056 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11132736), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.056 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 153600
2010-01-01 11:38:51.057 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.057 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11132736), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.057 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11132736), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.057 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11132736), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.057 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11132736), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.097 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11134784), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.098 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 154624
2010-01-01 11:38:51.098 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.098 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11134784), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.098 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 155648
2010-01-01 11:38:51.099 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.099 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11134784), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.099 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11134784), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.099 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11134784), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.099 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11134784), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.140 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11136832), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.141 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11136832), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.141 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 156672
2010-01-01 11:38:51.141 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.141 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11136832), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.142 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 157696
2010-01-01 11:38:51.142 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.142 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11136832), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.142 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11136832), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.142 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11136832), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.143 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11136832), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.183 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11138880), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.184 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 158720
2010-01-01 11:38:51.185 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.185 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11138880), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.185 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 159744
2010-01-01 11:38:51.186 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.186 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11138880), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.186 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11138880), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.186 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11138880), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.187 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11138880), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.226 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11140928), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.226 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11140928), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.226 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 160768
2010-01-01 11:38:51.227 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.227 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11140928), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.228 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 161792
2010-01-01 11:38:51.228 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.229 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11140928), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.229 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11140928), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.229 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11140928), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.229 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11140928), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.268 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11142976), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.268 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 162816
2010-01-01 11:38:51.269 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.269 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11142976), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.269 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 163840
2010-01-01 11:38:51.270 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.270 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11142976), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.271 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11142976), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.271 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11142976), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.271 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11142976), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.311 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11145024), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.311 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11145024), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.311 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 164864
2010-01-01 11:38:51.312 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.312 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11145024), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.312 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 165888
2010-01-01 11:38:51.313 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.313 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11145024), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.313 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11145024), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.314 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11145024), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.314 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11145024), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.354 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11147072), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.354 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 166912
2010-01-01 11:38:51.354 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.355 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11147072), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.355 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 167936
2010-01-01 11:38:51.355 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.355 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11147072), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.356 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11147072), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.356 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11147072), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.356 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11147072), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.396 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11149120), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.397 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11149120), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.397 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 168960
2010-01-01 11:38:51.397 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.398 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11149120), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.398 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 169984
2010-01-01 11:38:51.399 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.399 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11149120), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.399 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11149120), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.399 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11149120), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.399 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11149120), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.439 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11151168), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.439 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 171008
2010-01-01 11:38:51.440 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.441 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11151168), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.441 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 172032
2010-01-01 11:38:51.442 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.442 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11151168), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.442 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11151168), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.442 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11151168), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.443 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11151168), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.482 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11153216), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.482 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11153216), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.482 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 173056
2010-01-01 11:38:51.483 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.484 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11153216), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.484 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 174080
2010-01-01 11:38:51.485 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.485 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11153216), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.485 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11153216), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.485 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11153216), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.485 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11153216), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.524 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11155264), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.525 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 175104
2010-01-01 11:38:51.525 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.526 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11155264), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.526 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 176128
2010-01-01 11:38:51.527 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.527 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11155264), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.527 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11155264), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.527 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11155264), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.528 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11155264), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.568 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11157312), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.568 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11157312), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.568 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 177152
2010-01-01 11:38:51.569 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.569 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11157312), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.569 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 178176
2010-01-01 11:38:51.570 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.570 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11157312), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.571 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11157312), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.571 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11157312), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.571 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11157312), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.610 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11159360), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.611 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 179200
2010-01-01 11:38:51.611 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.612 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11159360), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.612 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 180224
2010-01-01 11:38:51.613 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.613 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11159360), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.613 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11159360), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.614 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11159360), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.614 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11159360), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.652 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11161408), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.652 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11161408), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.653 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 181248
2010-01-01 11:38:51.654 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.654 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11161408), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.654 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 182272
2010-01-01 11:38:51.655 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.655 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11161408), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.655 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11161408), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.655 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11161408), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.655 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11161408), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.695 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11163456), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.695 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 183296
2010-01-01 11:38:51.696 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.696 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11163456), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.696 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 184320
2010-01-01 11:38:51.697 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.697 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11163456), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.698 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11163456), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.698 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11163456), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.698 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11163456), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.738 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11165504), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.738 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11165504), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.739 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 185344
2010-01-01 11:38:51.740 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.741 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11165504), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.741 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 186368
2010-01-01 11:38:51.742 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.742 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11165504), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.742 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11165504), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.743 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11165504), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.743 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11165504), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.780 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11167552), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.780 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 187392
2010-01-01 11:38:51.781 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.781 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11167552), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.781 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 188416
2010-01-01 11:38:51.782 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.782 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11167552), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.782 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11167552), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.782 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11167552), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.782 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11167552), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.823 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11169600), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.823 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11169600), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.823 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 189440
2010-01-01 11:38:51.824 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.824 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11169600), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.824 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 190464
2010-01-01 11:38:51.824 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.825 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11169600), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.825 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11169600), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.825 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11169600), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.825 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11169600), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.866 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11171648), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.866 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 191488
2010-01-01 11:38:51.866 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.867 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11171648), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.867 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 192512
2010-01-01 11:38:51.868 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.868 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11171648), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.868 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11171648), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.868 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11171648), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.868 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11171648), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.908 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11173696), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.909 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11173696), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.909 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 193536
2010-01-01 11:38:51.909 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.909 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11173696), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.910 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 194560
2010-01-01 11:38:51.910 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.911 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11173696), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.911 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11173696), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.911 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11173696), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.911 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11173696), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.951 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11175744), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.951 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 195584
2010-01-01 11:38:51.952 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.952 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11175744), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.952 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 196608
2010-01-01 11:38:51.953 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.953 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11175744), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.953 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11175744), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.953 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11175744), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.953 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11175744), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:51.994 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11177792), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:51.994 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11177792), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:51.994 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 197632
2010-01-01 11:38:51.995 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.995 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11177792), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:51.995 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 198656
2010-01-01 11:38:51.996 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:51.996 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11177792), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:51.996 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11177792), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.996 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11177792), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:51.996 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11177792), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.037 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11179840), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:52.037 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 199680
2010-01-01 11:38:52.037 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.038 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11179840), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:52.038 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 200704
2010-01-01 11:38:52.038 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.039 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11179840), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:52.039 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11179840), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.039 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11179840), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.039 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11179840), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.079 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11181888), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:52.079 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11181888), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:52.079 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 201728
2010-01-01 11:38:52.080 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.080 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11181888), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:52.080 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 202752
2010-01-01 11:38:52.081 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.081 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11181888), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:52.081 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11181888), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.081 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11181888), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.081 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11181888), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.122 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11183936), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:52.122 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 203776
2010-01-01 11:38:52.122 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.122 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11183936), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:52.123 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 204800
2010-01-01 11:38:52.123 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.123 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11183936), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:52.123 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11183936), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.123 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11183936), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.124 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11183936), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.164 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11185984), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:52.165 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11185984), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:52.165 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 205824
2010-01-01 11:38:52.165 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.166 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11185984), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:52.166 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 206848
2010-01-01 11:38:52.167 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.168 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11185984), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:52.168 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11185984), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.168 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11185984), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.168 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11185984), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.208 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11188032), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:52.208 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 207872
2010-01-01 11:38:52.209 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.209 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11188032), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:52.209 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 208896
2010-01-01 11:38:52.210 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.210 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11188032), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:52.210 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11188032), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.211 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11188032), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.211 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11188032), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.249 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11190080), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:52.250 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11190080), mIsOut 1, avail 1860, mFrameCount 2052, filled 192
2010-01-01 11:38:52.250 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 209920
2010-01-01 11:38:52.251 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.251 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11190080), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:52.251 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 210944
2010-01-01 11:38:52.252 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.252 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11190080), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:52.252 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11190080), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.252 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11190080), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.252 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11190080), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.292 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11192128), mIsOut 1, avail 2048, mFrameCount 2052, filled 4
2010-01-01 11:38:52.292 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 211968
2010-01-01 11:38:52.293 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.293 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11192128), mIsOut 1, avail 1028, mFrameCount 2052, filled 1024
2010-01-01 11:38:52.293 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 1024, written = 4096, mFramesWritten = 212992
2010-01-01 11:38:52.294 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, userSize = 4096, blocking = 1
2010-01-01 11:38:52.294 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11192128), mIsOut 1, avail 4, mFrameCount 2052, filled 2048
2010-01-01 11:38:52.294 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11192128), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.294 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11192128), mIsOut 1, avail 0, mFrameCount 2052, filled 2052
2010-01-01 11:38:52.294 1581-1680/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11192128), mIsOut 1, obtainBuffer() FUTEX_WAIT
2010-01-01 11:38:52.306 1581-1667/com.android.bluetooth E/bt_btif: bta_av_proc_stream_evt: p_data is null
2010-01-01 11:38:52.306 1581-1667/com.android.bluetooth W/bt_btif: bta_dm_rm_cback:2, status:6
2010-01-01 11:38:52.307 1581-1629/com.android.bluetooth W/bt_btif: btif_av_state_started_handler: BTA_AV_SUSPEND_EVT status=0 initiator=0 flags=0x0
2010-01-01 11:38:52.308 1581-1629/com.android.bluetooth W/bt_btif: ## ON A2DP SUSPENDED ##
2010-01-01 11:38:52.308 1581-1629/com.android.bluetooth D/AudioTrack: pause(): 0xa2436800, mState = 0
2010-01-01 11:38:52.308 1581-1629/com.android.bluetooth D/AudioTrackShared: this(0xa2474900), mCblk(0x94b00000), front(11192128), mIsOut 1, interrupt() FUTEX_WAKE
2010-01-01 11:38:52.308 1581-1680/com.android.bluetooth D/AudioTrackShared: obtainBuffer() interrupted by client
2010-01-01 11:38:52.308 1581-1680/com.android.bluetooth D/AudioTrack: write: 0xa2436800, frames = 4, written = 16, mFramesWritten = 212996
2010-01-01 11:38:52.315 1581-1629/com.android.bluetooth D/AudioTrack: flush(): 0xa2436800, mState = 2
2010-01-01 11:38:52.316 1581-1629/com.android.bluetooth I/BluetoothA2dpSinkServiceJni: bta2dp_audio_state_callback
2010-01-01 11:38:52.319 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine: Connected process message: 101
2010-01-01 11:38:52.319 1581-1679/com.android.bluetooth D/A2dpSinkStateMachine:  processAudioStateEvent in state 0
2010-01-01 11:38:52.319 1581-1679/com.android.bluetooth D/AvrcpControllerService: getAvrcpControllerService(): returning com.android.bluetooth.avrcpcontroller.AvrcpControllerService@d83dbc
2010-01-01 11:38:52.330 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  HandleMessage: 201
2010-01-01 11:38:52.330 1581-1688/com.android.bluetooth D/A2dpSinkService: getA2dpSinkService(): returning com.android.bluetooth.a2dpsink.A2dpSinkService@d53b767
2010-01-01 11:38:52.330 1581-1688/com.android.bluetooth D/AvrcpControllerSM:  broadcastPlayBackStateChanged = PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3869209, actions=0, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:52.341 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: onReceive intent=Intent { act=android.bluetooth.avrcp-controller.profile.action.TRACK_EVENT flg=0x10 (has extras) }
2010-01-01 11:38:52.342 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack: playback: PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3869209, actions=0, custom actions=[], active item id=-1, error=null} mmd: null
2010-01-01 11:38:52.351 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prevPS PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3866051, actions=54, custom actions=[], active item id=-1, error=null}
2010-01-01 11:38:52.359 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: prev MM title 去年夏天 track len 245026
2010-01-01 11:38:52.376 1581-1581/com.android.bluetooth D/A2dpMediaBrowserService: msgTrack() playbackstate PlaybackState {state=2, position=20666, buffered position=0, speed=0.0, updated=3869209, actions=0, custom actions=[], active item id=-1, error=null}

bluedroid a2dp sink播放流程相关推荐

  1. a2dp sink 在android kk和L实现的区别

    bluetooth HID dev, HFP client ,a2dp sink在android平台已经支持,下面做下简单说明:在高通平台android4.4已经实现了a2dp sink,只要打开BT ...

  2. Android 8.1开启Bluetooth A2DP sink

    ** Android 8.1开启Bluetooth A2DP sink功能 ** Android O源码已经支持A2DP sink,只需要开启就可以了 一个是BTA_AV_SINK_INCLUDED设 ...

  3. FFmpeg音视频解码同步播放流程

    FFmpeg音视频解码同步播放流程 数据接收后处理流程及阶段示意图: 1.接收导数据(Trans Stage) 2.新建音.视频解码线程(Parse Stage) 3.将解码好的数据分别放入队列(St ...

  4. 视频直播APP源码开发iOS音频播放流程

    视频直播APP源码开发iOS音频播放流程 概览 随着移动互联网的发展,如今的手机早已不是打电话.发短信那么简单了,播放音乐.视频.录音.拍照等都是很常用的功能.在iOS中对于多媒体的支持是非常强大的, ...

  5. DASH推流及播放流程

    DASH推流及播放流程 推流及播放DASH流框图: 推流服务器NGINX配置文件: rtmp { server {listen 1935;chunk_size 4096;application das ...

  6. EasyCVR平台基于萤石云SDK接入的设备播放流程及接口调用

    EasyCVR视频融合云服务支持海量视频汇聚与管理.处理与分发.智能分析等视频能力,在功能上,可支持视频监控直播.云端录像.云存储.录像检索与回看.智能告警.平台级联.服务器集群等.EasyCVR平台 ...

  7. iOS:制作简易的 AAC 播放器 —— 了解音频的播放流程

    ????????关注后回复 "进群" ,拉你进程序员交流群???????? 作者丨千帆直播 来源丨搜狐技术产品(ID:sohu-tech) 本文字数:1872字 预计阅读时间:8分 ...

  8. 揭开RTMP播放流程的神秘面纱

    RTMP 是目前各种网络直播应用最核心的传输协议,也是互动直播采用最广泛的协议. 如果说流媒体服务器(Server)是网络直播的骨骼,RTMP则是网络直播的血液,可以说,没有RTMP,就没有今天如此火 ...

  9. ffmpeg播放流程和音视频同步

    详细的慢慢写, 先随便写点. ffmpeg播放流程 视频线程和音频线程单独解码, 然后放到同一个队列中进行时间戳同步, 然后再把解码后的数据放到视频线程和音频线程播放. 音视频同步 使用视频同步到音频 ...

最新文章

  1. CSS基础学习-15-1.CSS 浏览器内核
  2. 史上最萌最认真的机器学习/深度学习/模式识别入门指导手册(二)
  3. 技术干货| 阿里云基于Hudi构建Lakehouse实践探索「内附干货PPT下载渠道」
  4. USACO-Section1.5 Arithmetic Progressions(枚举)
  5. Java根据出生年月日获取到当前日期的年月日
  6. s2 安恒 漏洞验证工具_Struts2漏洞利用工具下载(更新2017-V1.8版增加S2-045/S2-046)-阿里云开发者社区...
  7. JAVA 遍历文件夹下的所有文件
  8. PDF控件Aspose.Pdf 18年新版18.1发布 | 附下载
  9. r9270公版bios_显卡成功刷入UEFI GOP BIOS 彻底解决开机扁苹果
  10. 此图片来自QQ空间,未经许可不可与引用
  11. 不稳定排序算法有哪些
  12. 计算机类sci四大水刊,官方证实:「四大水刊」之一的 ONCOTARGET 2018年起将不再被 SCI 收录,你怎么看?...
  13. Kubernetes系列之五:使用yaml文件创建service向外暴露服务
  14. 企业研究:赢在起跑线,首个10年便建起壁垒的新国都
  15. 融合通讯四大关键词和三个应用场景
  16. 在阿里云上搭建私有GIT仓库
  17. STM32标准库的引入视频课程-第3季第6部分-朱有鹏-专题视频课程
  18. sql:当一列为空时取另一列(case when then)
  19. html的编程语言 背景色,易语言编程界面背景颜色以及文字颜色 [大牛莫笑]
  20. MapV地理数据可视化_API-初始化及初步使用

热门文章

  1. 深入浅出聊机器学习西瓜书
  2. openlayers 设置边界线外圈遮罩
  3. Echarts3——绘制世界地图中其他地方到中国城市
  4. 9.28 正睿普及3
  5. VMware WorKstation虚拟机上 Linux 6最小化安装和基本网络环境配置
  6. 拼多多涉嫌远程删除用户照片:如何防止应用软件过度收集用户数据
  7. 《一个供应链项目经理谈项目心得体会》读后感
  8. 排球分组循环交叉编排_同学!中国海洋大学第一届排球联赛等你来战!
  9. 关于自动驾驶中毫米波雷达传感器的一些知识(涉及多传感器融合)
  10. 微信公众号登录和获得access_token和发送模板消息