Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
dvb_mux_conf_str: add support for ISDB types
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8b51103There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While compiling this, I received the following error message:
`
CC src/input/mpegts/dvb_support.o
src/input/mpegts/dvb_support.c: In function ‘dvb_mux_conf_str’:
src/input/mpegts/dvb_support.c:1071:38: error: array subscript is above array bounds [-Werror=array-bounds]
dmc->u.dmc_fe_isdbt.layers[3].time_interleaving);
~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
src/input/mpegts/dvb_support.c:1070:38: error: array subscript is above array bounds [-Werror=array-bounds]
dmc->u.dmc_fe_isdbt.layers[3].segment_count,
~~~~~~~~~~~~~~~~~~~~~~~~~~^~~
cc1: all warnings being treated as errors
make: *** [Makefile:626: /home/volker/builds/tvheadend-git/src/tvheadend/build.linux/src/input/mpegts/dvb_support.o] Error 1
==> ERROR: A failure occurred in build().
`
Compiler:
$ gcc --version
gcc (GCC) 6.1.1 20160802
This is on 64 bit Arch Linux.
8b51103There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Fixed in 3bf7fd4 .