1 /* 2 * This file is part of gtkD. 3 * 4 * gtkD is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * gtkD is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with gtkD; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 20 // generated automatically - do not change 21 // find conversion definition on APILookup.txt 22 // implement new conversion functionalities on the wrap.utils pakage 23 24 25 module gstreamer.BufferList; 26 27 private import glib.ConstructionException; 28 private import gobject.ObjectG; 29 private import gstreamer.Buffer; 30 private import gstreamer.c.functions; 31 public import gstreamer.c.types; 32 public import gstreamerc.gstreamertypes; 33 34 35 /** 36 * Buffer lists are an object containing a list of buffers. 37 * 38 * Buffer lists are created with gst_buffer_list_new() and filled with data 39 * using a gst_buffer_list_insert(). 40 * 41 * Buffer lists can be pushed on a srcpad with gst_pad_push_list(). This is 42 * interesting when multiple buffers need to be pushed in one go because it 43 * can reduce the amount of overhead for pushing each buffer individually. 44 */ 45 public class BufferList 46 { 47 /** the main Gtk struct */ 48 protected GstBufferList* gstBufferList; 49 protected bool ownedRef; 50 51 /** Get the main Gtk struct */ 52 public GstBufferList* getBufferListStruct(bool transferOwnership = false) 53 { 54 if (transferOwnership) 55 ownedRef = false; 56 return gstBufferList; 57 } 58 59 /** the main Gtk struct as a void* */ 60 protected void* getStruct() 61 { 62 return cast(void*)gstBufferList; 63 } 64 65 /** 66 * Sets our main struct and passes it to the parent class. 67 */ 68 public this (GstBufferList* gstBufferList, bool ownedRef = false) 69 { 70 this.gstBufferList = gstBufferList; 71 this.ownedRef = ownedRef; 72 } 73 74 75 /** */ 76 public static GType getType() 77 { 78 return gst_buffer_list_get_type(); 79 } 80 81 /** 82 * Creates a new, empty #GstBufferList. The caller is responsible for unreffing 83 * the returned #GstBufferList. 84 * 85 * Free-function: gst_buffer_list_unref 86 * 87 * Returns: the new #GstBufferList. gst_buffer_list_unref() 88 * after usage. 89 * 90 * Throws: ConstructionException GTK+ fails to create the object. 91 */ 92 public this() 93 { 94 auto p = gst_buffer_list_new(); 95 96 if(p is null) 97 { 98 throw new ConstructionException("null returned by new"); 99 } 100 101 this(cast(GstBufferList*) p); 102 } 103 104 /** 105 * Creates a new, empty #GstBufferList. The caller is responsible for unreffing 106 * the returned #GstBufferList. The list will have @size space preallocated so 107 * that memory reallocations can be avoided. 108 * 109 * Free-function: gst_buffer_list_unref 110 * 111 * Params: 112 * size = an initial reserved size 113 * 114 * Returns: the new #GstBufferList. gst_buffer_list_unref() 115 * after usage. 116 * 117 * Throws: ConstructionException GTK+ fails to create the object. 118 */ 119 public this(uint size) 120 { 121 auto p = gst_buffer_list_new_sized(size); 122 123 if(p is null) 124 { 125 throw new ConstructionException("null returned by new_sized"); 126 } 127 128 this(cast(GstBufferList*) p); 129 } 130 131 /** 132 * Create a copy of the given buffer list. This will make a newly allocated 133 * copy of the buffer that the source buffer list contains. 134 * 135 * Returns: a new copy of @list. 136 * 137 * Since: 1.6 138 */ 139 public BufferList copyDeep() 140 { 141 auto p = gst_buffer_list_copy_deep(gstBufferList); 142 143 if(p is null) 144 { 145 return null; 146 } 147 148 return ObjectG.getDObject!(BufferList)(cast(GstBufferList*) p, true); 149 } 150 151 /** 152 * Call @func with @data for each buffer in @list. 153 * 154 * @func can modify the passed buffer pointer or its contents. The return value 155 * of @func define if this function returns or if the remaining buffers in 156 * the list should be skipped. 157 * 158 * Params: 159 * func = a #GstBufferListFunc to call 160 * userData = user data passed to @func 161 * 162 * Returns: %TRUE when @func returned %TRUE for each buffer in @list or when 163 * @list is empty. 164 */ 165 public bool foreac(GstBufferListFunc func, void* userData) 166 { 167 return gst_buffer_list_foreach(gstBufferList, func, userData) != 0; 168 } 169 170 /** 171 * Get the buffer at @idx. 172 * 173 * Params: 174 * idx = the index 175 * 176 * Returns: the buffer at @idx in @group 177 * or %NULL when there is no buffer. The buffer remains valid as 178 * long as @list is valid and buffer is not removed from the list. 179 */ 180 public Buffer get(uint idx) 181 { 182 auto p = gst_buffer_list_get(gstBufferList, idx); 183 184 if(p is null) 185 { 186 return null; 187 } 188 189 return ObjectG.getDObject!(Buffer)(cast(GstBuffer*) p); 190 } 191 192 /** 193 * Insert @buffer at @idx in @list. Other buffers are moved to make room for 194 * this new buffer. 195 * 196 * A -1 value for @idx will append the buffer at the end. 197 * 198 * Params: 199 * idx = the index 200 * buffer = a #GstBuffer 201 */ 202 public void insert(int idx, Buffer buffer) 203 { 204 gst_buffer_list_insert(gstBufferList, idx, (buffer is null) ? null : buffer.getBufferStruct()); 205 } 206 207 /** 208 * Returns the number of buffers in @list. 209 * 210 * Returns: the number of buffers in the buffer list 211 */ 212 public uint length() 213 { 214 return gst_buffer_list_length(gstBufferList); 215 } 216 217 /** 218 * Remove @length buffers starting from @idx in @list. The following buffers 219 * are moved to close the gap. 220 * 221 * Params: 222 * idx = the index 223 * length = the amount to remove 224 */ 225 public void remove(uint idx, uint length) 226 { 227 gst_buffer_list_remove(gstBufferList, idx, length); 228 } 229 }