10/01/26 02:44:46 KPj9ZW2f0
>>434
>>433の補足です。
lameのソースアーカイブのMakefile.unixにこう書かれています。
# testcase.mp3 is a 2926 byte file. The first number output by
# wc is the number of bytes which differ between new output
# and 'official' results.
#
# Because of compiler options and effects of roundoff, the
# number of bytes which are different may not be zero, but
# should be at most 30.
#
test: frontend/$(PGM)
frontend/$(PGM) --nores testcase.wav testcase.new.mp3
cmp -l testcase.new.mp3 testcase.mp3 | wc -l
最後のcmpコマンドはWindowsのコマンドプロンプトでは
fc /b testcase.new.mp3 testcase.mp3に相当するので
--noresオプションだけをつけてエンコードした結果をfc/bでバイナリ比較すると
相違箇所はrarewareが321、>>429が324、>>433が9です。