aac.py 156 B

12345678910
  1. from .rtp import RTP
  2. class AacDecoder:
  3. def __init__(self):
  4. ...
  5. def parse(self, packet: "bytes"):
  6. # rtp = RTP(packet)
  7. ...