22 lines
659 B
Python
22 lines
659 B
Python
# ------------------------------------------------------------
|
||
# AAC Coder/Decoder - Level 2 Wrappers + Demo
|
||
#
|
||
# Multimedia course at Aristotle University of
|
||
# Thessaloniki (AUTh)
|
||
#
|
||
# Author:
|
||
# Christos Choutouridis (ΑΕΜ 8997)
|
||
# cchoutou@ece.auth.gr
|
||
#
|
||
# Description:
|
||
# Level 2 wrapper module.
|
||
#
|
||
# This file provides:
|
||
# - Thin wrappers for Level 2 API functions (encode/decode) that delegate
|
||
# to the corresponding core implementations.
|
||
# - A demo function that runs end-to-end and computes SNR.
|
||
# - A small CLI entrypoint for convenience.
|
||
# ------------------------------------------------------------
|
||
from __future__ import annotations
|
||
|