INF: Creating Codec with C#

  • Thread starter Thread starter Nicholas Paldino [.NET/C# MVP]
  • Start date Start date
N

Nicholas Paldino [.NET/C# MVP]

Tamir,

I would think that it is possible, but it might not be the best
environment for it. The reason for this is that things such as GC and
memory management can interfere with the processing that the codec requires
(which is very constrained by time).

However, if you want to use the framwork, and your player supports
CODECs that implement a COM interface, then you can just export your .NET
types as COM types and implement the appropriate interfaces.

Hope this helps.
 
tnx for quick response :)

--
Tamir Khason
You want dot.NET? Just ask:
"Please, www.dotnet.us "

Nicholas Paldino said:
Tamir,

I would think that it is possible, but it might not be the best
environment for it. The reason for this is that things such as GC and
memory management can interfere with the processing that the codec requires
(which is very constrained by time).

However, if you want to use the framwork, and your player supports
CODECs that implement a COM interface, then you can just export your .NET
types as COM types and implement the appropriate interfaces.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

Tamir Khason said:
Anyone have ideas about creating video/audio CODECs with the Framework?
 
Back
Top