Browse code

avio: move ff_crc04C11DB7_update() from avio.h -> avio_internal.h

Anton Khirnov authored on 2011/03/17 21:02:54
Showing 2 changed files
... ...
@@ -675,8 +675,6 @@ int url_open_dyn_packet_buf(AVIOContext **s, int max_packet_size);
675 675
  */
676 676
 int url_close_dyn_buf(AVIOContext *s, uint8_t **pbuffer);
677 677
 
678
-unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
679
-                                    unsigned int len);
680 678
 unsigned long get_checksum(AVIOContext *s);
681 679
 
682 680
 #if FF_API_UDP_GET_FILE
... ...
@@ -77,5 +77,7 @@ int ff_udp_get_local_port(URLContext *h);
77 77
 void ffio_init_checksum(AVIOContext *s,
78 78
                         unsigned long (*update_checksum)(unsigned long c, const uint8_t *p, unsigned int len),
79 79
                         unsigned long checksum);
80
+unsigned long ff_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf,
81
+                                    unsigned int len);
80 82
 
81 83
 #endif // AVFORMAT_AVIO_INTERNAL_H