#region license
/*
DirectShowLib - Provide access to DirectShow interfaces via .NET
Copyright (C) 2007
http://sourceforge.net/projects/directshownet/
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#endregion
using System;
using System.Runtime.InteropServices;
namespace DirectShowLib.BDA{
#region Declarations
#if ALLOW_UNTESTED_INTERFACES
/// <summary>
/// From ProgramElement
/// </summary>
[StructLayout(LayoutKind.Sequential, Pack = 2)]
public struct ProgramElement
{
public short wProgramNumber;
public short wProgramMapPID;
}
#endif
#endregion
#region Interfaces
#if ALLOW_UNTESTED_INTERFACES
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("D19BDB43-405B-4a7c-A791-C89110C33165"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ITSDT
{
[PreserveSig]
int Initialize(
[In] ISectionList pSectionList,
[In] IMpeg2Data pMPEGData
);
[PreserveSig]
int GetVersionNumber([Out] out byte pbVal);
[PreserveSig]
int GetCountOfTableDescriptors([Out] out int pdwVal);
[PreserveSig]
int GetTableDescriptorByIndex(
[In] int dwIndex,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int GetTableDescriptorByTag(
[In] byte bTag,
[In, Out] DsInt pdwCookie,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int RegisterForNextTable([In] IntPtr hNextTableAvailable);
[PreserveSig]
int GetNextTable([Out] out ITSDT ppTSDT);
[PreserveSig]
int RegisterForWhenCurrent([In] IntPtr hNextTableIsCurrent);
[PreserveSig]
int ConvertNextToCurrent();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("919F24C5-7B14-42ac-A4B0-2AE08DAF00AC"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IPSITables
{
[PreserveSig]
int GetTable(
[In] int dwTSID,
[In] int dwTID_PID,
[In] int dwHashedVer,
[In] int dwPara4,
[Out] out object ppIUnknown
);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("BF02FB7E-9792-4e10-A68D-033A2CC246A5"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IGenericDescriptor2 : IGenericDescriptor
{
#region IGenericDescriptor methods
[PreserveSig]
new int Initialize(
[In] IntPtr pbDesc,
[In] int bCount
);
[PreserveSig]
new int GetTag(
[Out] out byte pbVal
);
[PreserveSig]
new int GetLength(
[Out] out byte pbVal
);
[PreserveSig]
new int GetBody(
[Out] out IntPtr ppbVal
);
#endregion
[PreserveSig]
int Initialize(
IntPtr pbDesc,
short wCount
);
[PreserveSig]
int GetLength(
out short pwVal
);
};
#endif
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("6A5918F8-A77A-4f61-AED0-5702BDCDA3E6"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IGenericDescriptor
{
[PreserveSig]
int Initialize(
[In] IntPtr pbDesc,
[In] int bCount
);
[PreserveSig]
int GetTag([Out] out byte pbVal);
[PreserveSig]
int GetLength([Out] out byte pbVal);
[PreserveSig]
int GetBody([Out] out IntPtr ppbVal);
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("7C6995FB-2A31-4bd7-953E-B1AD7FB7D31C"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface ICAT
{
[PreserveSig]
int Initialize(
[In] ISectionList pSectionList,
[In] IMpeg2Data pMPEGData
);
[PreserveSig]
int GetVersionNumber([Out] out byte pbVal);
[PreserveSig]
int GetCountOfTableDescriptors([Out] out int pdwVal);
[PreserveSig]
int GetTableDescriptorByIndex(
[In] int dwIndex,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int GetTableDescriptorByTag(
[In] byte bTag,
[In, Out] DsInt pdwCookie,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int RegisterForNextTable([In] IntPtr hNextTableAvailable);
[PreserveSig]
int GetNextTable(
[In] int dwTimeout,
[Out] out ICAT ppCAT);
[PreserveSig]
int RegisterForWhenCurrent([In] IntPtr hNextTableIsCurrent);
[PreserveSig]
int ConvertNextToCurrent();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("01F3B398-9527-4736-94DB-5195878E97A8"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IPMT
{
[PreserveSig]
int Initialize(
[In] ISectionList pSectionList,
[In] IMpeg2Data pMPEGData
);
[PreserveSig]
int GetProgramNumber([Out] out short pwVal);
[PreserveSig]
int GetVersionNumber([Out] out byte pbVal);
[PreserveSig]
int GetPcrPid([Out] out short pPidVal);
[PreserveSig]
int GetCountOfTableDescriptors([Out] out int pdwVal);
[PreserveSig]
int GetTableDescriptorByIndex(
[In] int dwIndex,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int GetTableDescriptorByTag(
[In] Byte bTag,
[In, Out] DsInt pdwCookie,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int GetCountOfRecords([Out] out short pwVal);
[PreserveSig]
int GetRecordStreamType(
[In] int dwRecordIndex,
[Out] out byte pbVal
);
[PreserveSig]
int GetRecordElementaryPid(
[In] int dwRecordIndex,
[Out] out short pPidVal
);
[PreserveSig]
int GetRecordCountOfDescriptors(
[In] int dwRecordIndex,
[Out] out int pdwVal
);
[PreserveSig]
int GetRecordDescriptorByIndex(
[In] int dwRecordIndex,
[In] int dwDescIndex,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int GetRecordDescriptorByTag(
[In] int dwRecordIndex,
[In] Byte bTag,
[In, Out] DsInt pdwCookie,
[Out] out IGenericDescriptor ppDescriptor
);
[PreserveSig]
int QueryServiceGatewayInfo(
[Out, MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct)] out DsmccElement[] ppDSMCCList,
[Out] out int puiCount
);
[PreserveSig]
int QueryMPEInfo(
[Out, MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.Struct)] out MpeElement[] ppMPEList,
[Out] out int puiCount
);
[PreserveSig]
int RegisterForNextTable([In] IntPtr hNextTableAvailable);
[PreserveSig]
int GetNextTable([Out] out IPMT ppPMT);
[PreserveSig]
int RegisterForWhenCurrent([In] IntPtr hNextTableIsCurrent);
[PreserveSig]
int ConvertNextToCurrent();
}
[ComImport, System.Security.SuppressUnmanagedCodeSecurity,
Guid("6623B511-4B5F-43c3-9A01-E8FF84188060"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IPAT
{
[PreserveSig]
int Initialize(
[In] ISectionList pSectionList,
[In] IMpeg2Data pMPEGData
);
[PreserveSig]
int GetTransportStreamId([Out] out short pwVal);
[PreserveSig]
int GetVersionNumber([Out] out byte pbVal);
[PreserveSig]
int GetCountOfRecords([Out] out int pwVal);
[PreserveSig]
int GetRecordProgramNumber(
[In] int dwIndex,
[Out] out short pwVal
);
[PreserveSig]
int GetRecordProgramMapPid(
[In] int dwIndex,
[Out] out short pwVal
);
[PreserveSig]
int FindRecordProgramMapPid(
[In] short wProgramNumber,
[Out] out short pwVal
);
[PreserveSig]
int RegisterForNextTable([In] IntPtr hNextTableAvailable);
[PreserveSig]
int GetNextTable([Out] out IPAT ppPAT);
[PreserveSig]
int RegisterForWhenCurrent([In] IntPtr hNextTableIsCurrent);
[PreserveSig]
int ConvertNextToCurrent();
}
#endregion
}
|