예제 #1
0
파일: stereo.c 프로젝트: 4nykey/rockbox
SpeexStereoState *speex_stereo_state_init()
{
   /* SpeexStereoState *stereo = speex_alloc(sizeof(SpeexStereoState)); */
   SpeexStereoState *stereo = &global_stereo_state;
   speex_stereo_state_reset(stereo);
   return stereo;
}
예제 #2
0
파일: stereo.c 프로젝트: CEPBEP/onion-phone
EXPORT SpeexStereoState *speex_stereo_state_init()
{
	SpeexStereoState *stereo = speex_alloc(sizeof(SpeexStereoState));
	speex_stereo_state_reset(stereo);
	return stereo;
}