diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-17 13:04:38 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-03-30 07:48:55 +0200 |
commit | b64030f26d2ace99b9c782f5d5e264802d2d80a0 (patch) | |
tree | 49ce67b68837e15966dee71b24cabcecd57919c0 /libavformat/avio.h | |
parent | d09cc22d9c2dd2843179e7d11a1b564387f62dd2 (diff) | |
download | ffmpeg-b64030f26d2ace99b9c782f5d5e264802d2d80a0.tar.gz |
avio: make get_checksum() internal.
Diffstat (limited to 'libavformat/avio.h')
-rw-r--r-- | libavformat/avio.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/avio.h b/libavformat/avio.h index 22f7a2c9c3..12fa2d586b 100644 --- a/libavformat/avio.h +++ b/libavformat/avio.h @@ -455,6 +455,7 @@ attribute_deprecated int udp_get_local_port(URLContext *h); attribute_deprecated void init_checksum(AVIOContext *s, unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len), unsigned long checksum); +attribute_deprecated unsigned long get_checksum(AVIOContext *s); #endif AVIOContext *avio_alloc_context( @@ -675,8 +676,6 @@ int url_open_dyn_packet_buf(AVIOContext **s, int max_packet_size); */ int url_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer); -unsigned long get_checksum(AVIOContext *s); - #if FF_API_UDP_GET_FILE int udp_get_file_handle(URLContext *h); #endif |