GNOME Bugzilla – Bug 628454
Matroska demuxer doesn't handle DATE tag if it contains only a year number
Last modified: 2010-09-04 13:06:34 UTC
Created attachment 169200 [details] [review] Fix for handling incomplete date tags It's common for audio files to contain only a year in the date tag and unlike id3demuxer the matroska demuxer doesn't handle this case. So I copied the code from id3demuxer to matroska demuxer for my 0.10.16 plugin version and it seems to work well.
Thanks, I'll push this after release.
commit 6940559c4688e57106f1c384a3320fb3329e88fc Author: Pavel Kostyuchenko <shprotx@gmail.com> Date: Wed Sep 1 11:11:34 2010 +0200 matroskademux: Relax parsing of date tags Before we required a complete date in matroskademux but in id3demux for example only the year or year and month was possible too. Fixes bug #628454.