Home
last modified time | relevance | path

Searched refs:shift_byte_count64 (Results 1 – 1 of 1) sorted by relevance

/device/board/unionman/unionpi_tiger/kernel/drivers/media/drivers/frame_provider/decoder/h265/
Dvh265.c9420 u64 shift_byte_count64; in hevc_recover() local
9480 shift_byte_count64 = ((u64)(hevc->shift_byte_count_hi) << 32) | in hevc_recover()
9482 div_u64_rem(shift_byte_count64, hevc_stream_buf_size, &rem); in hevc_recover()
9483 shift_byte_count64 -= rem; in hevc_recover()
9484 shift_byte_count64 += hevc_stream_rd_ptr - hevc_stream_start_addr; in hevc_recover()
9487 shift_byte_count64 += hevc_stream_buf_size; in hevc_recover()
9489 hevc->shift_byte_count_lo = (u32)shift_byte_count64; in hevc_recover()
9490 hevc->shift_byte_count_hi = (u32)(shift_byte_count64 >> 32); in hevc_recover()