Click here to Skip to main content
15,896,412 members
Articles / Programming Languages / C#

Transport Stream Analyzer for HDTV standard

Rate me:
Please Sign up or sign in to vote.
4.87/5 (39 votes)
7 May 20042 min read 200.5K   12.2K   72  
A program that analyzes a transport stream.
using System;

namespace TS_analyzer
{

	public class TS_pack
	{
		public byte[]	data;	// Pack data
		public int		size;	// Pack length
		public TS_pack(int len)
		{
			size=len;
			data=new byte[size];
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Malaysia Malaysia
Dumitru Bogdan - alias Angel

Born 1980 , Brasov , Romania

Final year student at Transilvania University of Brasov , Faculty of Electrical Engineering & Computer Science , Department of Electronics & Computers

Programming : Visual C++ , Visual Fox Pro , Assembler & later , C#

Motto : "Nothing Last Forever" , and software is no exception

Comments and Discussions