旧(异常):
pthread_cancel(vms_play_thread_struct.hThread);
pthread_join(vms_play_thread_struct.hThread,NULL);
vms_play_thread_struct.hThread = NULL;
Vms_Av_Play_Stop();
新(正常):
Vms_Av_Play_Stop();
pthread_cancel(vms_play_thread_struct.hThread);
pthread_join(vms_play_thread_struct.hThread,NULL);
vms_play_thread_struct.hThread = NULL;