From: Chow Loong Jin <hyperair@debian.org>
Date: Mon, 6 Feb 2012 01:06:24 +0800
Subject: Readd Taglib.Mpeg4.FileParser.UserDataBox property

The UserDataBox property was renamed to UserDataBoxes and its return type
changed to an array between 2.0.3.7 and 2.0.4.0, resulting in an ABI
breakage. This patch readds the property for backward compatibility.
---
 src/TagLib/Mpeg4/FileParser.cs |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/TagLib/Mpeg4/FileParser.cs b/src/TagLib/Mpeg4/FileParser.cs
index 2043a50..72efde7 100644
--- a/src/TagLib/Mpeg4/FileParser.cs
+++ b/src/TagLib/Mpeg4/FileParser.cs
@@ -157,6 +157,10 @@ namespace TagLib.Mpeg4 {
 			get {return udta_boxes.ToArray ();}
 		}
 		
+		public IsoUserDataBox UserDataBox {
+			get {return UserDataBoxes.Length == 0 ? null : UserDataBoxes[0];}
+		}
+
 		/// <summary>
 		///    Gets the audio sample entry read by the current instance.
 		/// </summary>
-- 
