DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2004 Ocean Blue Software Ltd 00004 * 00005 * This file is part of a DTVKit Software Component 00006 * You are permitted to copy, modify or distribute this file subject to the terms 00007 * of the DTVKit 1.0 Licence which can be found in licence.txt or at www.dtvkit.org 00008 * 00009 * THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, 00010 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES 00011 * OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. 00012 * 00013 * If you or your organisation is not a member of DTVKit then you have access 00014 * to this source code outside of the terms of the licence agreement 00015 * and you are expected to delete this and any associated files immediately. 00016 * Further information on DTVKit, membership and terms can be found at www.dtvkit.org 00017 *******************************************************************************/ 00024 #ifndef _STBLZENC_H 00025 00026 #define _STBLZENC_H 00027 00028 //---Constant and macro definitions for public use----------------------------- 00029 00030 //---Enumerations for public use----------------------------------------------- 00031 00032 typedef enum e_stbencode 00033 { 00034 STBENCODE_SUCCESS = 0, 00035 STBENCODE_BADPARAM, 00036 STBENCODE_BADSOURCE, 00037 STBENCODE_USERBREAK, 00038 STBENCODE_NOMEMORY, 00039 STBENCODE_OVERFLOW, 00040 STBENCODE_BUSY 00041 } 00042 E_STBENCODE; 00043 00044 typedef enum e_stbencode_callback_type 00045 { 00046 STBENCODE_CALLBACK_TYPE_REQUEST_GETMEMORY, 00047 STBENCODE_CALLBACK_TYPE_REQUEST_FREEMEMORY, 00048 STBENCODE_CALLBACK_TYPE_REQUEST_SOURCE, 00049 STBENCODE_CALLBACK_TYPE_NOTIFY_RESULT, 00050 STBENCODE_CALLBACK_TYPE_NOTIFY_KICK_WATCHDOG, 00051 STBENCODE_CALLBACK_TYPE_IDLE 00052 } 00053 E_STBENCODE_CALLBACK_TYPE; 00054 00055 //---Global type defs for public use------------------------------------------- 00056 00057 typedef struct s_stbencode_request_memory 00058 { 00059 void *ptr; 00060 U32BIT size; 00061 } 00062 S_STBENCODE_REQUEST_MEMORY; 00063 00064 typedef struct s_stbencode_request_source 00065 { 00066 void *ptr; 00067 U32BIT num_bytes; 00068 U32BIT max_num_bytes; 00069 00070 U32BIT total_offset; 00071 U32BIT total_size; 00072 } 00073 S_STBENCODE_REQUEST_SOURCE; 00074 00075 typedef struct s_stbencode_notify_result 00076 { 00077 void *ptr; 00078 U32BIT num_bytes; 00079 00080 U32BIT total_offset; 00081 U32BIT max_total_size; 00082 } 00083 S_STBENCODE_NOTIFY_RESULT; 00084 00085 //---Global Function prototypes for public use--------------------------------- 00086 00087 E_STBENCODE STB_LZEncode(U32BIT source_length, U32BIT required_dest_packet_size, 00088 BOOLEAN (*callback_function)(E_STBENCODE_CALLBACK_TYPE, void *), 00089 BOOLEAN watchdog_kick_required, BOOLEAN is_top_bit_cleared, 00090 BOOLEAN is_header_required); 00091 00092 00093 #endif // _STBLZENC_H 00094 00095 //***************************************************************************** 00096 // End of file 00097 //*****************************************************************************