DVBCore
1.0
Open source DVB engine
|
00001 /******************************************************************************* 00002 * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org) 00003 * Copyright © 2007 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 *******************************************************************************/ 00025 #ifndef _STBRESMGR_H 00026 #define _STBRESMGR_H 00027 00028 #ifndef INVALID_RES_ID 00029 #define INVALID_RES_ID ((U8BIT)0xFF) /* ID used to represent an invalid resource */ 00030 #endif 00031 00032 00033 BOOLEAN STB_RESInitialise(void); 00034 00035 U8BIT STB_RESNumTuners(void); 00036 U8BIT STB_RESAcquireTuner(E_STB_DP_SIGNAL_TYPE tuner_type, void *transport, BOOLEAN for_recording, 00037 E_STB_DP_RES_OWNER owner, BOOLEAN *tuner_taken); 00038 void STB_RESReleaseTuner(U8BIT tuner_id, BOOLEAN for_recording); 00039 void STB_RESSetTunerOwner(U8BIT tuner_id, E_STB_DP_RES_OWNER owner); 00040 E_STB_DP_SIGNAL_TYPE STB_RESGetTunerType(U8BIT tuner_id); 00041 void STB_RESSetTunedTransport(U8BIT tuner_id, void *t_ptr); 00042 void* STB_RESGetTunedTransport(U8BIT tuner_id); 00043 BOOLEAN STB_RESCanTuneToTransport(E_STB_DP_SIGNAL_TYPE tuner_type, void *transport); 00044 U8BIT STB_RESTunerUsageCount(U8BIT tuner_id); 00045 00046 U8BIT STB_RESNumDemuxes(void); 00047 U8BIT STB_RESAcquireDemux(U8BIT demux_id, U16BIT caps); 00048 void STB_RESReleaseDemux(U8BIT demux_id); 00049 U16BIT STB_RESGetDemuxCaps(U8BIT demux_id); 00050 00051 U8BIT STB_RESNumAudioDecoders(void); 00052 U8BIT STB_RESAcquireAudioDecoder(void); 00053 void STB_RESReleaseAudioDecoder(U8BIT decoder_id); 00054 00055 U8BIT STB_RESAcquireADDecoder(void); 00056 void STB_RESReleaseADDecoder(U8BIT decoder_id); 00057 U8BIT STB_RESNumVideoDecoders(void); 00058 U8BIT STB_RESAcquireVideoDecoder(void); 00059 void STB_RESReleaseVideoDecoder(U8BIT decoder_id); 00060 00061 U8BIT STB_RESNumCISlots(void); 00062 U8BIT STB_RESAcquireCISlot(void *service, U8BIT *pmt_data, U8BIT *ci_protection_desc); 00063 BOOLEAN STB_RESUseCISlot(U8BIT slot_id); 00064 U8BIT STB_RESGetCISlotUsageCount(U8BIT slot_id); 00065 void STB_RESReleaseCISlot(U8BIT slot_id); 00066 #endif /* _STBRESMGR_H */