diff options
author | Cástor Muñoz <cmvidal@gmail.com> | 2015-04-28 18:53:36 +0200 |
---|---|---|
committer | Cástor Muñoz <cmvidal@gmail.com> | 2015-07-17 00:51:22 +0200 |
commit | ab3581c7ef5dcb315905a555ae0b33f6c833f79d (patch) | |
tree | a1b9b01bfd2575b7cc08af955d08bb6044f92c2c /utils | |
parent | e70ea5d21ff1aca5b8c534da8f3a1ccadd330a2e (diff) |
utils/parse_testcodec.rb: add support for Opus files
Change-Id: I19e59cfe86598c2e5a7b070ef72b5a12e88b7242
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/parse_testcodec.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/parse_testcodec.rb b/utils/parse_testcodec.rb index 6531b70152..5e8f7c177c 100755 --- a/utils/parse_testcodec.rb +++ b/utils/parse_testcodec.rb @@ -65,6 +65,8 @@ private self.codec = "Speex" when /pegase_l1.+/ self.codec = "MP1" + when /opus.+/ + self.codec = "Opus" else self.codec = "CODEC UNKNOWN (#{name})" end |