DVBCore  17.9.0
Open Source DVB Engine
 All Data Structures Files Functions Typedefs Macros Pages
stbpes.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2004 Ocean Blue Software Ltd
4  *
5  * This file is part of a DTVKit Software Component
6  * You are permitted to copy, modify or distribute this file subject to the terms
7  * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org
8  *
9  * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
10  * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES
11  * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
12  *
13  * If you or your organisation is not a member of DTVKit then you have access
14  * to this source code outside of the terms of the licence agreement
15  * and you are expected to delete this and any associated files immediately.
16  * Further information on DTVKit, membership and terms can be found at www.dtvkit.org
17  *******************************************************************************/
26 // pre-processor mechanism so multiple inclusions don't cause compilation error
27 
28 #ifndef _STBPES_H
29 #define _STBPES_H
30 
31 #include "techtype.h"
32 
33 //---Constant and macro definitions for public use-----------------------------
34 
35 //---Enumerations for public use-----------------------------------------------
36 
37 //---Global type defs for public use-------------------------------------------
38 
39 //---Global Function prototypes for public use---------------------------------
40 
42 
44 
45 U32BIT STB_RegisterPesCollectionCallback(void (*callback_function)(U32BIT, U8BIT, void *, U32BIT),
46  U8BIT lowest_data_identifier, U8BIT highest_data_identifier);
47 
48 void STB_UnregisterPesCollectionCallback(U32BIT handle);
49 
50 void STB_ChangePesCollectionPID(U8BIT path, U16BIT text_pid);
51 
52 #endif // _STBPES_H
53 
54 //*****************************************************************************
55 // End of file
56 //*****************************************************************************
void STB_ChangePesCollectionPID(U8BIT path, U16BIT text_pid)
Changes the PID that the DMX is using to gather data on.
Definition: stbpes.c:467
U32BIT STB_RegisterPesCollectionCallback(void(*callback_function)(U32BIT, U8BIT, void *, U32BIT), U8BIT lowest_data_identifier, U8BIT highest_data_identifier)
Used to register a callback function that will receive specific PES data packets. In theory...
Definition: stbpes.c:537
void STB_FlushPesCollectionTask(void)
Flushes the PES collection task.
Definition: stbpes.c:447
System Wide Global Technical Data Type Definitions.
void STB_PesCollectionTaskInitialise(void)
Initialises the PES collection task.
Definition: stbpes.c:416
void STB_UnregisterPesCollectionCallback(U32BIT handle)
Used to un-register a callback function that will receive specific PES data packets.
Definition: stbpes.c:602