Skip to content

Commit 908066b

Browse files
RDKEMW-6566: Change display-offset param to 64-bit
The change is necessary because a 32-bit offset is not always enough. The underlying libraries can easily handle 64-bit, but unfortunately this interface was created with 32-bit. We have control of both clients that use this function, and the change is desired by one and unused by the other, so we believe it's safe.
1 parent a8ba6c0 commit 908066b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apis/TextTrack/ITextTrack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ struct EXTERNAL ITextTrack : virtual public Core::IUnknown {
431431
* @param data Is the data to display, properly formatted as per the expectations of the type used
432432
* @text sendSessionData
433433
*/
434-
virtual Core::hresult SendSessionData(const uint32_t sessionId, const DataType type, const int32_t displayOffsetMs, const string &data) = 0;
434+
virtual Core::hresult SendSessionData(const uint32_t sessionId, const DataType type, const int64_t displayOffsetMs, const string &data) = 0;
435435
/**
436436
* @brief Sends the current timestamp from a media player to a render session.
437437
* @details The STC is used in some forms of text rendering to compare against the text data PTS to determine its presentation time.

0 commit comments

Comments
 (0)