Skip to content

Commit

Permalink
CR-1185333: Update pts data type to 64-bit signed integer (#8373)
Browse files Browse the repository at this point in the history
Signed-off-by: suresh avula <[email protected]>
Co-authored-by: Monica Nandakumar <[email protected]>
Co-authored-by: pchakkav <[email protected]>
  • Loading branch information
3 people authored Sep 4, 2024
1 parent 2ba7c3b commit f92ade7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xma/include/app/xmabuffers.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ typedef struct XmaDataBuffer
XmaBufferRef data; /**< description of data buffer*/
int32_t alloc_size; /**< allocated size of data buffer */
int32_t is_eof; /**< flag to indicate that this buffer is EOF */
int32_t pts; /**< presentation time stamp looping back to application */
int64_t pts; /**< presentation time stamp looping back to application */
int32_t poc; /**< Picture order count for current output frame */
} XmaDataBuffer;

Expand Down
2 changes: 1 addition & 1 deletion src/xma/xma_legacy/include/app/xmabuffers.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ typedef struct XmaDataBuffer
XmaBufferRef data; /**< description of data buffer*/
int32_t alloc_size; /**< allocated size of data buffer */
int32_t is_eof; /**< flag to indicate that this buffer is EOF */
int32_t pts; /**< presentation time stamp looping back to application */
int64_t pts; /**< presentation time stamp looping back to application */
int32_t poc; /**< Picture order count for current output frame */
} XmaDataBuffer;

Expand Down

0 comments on commit f92ade7

Please sign in to comment.