Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit 7f1c2b9d693b2d54151d6b72ea55d7f55a8fdaa7) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
19 lines
538 B
Python
19 lines
538 B
Python
from tests.package.test_audio_codec_base import TestAudioCodecBase
|
|
|
|
|
|
class TestOpusTools(TestAudioCodecBase):
|
|
__test__ = True
|
|
config = TestAudioCodecBase.config + \
|
|
"""
|
|
BR2_PACKAGE_OPUS_TOOLS=y
|
|
"""
|
|
encoded_file = "encoded.opus"
|
|
|
|
def encode_test(self, input_filename):
|
|
cmd = f"opusenc {input_filename} {self.encoded_file}"
|
|
self.assertRunOk(cmd)
|
|
|
|
def decode_test(self, output_filename):
|
|
cmd = f"opusdec {self.encoded_file} {output_filename}"
|
|
self.assertRunOk(cmd)
|