~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavutil/base64.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <stdint.h>
25
25
 
26
26
/**
 
27
 * @defgroup lavu_base64 Base64
 
28
 * @ingroup lavu_crypto
 
29
 * @{
 
30
 */
 
31
 
 
32
 
 
33
/**
27
34
 * Decode a base64-encoded string.
28
35
 *
29
36
 * @param out      buffer for decoded data
51
58
 */
52
59
#define AV_BASE64_SIZE(x)  (((x)+2) / 3 * 4 + 1)
53
60
 
 
61
 /**
 
62
  * @}
 
63
  */
 
64
 
54
65
#endif /* AVUTIL_BASE64_H */