fetch up pyglet
This commit is contained in:
parent
f95d7f96ec
commit
5a123389ae
@ -1,13 +1,21 @@
|
|||||||
"""Drivers for playing back media."""
|
"""Drivers for playing back media."""
|
||||||
|
|
||||||
|
import sys
|
||||||
import atexit
|
import atexit
|
||||||
|
|
||||||
import pyglet
|
import pyglet
|
||||||
|
|
||||||
_debug = pyglet.options['debug_media']
|
_debug = pyglet.options['debug_media']
|
||||||
|
_is_pyglet_doc_run = hasattr(sys, "is_pyglet_doc_run") and sys.is_pyglet_doc_run
|
||||||
|
|
||||||
|
|
||||||
for driver_name in pyglet.options['audio']:
|
if _is_pyglet_doc_run:
|
||||||
|
from . import silent
|
||||||
|
_audio_driver = silent.create_audio_driver()
|
||||||
|
|
||||||
|
else:
|
||||||
|
|
||||||
|
for driver_name in pyglet.options['audio']:
|
||||||
try:
|
try:
|
||||||
if driver_name == 'pulse':
|
if driver_name == 'pulse':
|
||||||
from . import pulse
|
from . import pulse
|
||||||
@ -45,9 +53,9 @@ for driver_name in pyglet.options['audio']:
|
|||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
traceback.print_exc()
|
traceback.print_exc()
|
||||||
else:
|
|
||||||
from . import silent
|
|
||||||
|
|
||||||
|
else:
|
||||||
|
from . import silent
|
||||||
_audio_driver = silent.create_audio_driver()
|
_audio_driver = silent.create_audio_driver()
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user