/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
D | resize_test.cc | 67 vpx_codec_pts_t pts; in write_ivf_frame_header() local 72 pts = pkt->data.frame.pts; in write_ivf_frame_header() 74 mem_put_le32(header + 4, pts & 0xFFFFFFFF); in write_ivf_frame_header() 75 mem_put_le32(header + 8, pts >> 32); in write_ivf_frame_header() 125 : pts(_pts), w(_w), h(_h) {} in FrameInfo() 127 vpx_codec_pts_t pts; member 138 vpx_codec_pts_t pts) { in DecompressedFrameHook() argument 139 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h)); in DecompressedFrameHook() 151 const unsigned int frame = static_cast<unsigned>(info->pts); in TEST_P() 219 if (pkt->data.frame.pts == 0) in FramePktHook() [all …]
|
D | svc_test.cc | 266 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 294 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 307 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 320 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 383 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 390 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 396 res = vpx_svc_encode(&svc_, &codec_, NULL, video.pts(), in TEST_F() 433 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 446 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F() 459 res = vpx_svc_encode(&svc_, &codec_, video.img(), video.pts(), in TEST_F()
|
D | encode_test_driver.cc | 64 video.img(), video.pts(), video.duration(), in EncodeFrameInternal() 183 ASSERT_GE(pkt->data.frame.pts, last_pts_); in RunLoop() 184 last_pts_ = pkt->data.frame.pts; in RunLoop() 208 DecompressedFrameHook(*img_dec, video->pts()); in RunLoop()
|
D | datarate_test.cc | 52 vpx_codec_pts_t duration = pkt->data.frame.pts - last_pts_; in FramePktHook() 74 << pkt->data.frame.pts; in FramePktHook() 90 last_pts_ = pkt->data.frame.pts; in FramePktHook() 301 vpx_codec_pts_t duration = pkt->data.frame.pts - last_pts_; in FramePktHook() 322 << pkt->data.frame.pts; in FramePktHook() 333 last_pts_ = pkt->data.frame.pts; in FramePktHook()
|
D | superframe_test.cc | 68 last_sf_pts_ = pkt->data.frame.pts; in MutateEncoderOutputHook() 74 pkt->data.frame.pts - last_sf_pts_ >= 5; in MutateEncoderOutputHook()
|
D | video_source.h | 69 virtual vpx_codec_pts_t pts() const = 0; 108 virtual vpx_codec_pts_t pts() const { return frame_; } in pts() function
|
D | y4m_video_source.h | 69 virtual vpx_codec_pts_t pts() const { return frame_; } in pts() function
|
D | i420_video_source.h | 70 virtual vpx_codec_pts_t pts() const { return frame_; } in pts() function
|
D | keyframe_test.cc | 45 kf_pts_list_.push_back(pkt->data.frame.pts); in FramePktHook()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
D | ivfenc.c | 39 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size) { in ivf_write_frame_header() argument 43 mem_put_le32(header + 4, (int)(pts & 0xFFFFFFFF)); in ivf_write_frame_header() 44 mem_put_le32(header + 8, (int)(pts >> 32)); in ivf_write_frame_header()
|
D | rate_hist.c | 29 int64_t *pts; member 54 hist->pts = calloc(hist->samples, sizeof(*hist->pts)); in init_rate_histogram() 67 free(hist->pts); in destroy_rate_histogram() 80 const int64_t now = pkt->data.frame.pts * 1000 * in update_rate_histogram() 85 hist->pts[idx] = now; in update_rate_histogram() 97 then = hist->pts[i_idx]; in update_rate_histogram()
|
D | video_writer.c | 72 int64_t pts) { in vpx_video_writer_write_frame() argument 73 ivf_write_frame_header(writer->file, pts, size); in vpx_video_writer_write_frame()
|
D | ivfenc.h | 27 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size);
|
D | video_writer.h | 41 int64_t pts);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
D | twopass_encoder.c | 71 vpx_codec_pts_t pts, in get_frame_stats() argument 78 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags, in get_frame_stats() 96 vpx_codec_pts_t pts, in encode_frame() argument 103 const vpx_codec_err_t res = vpx_codec_encode(ctx, img, pts, duration, flags, in encode_frame() 114 pkt->data.frame.pts)) in encode_frame()
|
D | vp8_multi_resolution_encoder.c | 160 vpx_codec_pts_t pts; in write_ivf_frame_header() local 165 pts = pkt->data.frame.pts; in write_ivf_frame_header() 167 mem_put_le32(header+4, pts&0xFFFFFFFF); in write_ivf_frame_header() 168 mem_put_le32(header+8, pts >> 32); in write_ivf_frame_header()
|
D | vp9_spatial_scalable_encoder.c | 294 int pts = 0; /* PTS starts at 0 */ in main() local 347 pts, frame_duration, VPX_DL_REALTIME); in main() 357 pts); in main() 367 pts += frame_duration; in main()
|
D | vpx_temporal_scalable_patterns.c | 445 int pts = 0; // PTS starts at 0. in main() local 612 if (vpx_codec_encode(&codec, frame_avail? &raw : NULL, pts, 1, flags, in main() 630 pkt->data.frame.sz, pts); in main() 649 pts += frame_duration; in main()
|
D | vp8cx_set_ref.c | 85 pkt->data.frame.pts)) { in encode_frame()
|
D | simple_encoder.c | 139 pkt->data.frame.pts)) { in encode_frame()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/ |
D | vpx_encoder.h | 174 vpx_codec_pts_t pts; /**< time stamp to show frame member 843 vpx_codec_pts_t pts,
|
D | svc_context.h | 88 struct vpx_image *rawimg, vpx_codec_pts_t pts,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/ |
D | vpx_encoder.c | 206 vpx_codec_pts_t pts, in vpx_codec_encode() argument 227 res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts, in vpx_codec_encode() 241 if ((res = ctx->iface->enc.encode(ctx->priv->alg_priv, img, pts, in vpx_codec_encode()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/ |
D | vp8_cx_iface.c | 746 vpx_codec_pts_t pts, in vp8e_encode() argument 846 dst_time_stamp = pts * 10000000 * ctx->cfg.g_timebase.num / ctx->cfg.g_timebase.den; in vp8e_encode() 847 …dst_end_time_stamp = (pts + duration) * 10000000 * ctx->cfg.g_timebase.num / ctx->cfg.g_timebase.d… in vp8e_encode() 896 pkt.data.frame.pts = in vp8e_encode() 916 pkt.data.frame.pts = ((cpi->last_time_stamp_seen in vp8e_encode()
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/ |
D | vp9_cx_iface.c | 658 vpx_codec_pts_t pts, in vp9e_encode() argument 739 dst_time_stamp = (pts * 10000000 * ctx->cfg.g_timebase.num) in vp9e_encode() 741 dst_end_time_stamp = (pts + duration) * 10000000 * ctx->cfg.g_timebase.num / in vp9e_encode() 799 pkt.data.frame.pts = in vp9e_encode() 817 pkt.data.frame.pts = ((cpi->last_time_stamp_seen in vp9e_encode()
|