Exemplo n.º 1
0
        private void TestGetBAT()
        {
            int      hr = 0;
            IDVB_BAT bat;

            hr = parser.GetBAT(null, out bat);
            //Debug.Assert((hr == 0) && (bat != null), "IDvbSiParser.GetBAT failed");
            if (bat != null)
            {
                Marshal.ReleaseComObject(bat);
            }

            IntPtr bouquetId = Marshal.AllocCoTaskMem(sizeof(short));

            Marshal.WriteInt16(bouquetId, 8442);

            hr = parser.GetBAT(null, out bat);
            //Debug.Assert((hr == 0) && (bat != null), "IDvbSiParser.GetBAT failed");
            Marshal.FreeCoTaskMem(bouquetId);
            if (bat != null)
            {
                Marshal.ReleaseComObject(bat);
            }
        }
Exemplo n.º 2
0
        private void Config()
        {
#if ALLOW_UNTESTED_INTERFACES
            int                hr = 0;
            IDVB_BAT           bat;
            IGenericDescriptor descriptor = null;

            parser = (IDvbSiParser) new DvbSiParser();
            graph  = new BdaGraph();
            graph.InitializeGraph();
            graph.MakeTuneRequest();
            graph.RunGraph();

            hr = parser.Initialize(graph.bdaSecTab as IMpeg2Data);
            Debug.Assert(hr == 0, "Initialize failed !!!");

            for (int j = 0; j < 100; j++)
            {
                hr = parser.GetBAT(null, out bat);
                Debug.Assert(bat != null, "Can't get a BAT object");

                int recordCount = 0;
                hr = bat.GetCountOfRecords(out recordCount);

                for (int i = 0; i < recordCount; i++)
                {
                    // see the doc for the meaning of the 0x47
                    hr = bat.GetRecordDescriptorByTag(i, 0x47, null, out descriptor);
                    if (descriptor != null)
                    {
                        break;
                    }
                }

                Marshal.ReleaseComObject(bat);

                if (descriptor != null)
                {
                    break;
                }
            }

            dsDescriptor = descriptor as IDvbServiceDescriptor;
            Debug.Assert(dsDescriptor != null, "Can't get a DvbServiceDescriptor object");
#endif
        }
Exemplo n.º 3
0
        private void Config()
        {
#if ALLOW_UNTESTED_INTERFACES
            int hr = 0;

            parser = (IDvbSiParser) new DvbSiParser();
            graph  = new BdaGraph();
            graph.InitializeGraph();
            graph.MakeTuneRequest();
            graph.RunGraph();

            hr = parser.Initialize(graph.bdaSecTab as IMpeg2Data);
            Debug.Assert(hr == 0, "Initialize failed !!!");

            hr = parser.GetBAT(null, out bat);
            Debug.Assert(bat != null, "Can't get a BAT object");
#endif
        }