DVBCore  17.9.0
Open Source DVB Engine
 All Data Structures Files Functions Typedefs Macros Pages
ap_cntrl.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  *******************************************************************************/
24 // pre-processor mechanism so multiple inclusions don't cause compilation error
25 
26 #ifndef _AP_CNTRL_H
27 #define _AP_CNTRL_H
28 
29 #include "techtype.h"
30 #include "ap_common.h"
31 #include "stbhwav.h"
32 #include "vtctype.h"
33 #include "stbdpc.h"
34 
35 #ifdef INCLUDE_OTA_SSU
36 #include "stbota.h"
37 #endif
38 
39 #include "ap_si.h"
40 
41 //---Constant and macro definitions for public use-----------------------------
42 
43 
44 //---Enumerations for public use-----------------------------------------------
45 
46 typedef enum
47 {
48  ACTL_SI_NO_SEARCH,
49  ACTL_SI_CHANNEL_SEARCH,
50  ACTL_SI_CHANNEL_SEARCH_NO_NIT,
51  ACTL_SI_STARTUP_SEARCH,
52  ACTL_SI_EVENT_SCHED_SEARCH,
53  ACTL_SI_DVB_SSU_SEARCH,
54  ACTL_SI_TOT_SEARCH,
55  ACTL_SI_USER_DEFINED
56 } E_ACTL_SI_SRCH_REQD;
57 
58 typedef enum
59 {
60  ACTL_FREQ_SEARCH,
61  ACTL_NETWORK_SEARCH
62 } E_ACTL_SEARCH_TYPE;
63 
64 typedef enum
65 {
66  ACTL_STANDBY_MODE,
67  ACTL_STANDBY_SCART_MODE,
68  ACTL_TV_MODE,
69  ACTL_SCART_MODE,
70  ACTL_INT_DVD_MODE
71 } E_ACTL_AV_MODE;
72 
73 typedef enum
74 {
75  ACTL_NO_CHANGE,
76  ACTL_AUDIO_CHANGE,
77  ACTL_ADESC_CHANGE,
78  ACTL_BOTH_CHANGED
79 } E_ACTL_DECODE_CHANGE;
80 
81 
82 //---Global type defs for public use-------------------------------------------
83 typedef struct
84 {
85  S8BIT offset;
86  E_STB_DP_ANALOG_VIDEO_TYPE vtype;
88 
89 typedef struct
90 {
91  E_STB_DP_TBWIDTH bwidth;
92  E_STB_DP_TMODE mode;
93  E_STB_DP_TTYPE type;
94  U8BIT plp_id;
96 
97 typedef struct
98 {
99  E_STB_DP_CMODE mode;
100  U16BIT symbol_rate;
102 
103 typedef struct
104 {
105  void *satellite;
106  E_STB_DP_POLARITY polarity;
107  U16BIT symbol_rate;
108  E_STB_DP_FEC fec;
109  BOOLEAN dvb_s2;
110  E_STB_DP_MODULATION modulation;
112 
113 typedef struct
114 {
115  U32BIT freq;
116  union
117  {
122  } u;
124 
125 
126 typedef struct
127 {
128  E_STB_DP_RES_OWNER owner;
129  void *data;
130  U32BIT data_size;
132 
133 
134 //---Global type defs for public use-------------------------------------------
135 
143 typedef void (*DSM_FILE_CALLBACK)(void *user_data, U8BIT *file_data, U32BIT data_size);
144 
152 typedef U16BIT (*F_ServiceGetSubtitlePid)(void *serv_ptr, ADB_SUBT_INFO *subt_info);
153 
154 //---Global Function prototypes for public use---------------------------------
155 
163 BOOLEAN ACTL_StartServiceSearch(E_STB_DP_SIGNAL_TYPE tuner_type, E_ACTL_SEARCH_TYPE type);
164 
171 BOOLEAN ACTL_IsTargetRegionRequired(void);
172 
176 void ACTL_StopServiceSearch(void);
177 
184 BOOLEAN ACTL_StartStartupSearch(void);
185 
186 #ifdef INCLUDE_OTA_SSU
187 
200 BOOLEAN ACTL_StartOTAUpdate(U8BIT path, void *transport, U16BIT serv_id,
201  F_SSU_VERSION_CALLBACK version_callback);
202 
208 void ACTL_ContinueOTAUpdate(BOOLEAN do_update);
209 
213 void ACTL_StopOTAUpdate(void);
214 
222 BOOLEAN ACTL_StartSSUSearch(F_SSU_VERSION_CALLBACK version_callback);
223 
224 #endif /* INCLUDE_OTA_SSU */
225 
231 BOOLEAN ACTL_StartTotSearch(void);
232 
236 void ACTL_StopTotSearch(void);
237 
242 BOOLEAN ACTL_StartEitSearch(void);
243 
247 void ACTL_StopEitSearch(void);
248 
254 BOOLEAN ACTL_IsSearchComplete(void);
255 
263 U8BIT ACTL_GetSearchProgress(void);
264 
272 U8BIT ACTL_GetServiceSearchPath(void);
273 
274 
283 BOOLEAN ACTL_StartManualSearchById(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT chan_id,
284  BOOLEAN start_search);
285 
294 BOOLEAN ACTL_StartManualSearch(E_STB_DP_SIGNAL_TYPE tuner_type,
295  S_MANUAL_TUNING_PARAMS *tuning_params, E_ACTL_SEARCH_TYPE type);
296 
301 void ACTL_FinishManualSearch(void);
302 
311 U8BIT ACTL_AcquirePathForService(void *s_ptr, BOOLEAN with_decoders, BOOLEAN for_recording,
312  S_ACTL_OWNER_INFO *owner);
313 
319 void ACTL_ReleaseLivePathForService(void *s_ptr, E_STB_DP_RES_OWNER owner);
320 
327 BOOLEAN ACTL_ReleasePath(U8BIT path);
328 
335 BOOLEAN ACTL_AcquirePathOwnership(U8BIT path, S_ACTL_OWNER_INFO *owner_info);
336 
344 BOOLEAN ACTL_ReleasePathOwnership(U8BIT path, E_STB_DP_RES_OWNER owner);
345 
353 BOOLEAN ACTL_CanServiceBeViewed(void *s_ptr);
354 
360 void* ACTL_GetCurrentSatellite(U8BIT path);
361 
374 U8BIT ACTL_TuneToTransport(U8BIT path, S_ACTL_OWNER_INFO *owner_info, void *t_ptr,
375  E_ACTL_SI_SRCH_REQD reqd_si, BOOLEAN relock_on);
376 
390 U8BIT ACTL_TuneToService(U8BIT path, S_ACTL_OWNER_INFO *owner_info, void *s_ptr,
391  BOOLEAN override_lock, BOOLEAN for_live);
392 
409 BOOLEAN ACTL_TuneUsingDSD(U8BIT path, SI_DELIVERY_SYS_DESC_TYPE dsd_type,
410  SI_DELIVERY_SYS_DESC *dsd, U16BIT service_id, E_ACTL_SI_SRCH_REQD reqd_si);
411 
417 BOOLEAN ACTL_IsTuned(U8BIT path);
418 
423 void ACTL_TuneOff(U8BIT path);
424 
429 void ACTL_DecodeOff(U8BIT path);
430 
435 void ACTL_ReTuneAudio(void);
436 
441 void ACTL_ReTuneSubtitles(void);
442 
448 BOOLEAN ACTL_HasDecodingStarted(U8BIT path);
449 
455 BOOLEAN ACTL_IsDecodingLocked(U8BIT path);
456 
461 void ACTL_ReleaseChannelLock(void);
462 
471 BOOLEAN ACTL_TuneToRfChanArrayEntry(U8BIT path, U16BIT id, E_ACTL_SI_SRCH_REQD reqd_si, BOOLEAN relock_on);
472 
479 BOOLEAN ACTL_TuneToRfChanArrayAnalogEntry(U8BIT path, U16BIT id);
480 
489 BOOLEAN ACTL_TuneToUserDefinedParams(U8BIT path, S_MANUAL_TUNING_PARAMS *tuning_params,
490  E_ACTL_SI_SRCH_REQD reqd_si, BOOLEAN relock_on);
491 
496 void ACTL_EnterStandby(void);
497 
505 void ACTL_LeaveStandby(void *s_ptr, BOOLEAN tune_to_service);
506 
511 void ACTL_SetStandbyState(BOOLEAN state);
512 
516 void ACTL_SetStandbyVCRActive(void);
517 
526 void ACTL_SetVideoWindow(S16BIT win_x, S16BIT win_y, U16BIT win_width, U16BIT win_height);
527 
532 void ACTL_SetTVAspectRatio(E_STB_AV_ASPECT_RATIO aspect_ratio);
533 
538 E_STB_AV_ASPECT_RATIO ACTL_GetTVAspectRatio(void);
539 
546 void ACTL_SetTVAspectMode(E_STB_AV_ASPECT_MODE aspect_mode);
547 
552 E_STB_AV_ASPECT_MODE ACTL_GetTVAspectMode(void);
553 
561 void ACTL_SetTVAspectConversion(E_STB_AV_ASPECT_RATIO aspect_ratio, E_STB_AV_ASPECT_MODE aspect_mode);
562 
570 E_STB_AV_VIDEO_FORMAT ACTL_GetActualVideoMode(U16BIT *width, U16BIT *height);
571 
577 void ACTL_HDMIConnected(void);
578 
583 void ACTL_HDMIDisconnected(void);
584 
589 BOOLEAN ACTL_IsHDMIConnected(void);
590 
600 U16BIT ACTL_GetHDMIResolutions(E_STB_AV_VIDEO_FORMAT **video_formats, U16BIT *current_index);
601 
610 void ACTL_UpdateVideoMode(E_STB_AV_ASPECT_RATIO aspect, BOOLEAN force);
611 
618 void ACTL_ApplyHDCP(void *s_ptr);
619 
624 E_ACTL_AV_MODE ACTL_GetAvModeStatus(void);
625 
626 /* RF channel details utility functions */
627 
633 U16BIT ACTL_GetNumRfChanArrayEntries(E_STB_DP_SIGNAL_TYPE tuner_type);
634 
641 U8BIT* ACTL_GetRfChanName(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id);
642 
649 U8BIT* ACTL_GetRfNameFromFreq(E_STB_DP_SIGNAL_TYPE tuner_type, U32BIT freq_hz);
650 
657 U32BIT ACTL_GetRfChanFreqHz(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id);
658 
665 U16BIT ACTL_GetRfSymbolRate(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id);
666 
673 U8BIT ACTL_GetRfModulation(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id);
674 
680 E_STB_DP_TTYPE ACTL_GetTerRfChanType(U16BIT id);
681 
682 #ifdef COMMON_INTERFACE
683 /* CI functions */
684 
693 void ACTL_TuneToCIService(U8BIT path, S_ACTL_OWNER_INFO *owner_info, void *s_ptr, E_APP_SI_MODE si_mode);
694 
702 void ACTL_ContinueCIPLUSTune(U8BIT path, BOOLEAN continue_tuning);
703 #endif
704 
708 void ACTL_EnableCiModule(void);
709 
713 void ACTL_DisableCiModule(void);
714 
719 BOOLEAN ACTL_IsCiUiRequired(void);
720 
726 BOOLEAN ACTL_GetDecodePausedState(U8BIT path);
727 
734 BOOLEAN ACTL_StartSubtitles(void);
735 
739 void ACTL_PauseSubtitles(void);
740 
744 void ACTL_ResumeSubtitles(void);
745 
749 void ACTL_StopSubtitles(void);
750 
756 BOOLEAN ACTL_SuppressSubtitles(BOOLEAN suppress);
757 
761 BOOLEAN ACTL_AreSubtitlesDisplayed(void);
762 
766 BOOLEAN ACTL_AreSubtitlesStarted(void);
767 
772 BOOLEAN ACTL_IsAudioDescriptionOn(void);
773 
781 BOOLEAN ACTL_StartAudioDescription(U8BIT path);
782 
787 void ACTL_StopAudioDescription(U8BIT path);
788 
793 void ACTL_SetADVolume(U8BIT volume);
794 
802 void ACTL_SetParentalControl(BOOLEAN enabled);
803 
809 BOOLEAN ACTL_ParentalControlEnabled(void);
810 
817 void ACTL_SetParentalControlAge(U8BIT age);
818 
824 U8BIT ACTL_GetParentalControlAge(void);
825 
832 void ACTL_ApplyParentalControl(U8BIT path, void *s_ptr);
833 
834 #ifdef FREEVIEW_PLAYBACK
835 
841 BOOLEAN ACTL_IsTrailerBookingAvailable(void *serv_ptr);
842 #endif
843 
847 void ACTL_SetupPlayback(void);
848 
853 void ACTL_StartPlayback(void *s_ptr);
854 
859 U8BIT ACTL_GetActivePath(void);
860 
868 void ACTL_StartDecoding(U8BIT path, void *s_ptr);
869 
874 void ACTL_SetMhegAVControl(BOOLEAN control);
875 
882 
887 void ACTL_SetVolumeAdjustment(S8BIT scaling);
888 
893 U8BIT ACTL_GetVolume(void);
894 
900 U8BIT ACTL_SetVolume(U8BIT volume);
901 
907 U8BIT ACTL_ChangeVolume(S8BIT volume_change);
908 
913 void ACTL_SetMute(BOOLEAN mute);
914 
919 BOOLEAN ACTL_ToggleMute(void);
920 
925 BOOLEAN ACTL_IsMuted(void);
926 
934 BOOLEAN ACTL_SetActiveProfile(void *profile);
935 
936 
944 E_ACTL_DECODE_CHANGE ACTL_SetupAudioDecoding(U8BIT path, void *s_ptr);
945 
946 
947 //---Function prototypes for internal use---------------------------------
948 
952 void ACTL_InitialiseAppControl(void);
953 
958 void ACTL_ActionEvent(U32BIT event, void *event_data);
959 
965 BOOLEAN ACTL_CheckLiveServiceChange(void);
966 
972 BOOLEAN ACTL_HandlePrivateTimerEvent(U32BIT timer_handle);
973 
974 void ACTL_SetAnalogChanIdString(U8BIT *str_ptr);
975 
980 void ACTL_AllowAnalogVideo(BOOLEAN allow_analog_video);
981 
982 #endif // _AP_CNTRL_H
E_STB_AV_ASPECT_RATIO ACTL_GetTVAspectRatio(void)
Returns the current TV aspect ratio.
Definition: ap_cntrl.c:2283
void ACTL_SetMhegAVControl(BOOLEAN control)
Sets the MHEG5 audio volume adjust to be applied.
Definition: ap_cntrl.c:4462
BOOLEAN ACTL_HasDecodingStarted(U8BIT path)
Returns whether decoding has been started on the given path.
Definition: ap_cntrl.c:2120
BOOLEAN ACTL_CheckLiveServiceChange(void)
Checks whether the service tuned to on the live path has changed and informs the UI if it has...
Definition: ap_cntrl.c:5141
U8BIT ACTL_ChangeVolume(S8BIT volume_change)
Changes the main audio volume and returns the new volume.
Definition: ap_cntrl.c:4549
Definition: ap_cntrl.h:83
BOOLEAN ACTL_HandlePrivateTimerEvent(U32BIT timer_handle)
Handles all the private timer events.
Definition: ap_cntrl.c:941
API interfacing the midware with Intellibyte loader library.
void ACTL_ApplyParentalControl(U8BIT path, void *s_ptr)
Checks the parental control for the current event on the given service to determine whether decoding ...
Definition: ap_cntrl.c:3111
Definition: ap_cntrl.h:113
void ACTL_StopEitSearch(void)
Function to stop the EIT search before it completes.
Definition: ap_cntrl.c:3985
void ACTL_ActionEvent(U32BIT event, void *event_data)
Actions external events.
Definition: ap_cntrl.c:489
void ACTL_SetTVAspectConversion(E_STB_AV_ASPECT_RATIO aspect_ratio, E_STB_AV_ASPECT_MODE aspect_mode)
Used to set the aspect conversion applied to the video based on the TV aspect ratio and aspect mode t...
Definition: ap_cntrl.c:2326
void ACTL_SetVolumeAdjustment(S8BIT scaling)
Sets the MHEG5 audio volume adjust to be applied.
Definition: ap_cntrl.c:4490
void ACTL_PauseSubtitles(void)
Disables the display of subtitles but processing continues.
Definition: ap_cntrl.c:3376
void ACTL_ReleaseLivePathForService(void *s_ptr, E_STB_DP_RES_OWNER owner)
Finds the path being used to view the given service and releases it.
Definition: ap_cntrl.c:4674
void ACTL_StopTotSearch(void)
Function to stop the TOT search before it completes.
Definition: ap_cntrl.c:3909
U32BIT ACTL_GetRfChanFreqHz(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id)
Returns a pointer to the channel name.
Definition: ap_cntrl.c:1207
Header file - macros and function prototypes for public use.
void ACTL_TuneOff(U8BIT path)
Stops tuning on the given path.
Definition: ap_cntrl.c:2005
U8BIT * ACTL_GetRfNameFromFreq(E_STB_DP_SIGNAL_TYPE tuner_type, U32BIT freq_hz)
Returns the rf name appropriate to the frequency specified.
Definition: ap_cntrl.c:1258
BOOLEAN ACTL_StartStartupSearch(void)
Function to start the startup search when booting from cold. This search checks the validity of the s...
Definition: ap_cntrl.c:3750
BOOLEAN ACTL_IsAudioDescriptionOn(void)
Returns whether audio description has been turned on.
Definition: ap_cntrl.c:2631
void ACTL_ReleaseChannelLock(void)
Releases the lock on a channel after decoding has been blocked due to the service being parental lock...
Definition: ap_cntrl.c:2053
U8BIT * ACTL_GetRfChanName(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id)
Returns a pointer to the channel name.
Definition: ap_cntrl.c:1084
void ACTL_AllowAnalogVideo(BOOLEAN allow_analog_video)
Enables or disables analog video display.
Definition: ap_cntrl.c:2608
BOOLEAN ACTL_AreSubtitlesDisplayed(void)
Returns whether subtitles are being displayed.
Definition: ap_cntrl.c:3473
U8BIT ACTL_GetParentalControlAge(void)
Returns the current age set for parental control. 0 will be returned if parental control is disabled ...
Definition: ap_cntrl.c:3088
void ACTL_ResumeSubtitles(void)
Resumes the display of subtitles after they've been paused.
Definition: ap_cntrl.c:3404
void ACTL_InitialiseAppControl(void)
Control system initialisation.
Definition: ap_cntrl.c:424
BOOLEAN ACTL_TuneToRfChanArrayAnalogEntry(U8BIT path, U16BIT id)
Tunes to the specified rf channel array entry in analogue mode.
Definition: ap_cntrl.c:1424
Definition: ap_common.h:48
E_STB_DP_TTYPE ACTL_GetTerRfChanType(U16BIT id)
Returns the terrestrial type (T or T2) for the given channel id.
Definition: ap_cntrl.c:1326
void ACTL_SetStandbyVCRActive(void)
Reports standby state to the a/v output control state machine.
Definition: ap_cntrl.c:2186
BOOLEAN ACTL_IsHDMIConnected(void)
Returns whether the HDMI is connected or not.
Definition: ap_cntrl.c:2918
Header file - Function prototypes for A/V control.
BOOLEAN ACTL_CanServiceBeViewed(void *s_ptr)
Checks whether there's a tuner available to view the given service. This takes into account whether t...
Definition: ap_cntrl.c:4809
void ACTL_StopAudioDescription(U8BIT path)
Stops AD decoding.
Definition: ap_cntrl.c:2695
BOOLEAN ACTL_StartSubtitles(void)
Starts subtitle processing and display if the current service has valid subtitle data. If DVB subtitles aren't available, teletext will be used if available.
Definition: ap_cntrl.c:3331
E_STB_AV_VIDEO_FORMAT ACTL_GetActualVideoMode(U16BIT *width, U16BIT *height)
Reads the saved video format and returns the best mode available if it's set to AUTO or is invalid fo...
Definition: ap_cntrl.c:2734
BOOLEAN ACTL_SuppressSubtitles(BOOLEAN suppress)
Stops subtitles being displayed if another OSD requires them to be hidden, such as CI+...
Definition: ap_cntrl.c:3313
U8BIT ACTL_GetServiceSearchPath(void)
Returns path used buy currently running search. This works for any of the available types of searches...
Definition: ap_cntrl.c:4105
Header file - Function prototypes for A/V control.
void ACTL_ReTuneSubtitles(void)
Stops and restarts subtitle decoding on the live path. This may be required due to a change in langua...
Definition: ap_cntrl.c:2099
void ACTL_SetMute(BOOLEAN mute)
Sets the audio mute state.
Definition: ap_cntrl.c:4596
BOOLEAN ACTL_IsSearchComplete(void)
Returns TRUE if current search has finished. This works for any of the available types of searches...
Definition: ap_cntrl.c:4010
BOOLEAN ACTL_IsTargetRegionRequired(void)
When the search has completed, this function should be called to see whether the target region UI sho...
Definition: ap_cntrl.c:3709
void ACTL_EnterStandby(void)
Puts DVB into standby mode. It will continue to monitor SI for recordings, SSU updates, etc., unless it goes into low power standby.
Definition: ap_cntrl.c:4833
void ACTL_SetStandbyState(BOOLEAN state)
Reports the standby state to the A/V output controller.
Definition: ap_cntrl.c:2161
BOOLEAN ACTL_ParentalControlEnabled(void)
Returns whether parental control is enabled. This will also return TRUE if parental control has been ...
Definition: ap_cntrl.c:3039
BOOLEAN ACTL_StartAudioDescription(U8BIT path)
Starts decoding an audio description stream, if available, on the given path. If AD isn't currently a...
Definition: ap_cntrl.c:2645
void ACTL_SetParentalControl(BOOLEAN enabled)
Enables or disables parental control. This enables or disables locking on a per channel basis...
Definition: ap_cntrl.c:3008
BOOLEAN ACTL_TuneToUserDefinedParams(U8BIT path, S_MANUAL_TUNING_PARAMS *tuning_params, E_ACTL_SI_SRCH_REQD reqd_si, BOOLEAN relock_on)
Tunes to the given set of tuning parameters.
Definition: ap_cntrl.c:1470
void ACTL_SetAnalogChanIdString(U8BIT *str_ptr)
sends string to be displayed via pixelworks if it has changed (Must not send message to PixelWorks if...
Definition: ap_cntrl.c:2545
void ACTL_ApplyHDCP(void *s_ptr)
Checks content protection requirements for the current event on the given service to determine whethe...
Definition: ap_cntrl.c:3235
BOOLEAN ACTL_StartManualSearch(E_STB_DP_SIGNAL_TYPE tuner_type, S_MANUAL_TUNING_PARAMS *tuning_params, E_ACTL_SEARCH_TYPE type)
Start a service search on, or just tune to, the transport defined by the given tuning parameters...
Definition: ap_cntrl.c:4183
U16BIT ACTL_GetHDMIResolutions(E_STB_AV_VIDEO_FORMAT **video_formats, U16BIT *current_index)
Returns an array of valid HDMI resolutions and the index of the currently selected format...
Definition: ap_cntrl.c:2935
BOOLEAN ACTL_IsDecodingLocked(U8BIT path)
Returns whether decoding is locked, due to parental locking, on the given path.
Definition: ap_cntrl.c:2141
U8BIT ACTL_GetSearchProgress(void)
Returns search progress as a percentage. This works for any of the available types of searches...
Definition: ap_cntrl.c:4024
BOOLEAN ACTL_StartEitSearch(void)
Entry point for starting an EIT search.
Definition: ap_cntrl.c:3931
Definition: ap_cntrl.h:103
void ACTL_SetMhegSubtitlePidFunc(F_ServiceGetSubtitlePid func)
Sets function retrieve Subtitle PID and info. Allows external MHEG5 module to override the default fu...
Definition: ap_cntrl.c:4474
void ACTL_FinishManualSearch(void)
Function to be called when a manual service search has completed, or is being stopped.
Definition: ap_cntrl.c:4280
BOOLEAN ACTL_StartServiceSearch(E_STB_DP_SIGNAL_TYPE tuner_type, E_ACTL_SEARCH_TYPE type)
Entry point for starting a service search for a full retune or to update the existing service lineup...
Definition: ap_cntrl.c:3544
void ACTL_LeaveStandby(void *s_ptr, BOOLEAN tune_to_service)
Brings the DVB out of standby mode.
Definition: ap_cntrl.c:4958
BOOLEAN ACTL_AreSubtitlesStarted(void)
Returns whether subtitles have been started, even if they aren't being displayed. ...
Definition: ap_cntrl.c:3483
BOOLEAN ACTL_ReleasePath(U8BIT path)
Releases the decode path and all resources no longer needed. The path may not be released if the path...
Definition: ap_cntrl.c:4706
void ACTL_StartPlayback(void *s_ptr)
Start streaming the specified service.
Definition: ap_cntrl.c:1948
U8BIT ACTL_TuneToService(U8BIT path, S_ACTL_OWNER_INFO *owner_info, void *s_ptr, BOOLEAN override_lock, BOOLEAN for_live)
Starts the process of tuning to the specified service. If the service is to be tuned on the live path...
Definition: ap_cntrl.c:1595
BOOLEAN ACTL_StartTotSearch(void)
Function to start a TOT search which is required to set the system clock when starting from power off...
Definition: ap_cntrl.c:3857
BOOLEAN ACTL_IsMuted(void)
Returns the muted state of the audio.
Definition: ap_cntrl.c:4640
BOOLEAN ACTL_GetDecodePausedState(U8BIT path)
Gets user paused flag value.
Definition: ap_cntrl.c:2526
U16BIT ACTL_GetRfSymbolRate(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id)
Returns the channel symbol rate.
Definition: ap_cntrl.c:1135
BOOLEAN ACTL_IsTuned(U8BIT path)
Returns whether the given path is currently tuned.
Definition: ap_cntrl.c:1900
application level SI task
BOOLEAN ACTL_IsTrailerBookingAvailable(void *serv_ptr)
Returns whether trailer booking is available based on whether it's enabled and the number of links cu...
Definition: ap_cntrl.c:3496
void ACTL_SetupPlayback(void)
Starts the SI to acquire the PMT and fill the ip service in.
Definition: ap_cntrl.c:1921
void ACTL_DisableCiModule(void)
Disables CI module.
Definition: ap_cntrl.c:2501
U8BIT ACTL_TuneToTransport(U8BIT path, S_ACTL_OWNER_INFO *owner_info, void *t_ptr, E_ACTL_SI_SRCH_REQD reqd_si, BOOLEAN relock_on)
Tunes to the given transport and sets the type of SI monitoring that will be started when the tuning ...
Definition: ap_cntrl.c:1530
Definition: ap_cntrl.h:126
System Wide Global Technical Data Type Definitions.
void ACTL_SetTVAspectMode(E_STB_AV_ASPECT_MODE aspect_mode)
Used to set the TV aspect mode which defines how the video will be displayed based on the aspect rati...
Definition: ap_cntrl.c:2296
void ACTL_SetVideoWindow(S16BIT win_x, S16BIT win_y, U16BIT win_width, U16BIT win_height)
Sets the video window to the size specified. Coordinates are relative to the screen resolution...
Definition: ap_cntrl.c:2236
BOOLEAN ACTL_ToggleMute(void)
Toggles the current mute state and returns the new mute setting.
Definition: ap_cntrl.c:4617
BOOLEAN ACTL_ReleasePathOwnership(U8BIT path, E_STB_DP_RES_OWNER owner)
Releases ownership of the path, and frees any associated data, if the given owner is the path's owner...
Definition: ap_cntrl.c:4776
void ACTL_HDMIDisconnected(void)
Sets flag to indicate HDMI is now disconnected. This function is called by the event task when the HD...
Definition: ap_cntrl.c:2906
U8BIT ACTL_SetVolume(U8BIT volume)
Sets the main audio volume and returns the new volume.
Definition: ap_cntrl.c:4522
Definition: ap_cntrl.h:97
void ACTL_ReTuneAudio(void)
Stops and restarts audio decoding on the live path. This may be required due to a change in language ...
Definition: ap_cntrl.c:2079
BOOLEAN ACTL_IsCiUiRequired(void)
Returns state of ci_ui_required flag.
Definition: ap_cntrl.c:2514
E_ACTL_AV_MODE ACTL_GetAvModeStatus(void)
Returns av_mode.
Definition: ap_cntrl.c:2350
void ACTL_StopSubtitles(void)
Stops subtitles from being displayed and processed.
Definition: ap_cntrl.c:3436
void ACTL_SetParentalControlAge(U8BIT age)
Sets the age (valid values 4-18) at which parental control will be will be applied. If the age is invalid, no change will be made to the current setting.
Definition: ap_cntrl.c:3065
Definition: stbsitab.h:488
void ACTL_UpdateVideoMode(E_STB_AV_ASPECT_RATIO aspect, BOOLEAN force)
Update video mode sets Voyager resolution as well as platform Also, stops subtitles during the operat...
Definition: ap_cntrl.c:2832
BOOLEAN ACTL_StartManualSearchById(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT chan_id, BOOLEAN start_search)
Start a service search on, or just tune to, a transport, using chan_id as an index into the country's...
Definition: ap_cntrl.c:4118
U16BIT ACTL_GetNumRfChanArrayEntries(E_STB_DP_SIGNAL_TYPE tuner_type)
Returns the number of entries in the rf channel table.
Definition: ap_cntrl.c:1046
void ACTL_HDMIConnected(void)
Checks that the selected HDMI resolution mode is supported and, if not, chooses the best one availabl...
Definition: ap_cntrl.c:2877
application level common header
void ACTL_EnableCiModule(void)
Enables CI module.
Definition: ap_cntrl.c:2489
BOOLEAN ACTL_TuneToRfChanArrayEntry(U8BIT path, U16BIT id, E_ACTL_SI_SRCH_REQD reqd_si, BOOLEAN relock_on)
Tunes to the specified rf channel array entry for DVB-T and DVB-C.
Definition: ap_cntrl.c:1356
void ACTL_StartDecoding(U8BIT path, void *s_ptr)
Sets up and starts decoding for the given service. This is used for PVR playback, but could also be u...
Definition: ap_cntrl.c:1984
U8BIT ACTL_GetActivePath(void)
Returns the active path (live, playback, etc...), i.e. the one using the decoders.
Definition: ap_cntrl.c:3520
Definition: ap_cntrl.h:89
U8BIT ACTL_GetVolume(void)
Returns the current audio volume.
Definition: ap_cntrl.c:4510
BOOLEAN ACTL_TuneUsingDSD(U8BIT path, SI_DELIVERY_SYS_DESC_TYPE dsd_type, SI_DELIVERY_SYS_DESC *dsd, U16BIT service_id, E_ACTL_SI_SRCH_REQD reqd_si)
Starts the process of tuning to a given transport or service that's defined by the given delivery sys...
Definition: ap_cntrl.c:1795
void(* DSM_FILE_CALLBACK)(void *user_data, U8BIT *file_data, U32BIT data_size)
Prototype for function that's called when a file requested from a DSM-CC carousel is received...
Definition: ap_cntrl.h:143
void ACTL_DecodeOff(U8BIT path)
Stops decoding on the given path.
Definition: ap_cntrl.c:2031
void ACTL_StopServiceSearch(void)
Function to stop the service search before it completes.
Definition: ap_cntrl.c:3734
E_ACTL_DECODE_CHANGE ACTL_SetupAudioDecoding(U8BIT path, void *s_ptr)
Setup default audio decoding params on current tuned service Can be used by external module (e...
Definition: ap_cntrl.c:5238
BOOLEAN ACTL_AcquirePathOwnership(U8BIT path, S_ACTL_OWNER_INFO *owner_info)
Attempts to take ownership of the given path (used by CI+)
Definition: ap_cntrl.c:4743
void ACTL_SetADVolume(U8BIT volume)
Sets the AD volume.
Definition: ap_cntrl.c:2716
void ACTL_SetTVAspectRatio(E_STB_AV_ASPECT_RATIO aspect_ratio)
Used to set the TV aspect ratio.
Definition: ap_cntrl.c:2262
U16BIT(* F_ServiceGetSubtitlePid)(void *serv_ptr, ADB_SUBT_INFO *subt_info)
Function pointer definition: Determines subtitle PID and whether it is DVB or teletext, for the given service.
Definition: ap_cntrl.h:152
U8BIT ACTL_AcquirePathForService(void *s_ptr, BOOLEAN with_decoders, BOOLEAN for_recording, S_ACTL_OWNER_INFO *owner)
Acquires a decode path suitable for tuning to the given service.
Definition: ap_cntrl.c:4655
void * ACTL_GetCurrentSatellite(U8BIT path)
Returns the current satellite being used by the given decode path.
Definition: ap_cntrl.c:1021
U8BIT ACTL_GetRfModulation(E_STB_DP_SIGNAL_TYPE tuner_type, U16BIT id)
Returns the modulation mode.
Definition: ap_cntrl.c:1171
E_STB_AV_ASPECT_MODE ACTL_GetTVAspectMode(void)
Returns the current TV aspect mode.
Definition: ap_cntrl.c:2312
BOOLEAN ACTL_SetActiveProfile(void *profile)
Sets the current profile. (CI+ only) If the profile is being set to CI+ profile and the necessary CAM...
Definition: ap_cntrl.c:5180