Subject: | |
Date: | Tue, 12 May 2015 10:34:38 -0500 |
To: | bug-MPEG-ID3v2Tag [...] rt.cpan.org |
From: | Michael Chaney <mdchaney [...] michaelchaney.com> |
This patch makes the USLT tag correct:
981c981
< return pack( "Ca3Z*", $self->{ENCODING}, $self->{LANGUAGE},
$self->{CONTENT_DESC} . "\0" )
---
Show quoted text
> return pack( "Ca3Z*", $self->{ENCODING}, $self->{LANGUAGE},
$self->{CONTENT_DESC} )
Basically, on line 981 the null byte appended to content_desc needs to go
away as the Z format in pack adds its own null. This patch actually makes
it follow the specification properly. As it is the USLT tag is unusable.