summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorStephan Sundermann <stephansundermann@gmail.com>2013-10-11 12:21:42 +0200
committerStephan Sundermann <stephansundermann@gmail.com>2013-12-21 16:52:22 +0100
commit602ea036fe73c3a33ec0c9a8098a124a2124f5b5 (patch)
tree537fefb86317476a073878c7b80f4987efb3412f /sources
parent4c09247df96429dc60ee048bb9850714eaebb035 (diff)
TagList: Removed weird Add overload
Diffstat (limited to 'sources')
-rw-r--r--sources/custom/TagList.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/sources/custom/TagList.cs b/sources/custom/TagList.cs
index 364cc5a..326b5e2 100644
--- a/sources/custom/TagList.cs
+++ b/sources/custom/TagList.cs
@@ -83,19 +83,6 @@ namespace Gst
GLib.Marshaller.Free (raw_string);
}
- public void Add (Gst.TagMergeMode mode, params object[] parameters)
- {
- if (parameters.Length % 2 != 0)
- throw new ArgumentException ();
-
- for (int i = 0; i < parameters.Length; i += 2) {
- if (parameters [i].GetType () != typeof(string))
- throw new ArgumentException ();
-
- Add (mode, parameters [i] as string, parameters [i + 1]);
- }
- }
-
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_structure_nth_field_name (IntPtr raw, uint index);