_load_gpu_decoder.py 166 Bytes
Newer Older
1
2
3
4
5
6
7
8
from ..extension import _load_library


try:
    _load_library("Decoder")
    _HAS_VIDEO_DECODER = True
except (ImportError, OSError):
    _HAS_VIDEO_DECODER = False