Searched defs:pts (Results 1 - 25 of 25) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Divfenc.c39 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size) { argument
43 mem_put_le32(header + 4, (int)(pts & 0xFFFFFFFF));
44 mem_put_le32(header + 8, (int)(pts >> 32));
H A Dvideo_writer.c72 int64_t pts) {
73 ivf_write_frame_header(writer->file, pts, size);
70 vpx_video_writer_write_frame(VpxVideoWriter *writer, const uint8_t *buffer, size_t size, int64_t pts) argument
H A Drate_hist.c29 int64_t *pts; member in struct:rate_hist
54 hist->pts = calloc(hist->samples, sizeof(*hist->pts));
67 free(hist->pts);
80 const int64_t now = pkt->data.frame.pts * 1000 *
85 hist->pts[idx] = now;
97 then = hist->pts[i_idx];
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dy4m_video_source.h68 // Models a stream where Timebase = 1/FPS, so pts == frame.
69 virtual vpx_codec_pts_t pts() const { return frame_; } function in class:libvpx_test::Y4mVideoSource
H A Di420_video_source.h69 // Models a stream where Timebase = 1/FPS, so pts == frame.
70 virtual vpx_codec_pts_t pts() const { return frame_; } function in class:libvpx_test::I420VideoSource
H A Dresize_test.cc67 vpx_codec_pts_t pts; local
72 pts = pkt->data.frame.pts;
74 mem_put_le32(header + 4, pts & 0xFFFFFFFF);
75 mem_put_le32(header + 8, pts >> 32);
125 : pts(_pts), w(_w), h(_h) {}
127 vpx_codec_pts_t pts; member in struct:__anon466::ResizeTest::FrameInfo
138 vpx_codec_pts_t pts) {
139 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h));
151 const unsigned int frame = static_cast<unsigned>(info->pts);
137 DecompressedFrameHook(const vpx_image_t &img, vpx_codec_pts_t pts) argument
252 const vpx_codec_pts_t pts = info->pts; local
[all...]
H A Dvideo_source.h69 virtual vpx_codec_pts_t pts() const = 0;
107 // Models a stream where Timebase = 1/FPS, so pts == frame.
108 virtual vpx_codec_pts_t pts() const { return frame_; } function in class:libvpx_test::DummyVideoSource
H A Dencode_test_driver.h222 vpx_codec_pts_t pts) {}
221 DecompressedFrameHook(const vpx_image_t& img, vpx_codec_pts_t pts) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
H A Dtwopass_encoder.c71 vpx_codec_pts_t pts,
78 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
96 vpx_codec_pts_t pts,
103 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags,
114 pkt->data.frame.pts))
69 get_frame_stats(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned int duration, vpx_enc_frame_flags_t flags, unsigned int deadline, vpx_fixed_buf_t *stats) argument
94 encode_frame(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned int duration, vpx_enc_frame_flags_t flags, unsigned int deadline, VpxVideoWriter *writer) argument
H A Dvp8_multi_resolution_encoder.c160 vpx_codec_pts_t pts; local
165 pts = pkt->data.frame.pts;
167 mem_put_le32(header+4, pts&0xFFFFFFFF);
168 mem_put_le32(header+8, pts >> 32);
H A Dvpx_temporal_scalable_patterns.c445 int pts = 0; // PTS starts at 0. local
612 if (vpx_codec_encode(&codec, frame_avail? &raw : NULL, pts, 1, flags,
630 pkt->data.frame.sz, pts);
649 pts += frame_duration;
H A Dvp9_spatial_scalable_encoder.c294 int pts = 0; /* PTS starts at 0 */ local
347 pts, frame_duration, VPX_DL_REALTIME);
357 pts);
367 pts += frame_duration;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
H A Dvpx_encoder.c206 vpx_codec_pts_t pts,
227 res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts,
241 if ((res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts,
204 vpx_codec_encode(vpx_codec_ctx_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t flags, unsigned long deadline) argument
H A Dsvc_encodeframe.c853 struct vpx_image *rawimg, vpx_codec_pts_t pts,
898 res = vpx_codec_encode(codec_ctx, rawimg, pts, (uint32_t)duration,
999 "pts: %d\n", si->encode_frame_count, si->is_keyframe,
1000 (int)si->frame_size, (int)pts);
852 vpx_svc_encode(SvcContext *svc_ctx, vpx_codec_ctx_t *codec_ctx, struct vpx_image *rawimg, vpx_codec_pts_t pts, int64_t duration, int deadline) argument
/hardware/intel/common/libmix/videodecoder/
H A DVideoDecoderBase.cpp329 //VTRACE("Output POC %d for display (pts = %.2f)", output->pictureOrder, output->renderBuffer.timeStamp/1E6);
350 uint64_t pts = INVALID_PTS; local
352 if ((uint64_t)(p->renderBuffer.timeStamp) <= pts) {
354 pts = p->renderBuffer.timeStamp;
682 //VTRACE("Pushing POC %d to queue (pts = %.2f)", mAcquiredBuffer->pictureOrder, mAcquiredBuffer->renderBuffer.timeStamp/1E6);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
H A Dvp8_cx_iface.c746 vpx_codec_pts_t pts,
846 dst_time_stamp = pts * 10000000 * ctx->cfg.g_timebase.num / ctx->cfg.g_timebase.den;
847 dst_end_time_stamp = (pts + duration) * 10000000 * ctx->cfg.g_timebase.num / ctx->cfg.g_timebase.den;
896 pkt.data.frame.pts =
912 * prior PTS so that if a decoder uses pts to schedule when
916 pkt.data.frame.pts = ((cpi->last_time_stamp_seen
744 vp8e_encode(vpx_codec_alg_priv_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t flags, unsigned long deadline) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
H A Dvpx_encoder.h174 vpx_codec_pts_t pts; /**< time stamp to show frame member in struct:vpx_codec_cx_pkt::__anon663::__anon664
327 * pts to correspond to the frame number, which can be handy. For
829 * \param[in] pts Presentation time stamp, in timebase units.
843 vpx_codec_pts_t pts,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
H A Dvp9_cx_iface.c658 vpx_codec_pts_t pts,
739 dst_time_stamp = (pts * 10000000 * ctx->cfg.g_timebase.num)
741 dst_end_time_stamp = (pts + duration) * 10000000 * ctx->cfg.g_timebase.num /
799 pkt.data.frame.pts =
814 // prior PTS so that if a decoder uses pts to schedule when
817 pkt.data.frame.pts = ((cpi->last_time_stamp_seen
656 vp9e_encode(vpx_codec_alg_priv_t *ctx, const vpx_image_t *img, vpx_codec_pts_t pts, unsigned long duration, vpx_enc_frame_flags_t flags, unsigned long deadline) argument
/hardware/qcom/msm8x84/kernel-headers/linux/
H A Dvideodev2.h1062 __u64 pts; member in struct:v4l2_enc_idx_entry
1121 __u64 pts; member in struct:v4l2_decoder_cmd::__anon2213::__anon2214
/hardware/qcom/msm8x84/original-kernel-headers/linux/
H A Dvideodev2.h1477 __u64 pts; member in struct:v4l2_enc_idx_entry
1549 __u64 pts; member in struct:v4l2_decoder_cmd::__anon2310::__anon2311
/hardware/samsung_slsi/exynos5/include/linux/
H A Dvideodev2.h1955 __u64 pts; member in struct:v4l2_enc_idx_entry
2018 __u64 pts; member in struct:v4l2_decoder_cmd::__anon2705::__anon2706
/hardware/qcom/msm8960/kernel-headers/linux/
H A Dvideodev2.h1894 __u64 pts; member in struct:v4l2_enc_idx_entry
1952 __u64 pts; member in struct:v4l2_decoder_cmd::__anon1898::__anon1899
/hardware/qcom/msm8960/original-kernel-headers/linux/
H A Dvideodev2.h2165 __u64 pts; member in struct:v4l2_enc_idx_entry
2237 __u64 pts; member in struct:v4l2_decoder_cmd::__anon1953::__anon1954
/hardware/qcom/msm8x74/kernel-headers/linux/
H A Dvideodev2.h1989 __u64 pts; member in struct:v4l2_enc_idx_entry
2047 __u64 pts; member in struct:v4l2_decoder_cmd::__anon2072::__anon2073
/hardware/qcom/msm8x74/original-kernel-headers/linux/
H A Dvideodev2.h2292 __u64 pts; member in struct:v4l2_enc_idx_entry
2364 __u64 pts; member in struct:v4l2_decoder_cmd::__anon2136::__anon2137

Completed in 769 milliseconds