~ubuntu-branches/ubuntu/saucy/gstreamer0.10/saucy

« back to all changes in this revision

Viewing changes to libs/gst/base/gstbitreader.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2011-12-11 18:52:12 UTC
  • mfrom: (32.1.14 experimental)
  • Revision ID: package-import@ubuntu.com-20111211185212-3k215ps4qtyz2qa5
Tags: 0.10.35.2-1
* New upstream pre-release:
  + debian/control.in:
    - Build-depend on GLib >= 2.24.
  + debian/patches/99_ltmain_as-needed.patch:
    - Refreshed to apply cleanly again.
  + debian/libgstreamer.symbols:
    - Update symbols file with new API.
* debian/rules:
  + Remove all dependency_libs from the .la files (Closes: #633319).
* debian/control.in:
  + Put GI package into section introspection.
* debian/compat,
  debian/control.in,
  debian/gir1.2-gstreamer.install,
  debian/libgstreamer-dev.install,
  debian/libgstreamer.install,
  debian/patches/79_multiarch-backwards-compat.patch,
  debian/patches/80_ia32-hack.patch,
  debian/rules:
  + Transition package to multi-arch (Closes: #647481).
    Patch taken from the Ubuntu package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
/**
251
251
 * gst_bit_reader_get_bits_uint8:
252
252
 * @reader: a #GstBitReader instance
253
 
 * @val: Pointer to a #guint8 to store the result
 
253
 * @val: (out): Pointer to a #guint8 to store the result
254
254
 * @nbits: number of bits to read
255
255
 *
256
256
 * Read @nbits bits into @val and update the current position.
263
263
/**
264
264
 * gst_bit_reader_get_bits_uint16:
265
265
 * @reader: a #GstBitReader instance
266
 
 * @val: Pointer to a #guint16 to store the result
 
266
 * @val: (out): Pointer to a #guint16 to store the result
267
267
 * @nbits: number of bits to read
268
268
 *
269
269
 * Read @nbits bits into @val and update the current position.
276
276
/**
277
277
 * gst_bit_reader_get_bits_uint32:
278
278
 * @reader: a #GstBitReader instance
279
 
 * @val: Pointer to a #guint32 to store the result
 
279
 * @val: (out): Pointer to a #guint32 to store the result
280
280
 * @nbits: number of bits to read
281
281
 *
282
282
 * Read @nbits bits into @val and update the current position.
289
289
/**
290
290
 * gst_bit_reader_get_bits_uint64:
291
291
 * @reader: a #GstBitReader instance
292
 
 * @val: Pointer to a #guint64 to store the result
 
292
 * @val: (out): Pointer to a #guint64 to store the result
293
293
 * @nbits: number of bits to read
294
294
 *
295
295
 * Read @nbits bits into @val and update the current position.
302
302
/**
303
303
 * gst_bit_reader_peek_bits_uint8:
304
304
 * @reader: a #GstBitReader instance
305
 
 * @val: Pointer to a #guint8 to store the result
 
305
 * @val: (out): Pointer to a #guint8 to store the result
306
306
 * @nbits: number of bits to read
307
307
 *
308
308
 * Read @nbits bits into @val but keep the current position.
315
315
/**
316
316
 * gst_bit_reader_peek_bits_uint16:
317
317
 * @reader: a #GstBitReader instance
318
 
 * @val: Pointer to a #guint16 to store the result
 
318
 * @val: (out): Pointer to a #guint16 to store the result
319
319
 * @nbits: number of bits to read
320
320
 *
321
321
 * Read @nbits bits into @val but keep the current position.
328
328
/**
329
329
 * gst_bit_reader_peek_bits_uint32:
330
330
 * @reader: a #GstBitReader instance
331
 
 * @val: Pointer to a #guint32 to store the result
 
331
 * @val: (out): Pointer to a #guint32 to store the result
332
332
 * @nbits: number of bits to read
333
333
 *
334
334
 * Read @nbits bits into @val but keep the current position.
341
341
/**
342
342
 * gst_bit_reader_peek_bits_uint64:
343
343
 * @reader: a #GstBitReader instance
344
 
 * @val: Pointer to a #guint64 to store the result
 
344
 * @val: (out): Pointer to a #guint64 to store the result
345
345
 * @nbits: number of bits to read
346
346
 *
347
347
 * Read @nbits bits into @val but keep the current position.