diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-11-16 13:23:35 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-11-16 13:23:35 +0100 |
commit | ff3b59c848b62ca926be676fe8f31765fe34d66f (patch) | |
tree | dd2fd23ee47d7ae1e90d285cccabfb39effae53c /libavutil | |
parent | f30cf51d46348a43175041df014049d1fa51ed36 (diff) | |
parent | 8c3849bc76c124d5803f9db52c7c88a79226323d (diff) | |
download | ffmpeg-ff3b59c848b62ca926be676fe8f31765fe34d66f.tar.gz |
Merge remote-tracking branch 'qatar/master'
* qatar/master:
x86: dsputil: port to cpuflags
crc: av_crc() parameter names should match between .c, .h and doxygen
avserver: replace av_read_packet with av_read_frame
avserver: fix constness casting warnings
Conflicts:
libavcodec/x86/dsputil.asm
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/crc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/crc.h b/libavutil/crc.h index 9095ce6c62..2bdfca8274 100644 --- a/libavutil/crc.h +++ b/libavutil/crc.h @@ -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 */ |