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

« back to all changes in this revision

Viewing changes to libs/gst/base/gstbitreader-docs.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
 * Skips @nbits bits of the #GstBitReader instance without checking if there
33
33
 * are enough bits available in the bit reader.
34
 
 *
35
 
 * Since: 0.10.31
36
34
 */
37
35
void gst_bit_reader_skip_unchecked (GstBitReader * reader, guint nbits);
38
36
 
42
40
 *
43
41
 * Skips until the next byte without checking if there are enough bits
44
42
 * available in the bit reader.
45
 
 *
46
 
 * Since: 0.10.31
47
43
 */
48
44
void gst_bit_reader_skip_to_byte_unchecked (GstBitReader * reader);
49
45
 
56
52
 * checking if there are enough bits available in the bit reader.
57
53
 *
58
54
 * Returns: unsigned 8 bit integer with the bits.
59
 
 *
60
 
 * Since: 0.10.31
61
55
 */
62
56
guint8 gst_bit_reader_peek_bits_uint8_unchecked (const GstBitReader *reader, guint nbits);
63
57
 
70
64
 * checking if there are enough bits available in the bit reader
71
65
 *
72
66
 * Returns: unsigned 8 bit integer with the bits.
73
 
 *
74
 
 * Since: 0.10.31
75
67
 */
76
68
guint8 gst_bit_reader_get_bits_uint8_unchecked (GstBitReader *reader, guint nbits);
77
69
 
84
76
 * checking if there are enough bits available in the bit reader.
85
77
 *
86
78
 * Returns: unsigned 16 bit integer with the bits.
87
 
 *
88
 
 * Since: 0.10.31
89
79
 */
90
80
guint16 gst_bit_reader_peek_bits_uint16_unchecked (const GstBitReader *reader, guint nbits);
91
81
 
98
88
 * checking if there are enough bits available in the bit reader
99
89
 *
100
90
 * Returns: unsigned 16 bit integer with the bits.
101
 
 *
102
 
 * Since: 0.10.31
103
91
 */
104
92
guint16 gst_bit_reader_get_bits_uint16_unchecked (GstBitReader *reader, guint nbits);
105
93
 
112
100
 * checking if there are enough bits available in the bit reader.
113
101
 *
114
102
 * Returns: unsigned 32 bit integer with the bits.
115
 
 *
116
 
 * Since: 0.10.31
117
103
 */
118
104
guint32 gst_bit_reader_peek_bits_uint32_unchecked (const GstBitReader *reader, guint nbits);
119
105
 
126
112
 * checking if there are enough bits available in the bit reader
127
113
 *
128
114
 * Returns: unsigned 32 bit integer with the bits.
129
 
 *
130
 
 * Since: 0.10.31
131
115
 */
132
116
guint32 gst_bit_reader_get_bits_uint32_unchecked (GstBitReader *reader, guint nbits);
133
117
 
140
124
 * checking if there are enough bits available in the bit reader.
141
125
 *
142
126
 * Returns: unsigned 64 bit integer with the bits.
143
 
 *
144
 
 * Since: 0.10.31
145
127
 */
146
128
guint64 gst_bit_reader_peek_bits_uint64_unchecked (const GstBitReader *reader, guint nbits);
147
129
 
154
136
 * checking if there are enough bits available in the bit reader
155
137
 *
156
138
 * Returns: unsigned 64 bit integer with the bits.
157
 
 *
158
 
 * Since: 0.10.31
159
139
 */
160
140
guint64 gst_bit_reader_get_bits_uint64_unchecked (GstBitReader *reader, guint nbits);
161
141