~ubuntu-branches/ubuntu/saucy/gst-libav1.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gst-libs/ext/libav/libavutil/md5.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2013-07-30 09:00:15 UTC
  • mfrom: (1.1.16) (7.1.7 experimental)
  • Revision ID: package-import@ubuntu.com-20130730090015-sc1ou2yssu7q5w4e
Tags: 1.1.3-1
* New upstream development snapshot:
  + debian/control:
    - Build depend on GStreamer and gst-plugins-base >= 1.1.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
#include <stdint.h>
25
25
 
 
26
#include "attributes.h"
 
27
#include "version.h"
 
28
 
26
29
/**
27
30
 * @defgroup lavu_md5 MD5
28
31
 * @ingroup lavu_crypto
29
32
 * @{
30
33
 */
31
34
 
32
 
extern const int av_md5_size;
 
35
#if FF_API_CONTEXT_SIZE
 
36
extern attribute_deprecated const int av_md5_size;
 
37
#endif
33
38
 
34
39
struct AVMD5;
35
40
 
 
41
struct AVMD5 *av_md5_alloc(void);
36
42
void av_md5_init(struct AVMD5 *ctx);
37
43
void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len);
38
44
void av_md5_final(struct AVMD5 *ctx, uint8_t *dst);
43
49
 */
44
50
 
45
51
#endif /* AVUTIL_MD5_H */
46