Jason Tackaberry wrote: > - @required_states(STATE_NOT_RUNNING) > + @required_states(STATE_NOT_RUNNING, STATE_SHUTDOWN) > def _create_player(self, cls): > """ > Create a player based on cls.
That is not a good idea. STATE_SHUTDOWN means that the player is shutting down right now to release the audio and video driver. So while a player is shutting down, you should not start a new one, it may not be possible to get all devices you need. You need to wait for STATE_NOT_RUNNING. Dischi -- Microsoft Windows didn't get as bad as it is overnight -- it took over ten years of careful development ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Freevo-cvslog mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-cvslog
