/// <summary>
        /// Method to create TS_RFX_CODEC_VERSIONS.
        /// </summary>
        public TS_RFX_CODEC_VERSIONS CreateTsRfxCodecVersions()
        {
            TS_RFX_CODEC_VERSIONS rfxVersions = new TS_RFX_CODEC_VERSIONS();
            rfxVersions.BlockT.blockType = blockType_Value.WBT_CODEC_VERSIONS;
            rfxVersions.BlockT.blockLen = 10;
            rfxVersions.numCodecs = 0x01;
            rfxVersions.codecs = new TS_RFX_CODEC_VERSIONT();
            rfxVersions.codecs.codecId = 0x01;
            rfxVersions.codecs.version = 0x0100;

            return rfxVersions;
        }
예제 #2
0
        /// <summary>
        /// Method to create TS_RFX_CODEC_VERSIONS.
        /// </summary>
        public TS_RFX_CODEC_VERSIONS CreateTsRfxCodecVersions()
        {
            TS_RFX_CODEC_VERSIONS rfxVersions = new TS_RFX_CODEC_VERSIONS();

            rfxVersions.BlockT.blockType = blockType_Value.WBT_CODEC_VERSIONS;
            rfxVersions.BlockT.blockLen  = 10;
            rfxVersions.numCodecs        = 0x01;
            rfxVersions.codecs           = new TS_RFX_CODEC_VERSIONT();
            rfxVersions.codecs.codecId   = 0x01;
            rfxVersions.codecs.version   = 0x0100;

            return(rfxVersions);
        }