This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/v4l-utils.git tree:
Subject: libdvbv5: provide crc32 to c++ Author: André Roth <[email protected]> Date: Sun Jul 6 15:20:30 2014 -0300 allow C++ apps to use crc32 Signed-off-by: André Roth <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]> lib/include/libdvbv5/crc32.h | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) --- http://git.linuxtv.org/v4l-utils.git?a=commitdiff;h=2466682e2e05437c15a435734ffb3158dacebd10 diff --git a/lib/include/libdvbv5/crc32.h b/lib/include/libdvbv5/crc32.h index c886862..9582d4c 100644 --- a/lib/include/libdvbv5/crc32.h +++ b/lib/include/libdvbv5/crc32.h @@ -1,6 +1,6 @@ /* * Copyright (c) 2011-2012 - Mauro Carvalho Chehab - * Copyright (c) 2012 - Andre Roth <[email protected]> + * Copyright (c) 2012-2014 - Andre Roth <[email protected]> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -25,7 +25,15 @@ #include <stdint.h> #include <unistd.h> /* size_t */ +#ifdef __cplusplus +extern "C" { +#endif + uint32_t dvb_crc32(uint8_t *data, size_t datalen, uint32_t crc); +#ifdef __cplusplus +} +#endif + #endif _______________________________________________ linuxtv-commits mailing list [email protected] http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
