Browse Source

crc: av_crc() parameter names should match between .c, .h and doxygen

tags/n1.1
Diego Biurrun 13 years ago
parent
commit
8ff0f7763d
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavutil/crc.h

+ 2
- 1
libavutil/crc.h View File

@@ -68,6 +68,7 @@ const AVCRC *av_crc_get_table(AVCRCId crc_id);
*
* @see av_crc_init() "le" parameter
*/
uint32_t av_crc(const AVCRC *ctx, uint32_t start_crc, const uint8_t *buffer, size_t length) av_pure;
uint32_t av_crc(const AVCRC *ctx, uint32_t crc,
const uint8_t *buffer, size_t length) av_pure;

#endif /* AVUTIL_CRC_H */

Loading…
Cancel
Save