25 #ifndef _STMR_QUEUE_H_
26 #define _STMR_QUEUE_H_
void MHEG5QueueUpdateItem(MHEG5QueueItem *item, U32BIT processed)
Update the number of bytes processed in a queue item. The same item will be returned by the next call...
Definition: stmr_queue.c:396
BOOLEAN MHEG5QueueIsValidItem(MHEG5QueueItem *item)
Tell whether the item returned by MHEG5QueueGetHeadItem is valid. If the item is invalid, then streaming is disabled.
Definition: stmr_queue.c:374
Utilitiy functions for IC Streamer.
BOOLEAN last
Definition: stmr_queue.h:57
U32BIT MHEG5QueueGetBufferedBytes(void)
Return number of buffered bytes in the queue (regardless of request)
Definition: stmr_queue.c:550
Definition: stmr_queue.h:46
struct sMHEG5QueueItem * next
Definition: stmr_queue.h:48
MHEG5QueueItem * MHEG5QueueAllocItem(U32BIT requestId, U32BIT len)
Allocate a new queue item and initialise with request ID and block length.
Definition: stmr_queue.c:231
U32BIT requestId
Definition: stmr_queue.h:49
void MHEG5QueueRegisterReleaseCallback(void(*callback)(U32BIT requestId, U64BIT base, U64BIT position, U32BIT len, BOOLEAN last))
Register notification callback for item release events. If a callback is already registered for the e...
Definition: stmr_queue.c:686
void MHEG5QueueTerm(void)
Terminate queue manager.
Definition: stmr_queue.c:699
U32BIT downloadId
Definition: stmr_queue.h:50
E_MhegErr
Definition: mherrors.h:28
U32BIT offset
Definition: stmr_queue.h:53
MHEG5 engine interface error codes.
U32BIT timestamp
Definition: stmr_queue.h:56
uint8_t U8BIT
Definition: techtype.h:93
void MHEG5QueueReleaseAllItems(void)
Release all queue items - clear the queue completely.
Definition: stmr_queue.c:649
Definition: stmr_queue.h:43
U64BIT base
Definition: stmr_queue.h:55
void MHEG5QueueReleaseRequestItems(U32BIT requestId)
Release all queue items that are related to a given request.
Definition: stmr_queue.c:616
U64BIT position
Definition: stmr_queue.h:54
int len
Definition: mh5gate.c:66
Definition: stmr_queue.h:42
void MHEG5QueueEnableStreaming(U32BIT requestId)
Allow streaming data from the queue.
Definition: stmr_queue.c:564
uint16_t U16BIT
Definition: techtype.h:95
System Wide Global Technical Data Type Definitions.
U16BIT referenceCount
Definition: stmr_queue.h:58
BOOLEAN MHEG5QueueIsStreamingEnabled(void)
Tell whether streaming is enabled.
Definition: stmr_queue.c:606
struct sMHEG5QueueItem MHEG5QueueItem
void MHEG5QueueInsertItem(MHEG5QueueItem *item)
Insert a queue item into the queue.
Definition: stmr_queue.c:269
U8BIT * data
Definition: stmr_queue.h:51
MHEG5QueueItem * MHEG5QueueGetHeadItem(void)
Return the item at the head of the queue (the next item to consume). The function returns an "invalid...
Definition: stmr_queue.c:326
U8BIT BOOLEAN
Definition: techtype.h:112
MHEG5QueueEvent_t
Definition: stmr_queue.h:40
U32BIT len
Definition: stmr_queue.h:52
E_MhegErr MHEG5QueueInit(U8BIT *buffer, U32BIT bufferSize)
Initialise queue manager.
Definition: stmr_queue.c:125
void MHEG5QueueReleaseItem(MHEG5QueueItem *item)
Release an item from the queue. If the item is no longer in the queue (because the queue has been cle...
Definition: stmr_queue.c:467
uint32_t U32BIT
Definition: techtype.h:97
void MHEG5QueueDisableStreaming(void)
Do not allow streaming data from the queue.
Definition: stmr_queue.c:589
void MHEG5QueueRegisterInsertCallback(void(*callback)(U32BIT downloadId, U64BIT base, U64BIT position, U32BIT len, BOOLEAN last))
Register notification callback for item insertion event. If a callback is already registered for the ...
Definition: stmr_queue.c:671
Definition: glue_ulong.h:109