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 *******************************************************************************/ 00025 // pre-processor mechanism so multiple inclusions don't cause compilation error 00026 00027 #ifndef _STBPVRPR_H 00028 #define _STBPVRPR_H 00029 00030 #include "stbhwav.h" 00031 #include "stbhwdmx.h" 00032 00033 //---Constant and macro definitions for public use----------------------------- 00034 00035 //---Enumerations for public use----------------------------------------------- 00036 typedef enum 00037 { 00038 PVR_PID_TYPE_VIDEO, 00039 PVR_PID_TYPE_AUDIO, 00040 PVR_PID_TYPE_PCR, 00041 PVR_PID_TYPE_SUBTITLES, 00042 PVR_PID_TYPE_SECTION, 00043 PVR_PID_TYPE_TELETEXT 00044 } E_PVR_PID_TYPE; 00045 00046 00047 //---Global type defs for public use------------------------------------------- 00048 00049 typedef enum e_stb_pvr_start_mode 00050 { 00051 START_RUNNING = 0, 00052 START_PAUSED = 1, 00053 START_AVSYNC = 2, 00054 START_EXPORT_PES = 3, 00055 START_IMPORT_TS = 4, 00056 START_IMPORT_PES = 5 00057 } E_STB_PVR_START_MODE; 00058 00059 typedef enum e_stb_pvr_play_mode 00060 { 00061 PLAY_NO_TRICK = 0, 00062 PLAY_TRICK_FORWARDS = 1, 00063 PLAY_TRICK_REVERSE = 2, 00064 PLAY_TRICK_FRAME = 3 00065 } E_STB_PVR_PLAY_MODE; 00066 00067 typedef struct s_pvr_pid_info 00068 { 00069 E_PVR_PID_TYPE type; 00070 U16BIT pid; 00071 union 00072 { 00073 E_STB_AV_VIDEO_CODEC video_codec; 00074 E_STB_AV_AUDIO_CODEC audio_codec; 00075 } u; 00076 } S_PVR_PID_INFO; 00077 00078 00079 //---Global Function prototypes for public use--------------------------------- 00086 U8BIT STB_PVRInitPlayback(U8BIT num_audio_decoders, U8BIT num_video_decoders); 00087 00093 U8BIT STB_PVRInitRecording(U8BIT num_tuners); 00094 00101 void STB_PVRSetPlayStartMode(U8BIT audio_decoder, U8BIT video_decoder, E_STB_PVR_START_MODE mode); 00102 00110 void STB_PVRPlayHasVideo(U8BIT audio_decoder, U8BIT video_decoder, BOOLEAN has_video); 00111 00119 void STB_PVRSetPlaybackNotifyTime(U8BIT audio_decoder, U8BIT video_decoder, U32BIT notify_time); 00120 00130 BOOLEAN STB_PVRPlayStart(U16BIT disk_id, U8BIT audio_decoder, U8BIT video_decoder, U8BIT demux, 00131 U8BIT *basename); 00132 00142 BOOLEAN STB_PVRPlayChangeAudio(U8BIT audio_decoder, U8BIT video_decoder, U16BIT pid, U8BIT codec); 00143 00150 BOOLEAN STB_PVRIsPlayStarted(U8BIT audio_decoder, U8BIT video_decoder); 00151 00159 BOOLEAN STB_PVRPlaySetPosition(U8BIT audio_decoder, U8BIT video_decoder, U32BIT position_in_seconds); 00160 00166 void STB_PVRPlayStop(U8BIT audio_decoder, U8BIT video_decoder); 00167 00175 void STB_PVRPlayEnabled(U8BIT audio_decoder, U8BIT video_decoder, BOOLEAN *video, BOOLEAN *audio); 00176 00186 void STB_PVRPlaySetRetentionLimit(U8BIT audio_decoder, U8BIT video_decoder, U32BIT retention_limit, 00187 U16BIT rec_date, U8BIT rec_hour, U8BIT rec_min); 00188 00199 void STB_PVRSetRecordStartMode(U8BIT rec_index, E_STB_PVR_START_MODE mode, U32BIT param); 00200 BOOLEAN STB_PVRRecordStart(U16BIT disk_id, U8BIT rec_index, U8BIT *basename, 00201 U16BIT num_pids, S_PVR_PID_INFO *pid_array); 00202 00208 BOOLEAN STB_PVRRecordPause(U8BIT rec_index); 00209 00215 BOOLEAN STB_PVRRecordResume(U8BIT rec_index); 00216 00224 BOOLEAN STB_PVRRecordChangePids(U8BIT rec_index, U16BIT num_pids, S_PVR_PID_INFO *pids_array); 00225 00230 void STB_PVRRecordStop(U8BIT rec_index); 00231 00237 BOOLEAN STB_PVRIsRecordStarted(U8BIT rec_index); 00238 00245 void STB_PVRRecordEnabled(U8BIT rec_index, BOOLEAN *video, BOOLEAN *audio); 00246 00255 void STB_PVRSetRecordEncryptionKey(U8BIT rec_index, BOOLEAN state, U8BIT *key, U8BIT *iv, U32BIT key_len); 00256 00267 void STB_PVRSetPlaybackDecryptionKey(U8BIT audio_decoder, U8BIT video_decoder, BOOLEAN state, 00268 U8BIT *key, U8BIT *iv, U32BIT key_len); 00269 00277 void STB_PVRPlayTrickMode(U8BIT audio_decoder, U8BIT video_decoder, E_STB_PVR_PLAY_MODE mode, S16BIT speed); 00278 00284 void STB_PVRSaveFrame(U8BIT audio_decoder, U8BIT video_decoder); 00285 00292 S16BIT STB_PVRGetPlaySpeed(U8BIT audio_decoder, U8BIT video_decoder); 00293 00301 BOOLEAN STB_PVRSetPlaySpeed(U8BIT audio_decoder, U8BIT video_decoder, S16BIT speed); 00302 00310 BOOLEAN STB_PVRIsValidRecording(U16BIT disk_id, U8BIT *basename); 00311 00319 BOOLEAN STB_PVRCanBeUsedForRecording(U16BIT disk_id, U8BIT *basename); 00320 00328 BOOLEAN STB_PVRDeleteRecording(U16BIT disk_id, U8BIT *basename); 00329 00337 BOOLEAN STB_PVRGetRecordingSize(U16BIT disk_id, U8BIT *basename, U32BIT *rec_size_kb); 00338 00348 BOOLEAN STB_PVRGetElapsedTime(U8BIT audio_decoder, U8BIT video_decoder, U8BIT *elapsed_hours, 00349 U8BIT *elapsed_mins, U8BIT *elapsed_secs); 00350 00357 U8BIT STB_PVRAcquireRecorderIndex(U8BIT tuner, U8BIT demux); 00358 00363 void STB_PVRReleaseRecorderIndex(U8BIT rec_index); 00364 00375 BOOLEAN STB_PVRApplyDescramblerKey(U8BIT rec_index, E_STB_DMX_DESC_TYPE desc_type, 00376 E_STB_DMX_DESC_KEY_PARITY parity, U8BIT *key, U8BIT *iv); 00377 00378 #endif // _STBPVRPR_H