/// <summary> /// Parse the section. /// </summary> /// <param name="byteData">The MPEG2 section containing the section.</param> /// <param name="index">Index of the first byte of the title section in the MPEG2 section.</param> internal void Process(byte[] byteData, int index) { lastIndex = index; titleData = new MediaHighway1TitleData(); titleData.Process(byteData, lastIndex); }