mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-27 13:23:22 +00:00
20ecb76b6d
Fix for bug 626.
14 lines
258 B
Ruby
14 lines
258 B
Ruby
#!/usr/bin/ruby -w
|
|
|
|
class T_293aac_adif_misdetected_as_video < Test
|
|
def description
|
|
"mkvmerge / AAC with ADIF headers misdetected as video"
|
|
end
|
|
|
|
def run
|
|
sys "../src/mkvmerge --identify data/simple/aac_adif.aac", 3
|
|
($? >> 8).to_s
|
|
end
|
|
end
|
|
|