Searched refs:act_timestamp (Results 1 - 9 of 9) sorted by relevance

/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
H A Domx_vdec.cpp8227 void omx_vdec::set_frame_rate(OMX_S64 act_timestamp) argument
8231 if (VALID_TS(act_timestamp) && VALID_TS(prev_ts) && act_timestamp != prev_ts
8232 && (((act_timestamp > prev_ts )? act_timestamp - prev_ts: prev_ts-act_timestamp)>2000))
8234 new_frame_interval = (act_timestamp > prev_ts)?
8235 act_timestamp - prev_ts :
8236 prev_ts - act_timestamp;
8256 prev_ts = act_timestamp;
8259 adjust_timestamp(OMX_S64 &act_timestamp) argument
[all...]
H A Domx_vdec_copper.cpp7712 void omx_vdec::set_frame_rate(OMX_S64 act_timestamp) argument
7716 if (VALID_TS(act_timestamp) && VALID_TS(prev_ts) && act_timestamp != prev_ts
7717 && (((act_timestamp > prev_ts )? act_timestamp - prev_ts: prev_ts-act_timestamp)>2000))
7719 new_frame_interval = (act_timestamp > prev_ts)?
7720 act_timestamp - prev_ts :
7721 prev_ts - act_timestamp;
7741 prev_ts = act_timestamp;
7744 adjust_timestamp(OMX_S64 &act_timestamp) argument
[all...]
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
H A Domx_vdec.cpp7923 void omx_vdec::set_frame_rate(OMX_S64 act_timestamp) argument
7928 if (VALID_TS(act_timestamp) && VALID_TS(prev_ts) && act_timestamp != prev_ts
7929 && (((act_timestamp > prev_ts )? act_timestamp - prev_ts: prev_ts-act_timestamp)>2000)) {
7930 new_frame_interval = (act_timestamp > prev_ts)?
7931 act_timestamp - prev_ts :
7932 prev_ts - act_timestamp;
7953 prev_ts = act_timestamp;
7956 adjust_timestamp(OMX_S64 &act_timestamp) argument
[all...]
H A Domx_vdec_hevc.cpp7540 void omx_vdec::set_frame_rate(OMX_S64 act_timestamp) argument
7543 if (VALID_TS(act_timestamp) && VALID_TS(prev_ts) && act_timestamp != prev_ts
7544 && (((act_timestamp > prev_ts )? act_timestamp - prev_ts: prev_ts-act_timestamp)>2000)) {
7545 new_frame_interval = (act_timestamp > prev_ts)?
7546 act_timestamp - prev_ts :
7547 prev_ts - act_timestamp;
7559 prev_ts = act_timestamp;
7562 adjust_timestamp(OMX_S64 &act_timestamp) argument
[all...]
H A Domx_vdec_hevc_swvdec.cpp8577 void omx_vdec::set_frame_rate(OMX_S64 act_timestamp) argument
8580 if (VALID_TS(act_timestamp) && VALID_TS(prev_ts) && act_timestamp != prev_ts
8581 && (((act_timestamp > prev_ts )? act_timestamp - prev_ts: prev_ts-act_timestamp)>2000))
8583 new_frame_interval = (act_timestamp > prev_ts)?
8584 act_timestamp - prev_ts :
8585 prev_ts - act_timestamp;
8599 prev_ts = act_timestamp;
8602 adjust_timestamp(OMX_S64 &act_timestamp) argument
[all...]
H A Domx_vdec_msm8974.cpp8589 void omx_vdec::set_frame_rate(OMX_S64 act_timestamp) argument
8592 if (VALID_TS(act_timestamp) && VALID_TS(prev_ts) && act_timestamp != prev_ts
8593 && llabs(act_timestamp - prev_ts) > 2000) {
8595 llabs(act_timestamp - prev_ts);
8624 prev_ts = act_timestamp;
8627 void omx_vdec::adjust_timestamp(OMX_S64 &act_timestamp) argument
8629 if (rst_prev_ts && VALID_TS(act_timestamp)) {
8630 prev_ts = act_timestamp;
8634 (!VALID_TS(act_timestamp) || (((act_timestam
[all...]
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
H A Domx_vdec.h593 void adjust_timestamp(OMX_S64 &act_timestamp);
594 void set_frame_rate(OMX_S64 act_timestamp);
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
H A Domx_vdec_hevc.h590 void adjust_timestamp(OMX_S64 &act_timestamp);
591 void set_frame_rate(OMX_S64 act_timestamp);
H A Domx_vdec.h647 void adjust_timestamp(OMX_S64 &act_timestamp);
648 void set_frame_rate(OMX_S64 act_timestamp);

Completed in 113 milliseconds