Author: ygrego Date: 2015-03-10 17:05:27 +0000 (Tue, 10 Mar 2015) New Revision: 925 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/925 Log: New objects "CHANNEL_CREATION" and "TERRESTIAL_DELIVERY_SYSTEM_DESCRIPTOR". Useful to do the management of configurable characteristic in the global implementation. Modified: oipf/js/initObj/init.js Modified: oipf/js/initObj/init.js =================================================================== --- oipf/js/initObj/init.js 2015-03-10 17:00:18 UTC (rev 924) +++ oipf/js/initObj/init.js 2015-03-10 17:05:27 UTC (rev 925) @@ -6,6 +6,40 @@ extends: "object" }); +/* + * Description: + * Contain the identifier type of channel as key and a boolean as value to indicate if this type of channel + * can be created. + */ +var CHANNEL_CREATION = { + 12 : true, + 13 : true +}; +/* + * Description: + * Information necessary to channel creation of identifier type ID_DVB_*. + * Not a real data, just for simulation but the syntactic structure is based on + * DVB-SI [EN 300 468] section 6.2.13. + */ +var TERRESTIAL_DELIVERY_SYSTEM_DESCRIPTOR = [ + "0x5A", //descriptor_tag + "01010000", //descriptor_length + "0x00000001", //centre_frequency + "011", //bandwidth + "1", //priority + "1", //Time_Slicing_indicator + "1", //MPE-FEC_indicator + "N/A", //reserved_future_use + "00", //constellation + "000", //hierarchy_information + "001", //code_rate-HP_stream + "000", //code_rate-LP_stream + "00", //guard_interval + "00", //transmission_mode + "0", //other_frequency_flag + "N/A" //reserved_future_use +]; + var oipfObjectFactory = new OipfObjectFactory(); var metadata = data;
participants (1)
-
ygregoï¼ users.nuiton.org