feat: inference subsystem and optimization to decoder
This commit is contained in:
commit
3c83a57e44
19 changed files with 3897 additions and 0 deletions
14
services/__init__.py
Normal file
14
services/__init__.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
"""
|
||||
Services package for RTSP stream processing with GPU acceleration.
|
||||
"""
|
||||
|
||||
from .stream_decoder import StreamDecoderFactory, StreamDecoder, ConnectionStatus
|
||||
from .jpeg_encoder import JPEGEncoderFactory, encode_frame_to_jpeg
|
||||
|
||||
__all__ = [
|
||||
'StreamDecoderFactory',
|
||||
'StreamDecoder',
|
||||
'ConnectionStatus',
|
||||
'JPEGEncoderFactory',
|
||||
'encode_frame_to_jpeg',
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue