~ubuntu-branches/ubuntu/trusty/gstreamer1.0/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-08-08 18:12:33 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120808181233-riejwxprfsxh1njl
Tags: 0.11.93-1
* New upstream release:
  + debian/libgstreamer.symbols:
    - Update symbols file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
/**
33
33
 * GstBitReader:
34
 
 * @data: Data from which the bit reader will read
 
34
 * @data: (array length=size): Data from which the bit reader will
 
35
 *   read
35
36
 * @size: Size of @data in bytes
36
37
 * @byte: Current byte position
37
38
 * @bit: Bit position in the current byte
83
84
 * used. This macro can used be to initialize a variable, but it cannot
84
85
 * be assigned to a variable. In that case you have to use
85
86
 * gst_bit_reader_init().
86
 
 *
87
 
 * Since: 0.10.22
88
87
 */
89
88
#define GST_BIT_READER_INIT(data, size) {data, size, 0, 0}
90
89