Browse Source

Doxygenate ff_copy_bits().

Originally committed as revision 18440 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Stefano Sabatini 16 years ago
parent
commit
093364da30
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      libavcodec/bitstream.h

+ 6
- 0
libavcodec/bitstream.h View File

@@ -160,6 +160,12 @@ static inline void flush_put_bits(PutBitContext *s)
*/ */
void align_put_bits(PutBitContext *s); void align_put_bits(PutBitContext *s);
void ff_put_string(PutBitContext * pbc, const char *s, int put_zero); void ff_put_string(PutBitContext * pbc, const char *s, int put_zero);

/**
* Copies the content of \p src to the bitstream.
*
* @param length the number of bits of \p src to copy
*/
void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length); void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length);


/* bit input */ /* bit input */


Loading…
Cancel
Save