Searched refs:deadline (Results 1 - 18 of 18) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dcodec_factory.h36 unsigned long deadline) const = 0;
39 unsigned long deadline,
72 VP8Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) argument
73 : Decoder(cfg, deadline) {}
87 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, argument
89 : Encoder(cfg, deadline, init_flags, stats) {}
106 unsigned long deadline) const {
108 return new VP8Decoder(cfg, deadline);
115 unsigned long deadline,
119 return new VP8Encoder(cfg, deadline, init_flag
114 CreateEncoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) const argument
154 VP9Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) argument
169 VP9Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) argument
196 CreateEncoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, const unsigned long init_flags, TwopassStatsStore *stats) const argument
[all...]
H A Ddecode_test_driver.h43 Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline) argument
44 : cfg_(cfg), deadline_(deadline), init_done_(false) {
58 void set_deadline(unsigned long deadline) { argument
59 deadline_ = deadline;
H A Dencode_test_driver.h93 Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline, argument
95 : cfg_(cfg), deadline_(deadline), init_flags_(init_flags), stats_(stats) {
141 void set_deadline(unsigned long deadline) { argument
142 deadline_ = deadline;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dvpxenc.h33 int deadline; member in struct:VpxEncoderConfig
H A Dwarnings.c27 "Lag in frames is ignored when deadline is set to realtime.";
82 int deadline,
84 if (deadline == VPX_DL_REALTIME && lag_in_frames != 0)
99 global_config->deadline,
80 check_lag_in_frames_realtime_deadline( int lag_in_frames, int deadline, struct WarningList *warning_list) argument
H A Dvpxenc.c195 static const arg_def_t deadline = ARG_DEF("d", "deadline", 1, variable
243 &deadline, &best_dl, &good_dl, &rt_dl,
663 /* Assign default deadline to good quality */
664 global->deadline = VPX_DL_GOOD_QUALITY;
686 else if (arg_match(&arg, &deadline, argi))
687 global->deadline = arg_parse_uint(&arg);
689 global->deadline = VPX_DL_BEST_QUALITY;
691 global->deadline = VPX_DL_GOOD_QUALITY;
693 global->deadline
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/
H A Dtwopass_encoder.c31 // example, except the deadline is set to VPX_DL_BEST_QUALITY to get the
74 unsigned int deadline,
79 deadline);
99 unsigned int deadline,
104 deadline);
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
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
H A Dsvc_context.h89 int64_t duration, int deadline);
H A Dvpx_decoder.h216 * \param[in] deadline Soft deadline the decoder should attempt to meet,
228 long deadline);
H A Dvpx_encoder.h799 #define VPX_DL_REALTIME (1) /**< deadline parameter analogous to
801 #define VPX_DL_GOOD_QUALITY (1000000) /**< deadline parameter analogous to
803 #define VPX_DL_BEST_QUALITY (0) /**< deadline parameter analogous to
810 * The encoder supports the notion of a soft real-time deadline. Given a
811 * non-zero value to the deadline parameter, the encoder will make a "best
815 * best possible frame by specifying a deadline of '0'. This deadline
817 * Applications that wish to map these former settings to the new deadline
832 * \param[in] deadline Time to spend encoding, in microseconds. (0=infinite)
846 unsigned long deadline);
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/internal/
H A Dvpx_codec_internal.h201 long deadline);
289 unsigned long deadline);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
H A Dvpx_decoder.c121 long deadline) {
132 user_priv, deadline);
117 vpx_codec_decode(vpx_codec_ctx_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument
H A Dvpx_encoder.c209 unsigned long deadline) {
228 duration, flags, deadline);
242 duration, flags, deadline)))
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.c854 int64_t duration, int deadline) {
899 si->enc_frame_flags, deadline);
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/omx-components/videocodec/libvpx_internal/libvpx/vp9/
H A Dvp9_dx_iface.c171 void *user_priv, int64_t deadline) {
261 if (vp9_receive_compressed_data(pbi, data_sz, data, deadline))
311 long deadline) {
353 res = decode_one(ctx, &data_start, data_sz, user_priv, deadline);
169 decode_one(vpx_codec_alg_priv_t *ctx, const uint8_t **data, unsigned int data_sz, void *user_priv, int64_t deadline) argument
307 vp9_decode(vpx_codec_alg_priv_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument
H A Dvp9_cx_iface.c587 unsigned long deadline) {
588 // Use best quality mode if no deadline is given.
591 if (deadline) {
597 // If the deadline is more that the duration this frame is to be shown,
599 new_qc = (deadline > duration_us) ? MODE_GOODQUALITY : MODE_REALTIME;
661 unsigned long deadline) {
667 pick_quickcompress_mode(ctx, duration, deadline);
585 pick_quickcompress_mode(vpx_codec_alg_priv_t *ctx, unsigned long duration, unsigned long deadline) argument
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/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
H A Dvp8_cx_iface.c702 unsigned long deadline)
707 /* Use best quality mode if no deadline is given. */
710 if (deadline)
719 /* If the deadline is more that the duration this frame is to be shown,
722 new_qc = (deadline > duration_us) ? MODE_GOODQUALITY : MODE_REALTIME;
749 unsigned long deadline)
762 pick_quickcompress_mode(ctx, duration, deadline);
700 pick_quickcompress_mode(vpx_codec_alg_priv_t *ctx, unsigned long duration, unsigned long deadline) argument
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
H A Dvp8_dx_iface.c360 long deadline)
563 if (vp8dx_receive_compressed_data(pbi, data_sz, data, deadline))
356 vp8_decode(vpx_codec_alg_priv_t *ctx, const uint8_t *data, unsigned int data_sz, void *user_priv, long deadline) argument

Completed in 196 milliseconds