MHEG5 1.0
DTVKit MHEG5 1.0 API Documentation
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
stmr_dl.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  *******************************************************************************/
25 #ifndef _STMR_DL_H_
26 #define _STMR_DL_H_
27 
28 /*---includes for this file--------------------------------------------------*/
29 
30 #include "techtype.h"
31 #include "dvb_ics.h"
32 #include "stmr_util.h"
33 #include "mh5profile.h"
34 
35 /*---Constant and macro definitions for public use---------------------------*/
36 
37 /*---Enumerations for public use---------------------------------------------*/
38 
39 /*---Global type defs for public use-----------------------------------------*/
40 
42 {
44  char *url;
48 
49 /*---Global variable declarations for public use-----------------------------*/
50 
51 /*---Global Function prototypes for public use-------------------------------*/
52 
53 
63 U32BIT MHEG5CreateDownloadRequest(U32BIT requestId, char *url,
64  U64BIT rangeFrom, U64BIT rangeTo,
65  BOOLEAN lastRequest);
66 
67 
73 void MHEG5StartDownloadRequest(U32BIT downloadId);
74 
75 
82 
83 
90 
91 
99 
100 
111 U64BIT MHEG5GetDownloadContentLength(U32BIT downloadId, U64BIT contentLength);
112 
113 
122 void MHEG5CopyDownloadBitrate(U32BIT downloadId, U32BIT *bytesPerSecond);
123 
124 
136 void MHEG5CopyDownloadStreamKeyInfo(U32BIT downloadId,
137  S_ICSKeys *keys,
138  MHEG5String *keyLocation);
139 
140 
148 BOOLEAN MHEG5GetDownloadPmt(U32BIT downloadId, U8BIT *pmt);
149 
150 
156 void MHEG5ResumeDownload(void);
157 
158 
165 
166 
172 void MHEG5StopDownloadRequest(U32BIT downloadId);
173 
174 
184 void MHEG5StopDownloadRequestAsync(U32BIT downloadId);
185 
186 
192 void MHEG5DestroyDownloadRequest(U32BIT downloadId);
193 
194 
195 #endif /*_STMR_DL_H*/
S32BIT maxBytes
Definition: stmr_dl.h:46
Utilitiy functions for IC Streamer.
S32BIT rangeFrom
Definition: stmr_dl.h:45
Definition: mh5base.h:78
Definition: dvb_ics.h:96
void MHEG5StopDownloadRequestAsync(U32BIT downloadId)
Stop HTTP download request asynchronously. This function should be used when the caller wants to stop...
Definition: stmr_dl.c:615
S32BIT MHEG5GetDownloadResponseCode(U32BIT downloadId)
Return response code for download request.
Definition: stmr_dl.c:374
void MHEG5StopDownloadRequest(U32BIT downloadId)
Stop HTTP download request.
Definition: stmr_dl.c:592
void MHEG5ClearDownloadThrottling(void)
Clear information about throttling, causing the download to proceed at full speed (until throttling k...
Definition: stmr_dl.c:557
uint8_t U8BIT
Definition: techtype.h:93
U8BIT * MHEG5GetDownloadRedirect(U32BIT downloadId)
Return the redirection URL for a request that was redirected (HTTP status 3xx).
Definition: stmr_dl.c:353
struct sMHEG5HttpStreamRequest MHEG5HttpStreamRequest
This file defines the profile for the MHEG engine.
void MHEG5CopyDownloadBitrate(U32BIT downloadId, U32BIT *bytesPerSecond)
Copy download bitrate that was obtained from the headers. If the X-BytesPerSecond header were not rec...
Definition: stmr_dl.c:422
char * url
Definition: stmr_dl.h:44
void MHEG5CopyDownloadStreamKeyInfo(U32BIT downloadId, S_ICSKeys *keys, MHEG5String *keyLocation)
Copy any keys or key location that were obtained from the headers. If such keys or location exist...
Definition: stmr_dl.c:450
BOOLEAN MHEG5GetDownloadPmt(U32BIT downloadId, U8BIT *pmt)
Return program map table (PMT) for download (if available). The table is provided as a complete secti...
Definition: stmr_dl.c:507
U32BIT downloadId
Definition: stmr_dl.h:43
int32_t S32BIT
Definition: techtype.h:98
System Wide Global Technical Data Type Definitions.
Definition: stmr_dl.h:41
void MHEG5DestroyDownloadRequest(U32BIT downloadId)
Destroy HTTP download request.
Definition: stmr_dl.c:633
void MHEG5StartDownloadRequest(U32BIT downloadId)
Start HTTP download request.
Definition: stmr_dl.c:312
U32BIT MHEG5CreateDownloadRequest(U32BIT requestId, char *url, U64BIT rangeFrom, U64BIT rangeTo, BOOLEAN lastRequest)
Create HTTP download request.
Definition: stmr_dl.c:209
void MHEG5ResumeDownload(void)
Resume download of the active request. Download may or may not have been paused due to the buffer bei...
Definition: stmr_dl.c:533
Interaction Channel Streaming functions required by MHEG5 engine References: [1] UK1 Profile - Digita...
U8BIT BOOLEAN
Definition: techtype.h:112
U64BIT MHEG5GetDownloadContentLength(U32BIT downloadId, U64BIT contentLength)
Return content length (in bytes) for download request. The content length may be: ...
Definition: stmr_dl.c:400
S32BIT MHEG5GetDownloadStatus(U32BIT downloadId)
Return HTTP status of download request.
Definition: stmr_dl.c:331
uint32_t U32BIT
Definition: techtype.h:97
Definition: glue_ulong.h:109