示例#1
0
int BIKPlayer::Play()
{
	if (!validVideo) {
		return 0;
	}
	//Start Movie Playback
	frameCount = 0;
	int ret = doPlay( );

	EndAudio();
	EndVideo();
	av_freep((void **) &inbuff);
	return ret;
}
示例#2
0
文件: init.cpp 项目: N4u/WiiCraft
void Deinitialize(void) {
    WPAD_Shutdown();
    Debug("WPAD_Shutdown Passed");

    EndVideo();
    Debug("EndVideo Passed");

//	ASND_End();
//	Debug("ASND_End Passed");

//	MP3Player_Stop();
//	Debug("MP3Player_Stop Passed");

    DebugStop();
    gprintf("DebugStop passed\n");
}