diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2010-10-13 10:51:46 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2010-10-13 10:53:31 +0200 |
commit | 69c37e13acd820ef48f949afc795bf01d3690ae1 (patch) | |
tree | c1003f53d9e4445f4fc8382b0f385614f4587f93 /id3v2.erl | |
parent | 7ea56a60b730409a262eff6a753ab1c00c0373f0 (diff) | |
download | erlang-69c37e13acd820ef48f949afc795bf01d3690ae1.tar.gz erlang-69c37e13acd820ef48f949afc795bf01d3690ae1.tar.xz erlang-69c37e13acd820ef48f949afc795bf01d3690ae1.zip |
code cleanup
Diffstat (limited to 'id3v2.erl')
-rw-r--r-- | id3v2.erl | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -168,7 +168,7 @@ parse_v2_frame(<<"TLEN">>, _Size, RawContent, _Flags, _Version) -> {tlen, parse_length(RawContent)}; parse_v2_frame(<<"TLE">>, _Size, RawContent, _Flags, _Version) -> {tlen, parse_length(RawContent)}; -parse_v2_frame(_Other, _, _, _, _Version) -> +parse_v2_frame(_Other, _, _, _, _Version) -> ignored. parse_length(RawContent) -> @@ -182,7 +182,7 @@ parse_length(RawContent) -> finalize_v2_frames(Frames) -> lists:reverse([F || F <- Frames, F /= ignored]). - + @@ -252,16 +252,16 @@ extract_v2_string(Binary) -> Str = string:strip(binary_to_list(Bin)), list_to_binary(Str). -decode_v2_string(<<0:8, Rest/binary>>) -> +decode_v2_string(<<0:8, Rest/binary>>) -> unicode:characters_to_binary(Rest, latin1); -decode_v2_string(<<1:8, BOM:2/binary, Rest/binary>>) -> +decode_v2_string(<<1:8, BOM:2/binary, Rest/binary>>) -> {Encoding, _} = unicode:bom_to_encoding(BOM), unicode:characters_to_binary(Rest, Encoding); -decode_v2_string(<<2:8, Rest/binary>>) -> +decode_v2_string(<<2:8, Rest/binary>>) -> unicode:characters_to_binary(Rest, {utf16, big}); -decode_v2_string(<<3:8, Rest/binary>>) -> +decode_v2_string(<<3:8, Rest/binary>>) -> unicode:characters_to_binary(Rest, utf8); -decode_v2_string(Other) -> +decode_v2_string(Other) -> unicode:characters_to_binary(Other, latin1). @@ -433,7 +433,7 @@ read_files([FN|Rest], Total, Fail) -> {ok, Props} -> ?DBG({?GV(trck, Props), ?GV(tit2, Props)}), read_files(Rest, Total+1, Fail); - not_found -> + not_found -> read_files(Rest, Total+1, Fail+1) end; read_files([], Total, Fail) -> |