[FFmpeg-cvslog] avio: move ff_crc04C11DB7_update() from avio.h -> avio_internal.h
Anton Khirnov
git at videolan.org
Thu Mar 31 13:10:34 CEST 2011
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Thu Mar 17 13:02:54 2011 +0100| [d09cc22d9c2dd2843179e7d11a1b564387f62dd2] | committer: Anton Khirnov
avio: move ff_crc04C11DB7_update() from avio.h -> avio_internal.h
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d09cc22d9c2dd2843179e7d11a1b564387f62dd2
---
libavformat/avio.h | 2 --
libavformat/avio_internal.h | 2 ++
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/avio.h b/libavformat/avio.h
index bce2fc9..22f7a2c 100644
--- a/libavformat/avio.h
+++ b/libavformat/avio.h
@@ -675,8 +675,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 ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
- unsigned int len);
unsigned long get_checksum(AVIOContext *s);
#if FF_API_UDP_GET_FILE
diff --git a/libavformat/avio_internal.h b/libavformat/avio_internal.h
index c50514d..243b16d 100644
--- a/libavformat/avio_internal.h
+++ b/libavformat/avio_internal.h
@@ -77,5 +77,7 @@ int ff_udp_get_local_port(URLContext *h);
void ffio_init_checksum(AVIOContext *s,
unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
unsigned long checksum);
+unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
+ unsigned int len);
#endif // AVFORMAT_AVIO_INTERNAL_H
More information about the ffmpeg-cvslog
mailing list