freebsd-ports/net/mptsd/files/patch-libtsfuncs_crc.c
Dmitry Marakasov 84b6c91edc mptsd receives mpegts streams from multicast (udp/rtp) or http and
combines them into one multiple program stream that is suitable for
outputing to DVB-C modulator.

WWW: https://github.com/gfto/mptsd
2018-06-07 12:54:42 +00:00

11 lines
380 B
C

--- libtsfuncs/crc.c.orig 2012-01-05 12:41:01 UTC
+++ libtsfuncs/crc.c
@@ -46,7 +46,7 @@ uint32_t ts_crc32(uint8_t *data, int dat
return crc;
}
-u_int32_t ts_crc32_section(struct ts_section_header *section_header) {
+uint32_t ts_crc32_section(struct ts_section_header *section_header) {
return ts_crc32(section_header->section_data, section_header->section_data_len);
}