MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
dvb_video.h
Go to the documentation of this file.
1 /*******************************************************************************
2  * Copyright © 2014 The DTVKit Open Software Foundation Ltd (www.dtvkit.org)
3  * Copyright © 2012 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  *******************************************************************************/
42 #ifndef _DVB_VIDEO_H
43 #define _DVB_VIDEO_H
44 
45 #include "techtype.h"
46 #include "dvblocator.h"
47 #include "osdtype.h"
48 #include "vtctype.h"
49 #include "mherrors.h"
50 
51 /*---Constant and macro definitions for public use-----------------------------*/
52 
53 /*---Enumerations for public use-----------------------------------------------*/
54 
55 /* Video freeze options */
56 typedef enum
57 {
58  /* Freeze video display, continuously displaying the current or a subsequent
59  * video frame.
60  */
62 
63  /* Unfreeze video display - resume normal video decoding and display */
65 } E_VideoState;
66 
67 /* Widescreen alignment (where 16:9 video is played within 4:3 scene) */
68 typedef enum
69 {
70 #ifdef INCLUDE_FREESAT
71  MHEG5_ALIGNMENT_NONE,
72 #endif
76 
77 /* Subtitle hide / show options */
78 typedef enum
79 {
80  /* Hide subtitles */
82 
83  /* Show subtitles */
86 
87 
88 /* Subtitle freeze / unfreeze enumeration */
89 typedef enum
90 {
91  /* Freeze subtitles */
93 
94  /* Unfreeze subtitles */
97 
98 
99 /* Video encoding used in iframe/video */
100 typedef enum
101 {
102  VIDEO_ENC_MPEG2, /* see reference [1] - section 14.8.1 under "MPEG stills" */
103 
104  VIDEO_ENC_H_264 /* see reference [1] - section 14.14.1 under "H.264/AVC stills" */
106 
107 /*---Global type defs for public use-------------------------------------------*/
108 
109 /*---Global Function prototypes for public use---------------------------------*/
110 
118 
119 
133 
134 
141 
142 
163  U32BIT dataLength,
164  E_VideoEncoding encoding );
165 
173 
174 
186 
187 
201 
211 
212 #ifdef INCLUDE_FREESAT
213 
239 E_MhegErr DVB_MhegDecodeImagePlaneIFrame( U8BIT *pVideoData,
240  U32BIT dataLength,
241  tmMH5VideoEncoding_t encoding );
242 
243 
255 E_MhegErr DVB_MhegImagePlaneIFrameStop(void);
256 
257 #endif /*INCLUDE_FREESAT*/
258 
259 #endif /* _DVB_VIDEO_H */
260 
definition of OSD types
E_VideoEncoding
Definition: dvb_video.h:100
Definition: dvblocator.h:37
Definition: dvb_video.h:73
Definition: dvb_video.h:104
Definition: dvb_video.h:95
Definition: dvb_video.h:102
Definition: dvb_video.h:64
Header file - Function prototypes for A/V control.
E_MhegErr
Definition: mherrors.h:28
E_MhegErr DVB_MhegVideoStopStream(void)
MHEG5 engine takes control of Video - and specifies that decoding and presentation of any Video strea...
E_VideoAlignment
Definition: dvb_video.h:68
E_VideoState
Definition: dvb_video.h:56
MHEG5 engine interface error codes.
Definition: dvb_video.h:81
E_MhegErr DVB_MhegSubtitleSetVisibility(E_DvbSubtitleShowState showState)
Show or hide DVB subtitles. This operation remains in force until set again by another call to this f...
uint8_t U8BIT
Definition: techtype.h:93
BOOLEAN DVB_MhegGetSubtitlePref(void)
This function is used by the MHEG-5 engine to determine whether subtitles are currently enabled...
E_MhegErr DVB_MhegVideoPlayStream(S_DvbComponent *pDvbComponent)
MHEG5 engine takes control of Video - and informs that Video must be switched to the specified Video ...
E_MhegErr DVB_MhegVideoSetUpdating(E_VideoState displayState)
Switch between frozen or unfrozen video display (reacting on either the current or subsequent frame)...
E_DvbSubtitleFreezeState
Definition: dvb_video.h:89
Definition: dvb_video.h:92
System Wide Global Technical Data Type Definitions.
E_DvbSubtitleShowState
Definition: dvb_video.h:78
Definition of DVB locator and DVB component types.
U8BIT BOOLEAN
Definition: techtype.h:112
E_MhegErr DVB_MhegVideoPlayDefault(void)
MHEG5 engine gives control of Video to external application. Set decoding and presentation of Video a...
Definition: dvb_video.h:74
Definition: dvb_video.h:84
uint32_t U32BIT
Definition: techtype.h:97
Definition: dvb_video.h:61
E_MhegErr DVB_MhegVideoPlayIFrame(U8BIT *pVideoData, U32BIT dataLength, E_VideoEncoding encoding)
Instruct the controlling application to decode supplied video data. The I-Frame is displayed in the v...
E_MhegErr DVB_MhegVideoStopIFrame(void)
Instruct the controlling application to stop displaying the previously supplied video data in DVB_Mhe...