From f92ade7db7b0ce2fcdaac4271aa3e1ed17f14614 Mon Sep 17 00:00:00 2001 From: Suresh-Xilinx <66975225+sureshreddyavula@users.noreply.github.com> Date: Tue, 3 Sep 2024 23:46:04 -0700 Subject: [PATCH] CR-1185333: Update pts data type to 64-bit signed integer (#8373) Signed-off-by: suresh avula Co-authored-by: Monica Nandakumar <59196342+MonicaNandakumarMCW@users.noreply.github.com> Co-authored-by: pchakkav --- src/xma/include/app/xmabuffers.h | 2 +- src/xma/xma_legacy/include/app/xmabuffers.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xma/include/app/xmabuffers.h b/src/xma/include/app/xmabuffers.h index f6c6272c2b5..0b69ce46e51 100644 --- a/src/xma/include/app/xmabuffers.h +++ b/src/xma/include/app/xmabuffers.h @@ -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; diff --git a/src/xma/xma_legacy/include/app/xmabuffers.h b/src/xma/xma_legacy/include/app/xmabuffers.h index c6c6dc0a505..670bef7e896 100644 --- a/src/xma/xma_legacy/include/app/xmabuffers.h +++ b/src/xma/xma_legacy/include/app/xmabuffers.h @@ -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;