Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
f7a2aab7
Commit
f7a2aab7
authored
Apr 10, 2009
by
Stefano Sabatini
Browse files
Doxygenate init_put_bits().
Originally committed as revision 18423 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
64bde197
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
libavcodec/bitstream.h
libavcodec/bitstream.h
+6
-0
No files found.
libavcodec/bitstream.h
View file @
f7a2aab7
...
...
@@ -89,6 +89,12 @@ typedef struct PutBitContext {
int
size_in_bits
;
}
PutBitContext
;
/**
* Initializes the PutBitContext \p s.
*
* @param buffer the buffer where to put bits
* @param buffer_size the size in bytes of \p buffer
*/
static
inline
void
init_put_bits
(
PutBitContext
*
s
,
uint8_t
*
buffer
,
int
buffer_size
)
{
if
(
buffer_size
<
0
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment