Home
last modified time | relevance | path

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

/external/libaom/libaom/examples/
Dscalable_encoder.c212 if (aom_codec_control(&codec, AOME_SET_CPUUSED, 8)) in main()
215 if (aom_codec_control(&codec, AV1E_SET_TILE_COLUMNS, 2)) in main()
217 if (aom_codec_control(&codec, AV1E_SET_NUM_TG, 3)) in main()
220 if (aom_codec_control(&codec, AOME_SET_NUMBER_SPATIAL_LAYERS, 2)) in main()
244 if (aom_codec_control(&codec, AOME_SET_SPATIAL_LAYER_ID, 0)) in main()
246 if (aom_codec_control(&codec, AOME_SET_CQ_LEVEL, 62)) in main()
263 if (aom_codec_control(&codec, AOME_SET_SPATIAL_LAYER_ID, 1)) in main()
265 if (aom_codec_control(&codec, AOME_SET_CQ_LEVEL, 10)) in main()
Dlightfield_encoder.c145 if (aom_codec_control(&codec, AOME_SET_ENABLEAUTOALTREF, 0)) in pass0()
147 if (aom_codec_control(&codec, AV1E_SET_FRAME_PARALLEL_DECODING, 0)) in pass0()
190 if (aom_codec_control(&codec, AV1E_SET_FRAME_PARALLEL_DECODING, 1)) in pass0()
258 if (aom_codec_control(&codec, AOME_SET_ENABLEAUTOALTREF, 0)) in pass1()
260 if (aom_codec_control(&codec, AV1E_SET_FRAME_PARALLEL_DECODING, 0)) in pass1()
262 if (aom_codec_control(&codec, AV1E_ENABLE_EXT_TILE_DEBUG, 1)) in pass1()
264 if (aom_codec_control(&codec, AOME_SET_CPUUSED, 1)) in pass1()
272 if (aom_codec_control(&codec, AV1E_SET_SUPERBLOCK_SIZE, in pass1()
287 if (aom_codec_control(&codec, AV1E_SET_MAX_GF_INTERVAL, in pass1()
343 if (aom_codec_control(&codec, AV1_COPY_NEW_FRAME_IMAGE, in pass1()
[all …]
Daom_cx_set_ref.c79 if (aom_codec_control(encoder, AV1_GET_NEW_FRAME_IMAGE, &enc_img)) in testing_decode()
81 if (aom_codec_control(decoder, AV1_GET_NEW_FRAME_IMAGE, &dec_img)) in testing_decode()
163 if (aom_codec_control(dcodec, AV1_COPY_NEW_FRAME_IMAGE, ext_ref)) in encode_frame()
300 if (aom_codec_control(&ecodec, AOME_SET_ENABLEAUTOALTREF, 0)) in main()
334 if (aom_codec_control(&ecodec, AV1_SET_REFERENCE, &ref)) in main()
342 if (aom_codec_control(&dcodec, AV1_SET_REFERENCE, &ref)) in main()
Dsvc_encoder_rtc.c742 aom_codec_control(&codec, AOME_SET_CPUUSED, speed); in main()
743 aom_codec_control(&codec, AV1E_SET_AQ_MODE, 3); in main()
744 aom_codec_control(&codec, AV1E_SET_GF_CBR_BOOST_PCT, 0); in main()
745 aom_codec_control(&codec, AV1E_SET_ENABLE_CDEF, 1); in main()
746 aom_codec_control(&codec, AV1E_SET_ENABLE_ORDER_HINT, 0); in main()
747 aom_codec_control(&codec, AV1E_SET_ENABLE_TPL_MODEL, 0); in main()
748 aom_codec_control(&codec, AV1E_SET_DELTAQ_MODE, 0); in main()
770 aom_codec_control(&codec, AV1E_SET_SVC_PARAMS, &svc_params); in main()
777 aom_codec_control(&codec, AOME_SET_MAX_INTRA_BITRATE_PCT, in main()
797 aom_codec_control(&codec, AV1E_SET_SVC_LAYER_ID, &layer_id); in main()
[all …]
Dset_maps.c74 if (aom_codec_control(codec, AOME_SET_ACTIVEMAP, &map)) in set_active_map()
88 if (aom_codec_control(codec, AOME_SET_ACTIVEMAP, &map)) in unset_active_map()
Dscalable_decoder.c123 if (aom_codec_control(&codec, AV1D_SET_OUTPUT_ALL_LAYERS, 1)) { in main()
Danalyzer.cc151 return aom_codec_control(&codec, AV1_GET_ACCOUNTING, accounting) == in getAccountingStruct()
159 return aom_codec_control(&codec, AV1_SET_INSPECTION_CALLBACK, &ii) == in setInspectionCallback()
Dinspect.c746 aom_codec_control(&codec, AV1_SET_INSPECTION_CALLBACK, &ii); in ifd_init_cb()
812 } else if (!aom_codec_control(&codec, AV1_GET_REFERENCE, &ref_dec)) { in read_frame()
/external/libaom/libaom/test/
Dencode_test_driver.h108 const aom_codec_err_t res = aom_codec_control(&encoder_, ctrl_id, arg); in Control()
113 const aom_codec_err_t res = aom_codec_control(&encoder_, ctrl_id, arg); in Control()
118 const aom_codec_err_t res = aom_codec_control(&encoder_, ctrl_id, arg); in Control()
123 const aom_codec_err_t res = aom_codec_control(&encoder_, ctrl_id, arg); in Control()
128 const aom_codec_err_t res = aom_codec_control(&encoder_, ctrl_id, arg); in Control()
133 const aom_codec_err_t res = aom_codec_control(&encoder_, ctrl_id, arg); in Control()
139 const aom_codec_err_t res = aom_codec_control(&encoder_, ctrl_id, arg); in Control()
Ddecode_test_driver.h70 const aom_codec_err_t res = aom_codec_control(&decoder_, ctrl_id, arg); in Control()
76 const aom_codec_err_t res = aom_codec_control(&decoder_, ctrl_id, arg); in Control()
/external/webrtc/modules/video_coding/codecs/av1/
Dlibaom_av1_encoder.cc218 ret = aom_codec_control( in InitEncode()
226 ret = aom_codec_control(&ctx_, AV1E_SET_ENABLE_TPL_MODEL, 0); in InitEncode()
232 ret = aom_codec_control(&ctx_, AV1E_SET_DELTAQ_MODE, 0); in InitEncode()
238 ret = aom_codec_control(&ctx_, AV1E_SET_ENABLE_ORDER_HINT, 0); in InitEncode()
244 ret = aom_codec_control(&ctx_, AV1E_SET_AQ_MODE, 3); in InitEncode()
251 ret = aom_codec_control(&ctx_, AV1E_SET_SVC_PARAMS, &*svc_params_); in InitEncode()
259 ret = aom_codec_control(&ctx_, AOME_SET_MAX_INTRA_BITRATE_PCT, 300); in InitEncode()
265 ret = aom_codec_control(&ctx_, AV1E_SET_COEFF_COST_UPD_FREQ, 2); in InitEncode()
271 ret = aom_codec_control(&ctx_, AV1E_SET_MODE_COST_UPD_FREQ, 2); in InitEncode()
277 ret = aom_codec_control(&ctx_, AV1E_SET_MV_COST_UPD_FREQ, 3); in InitEncode()
[all …]
Dlibaom_av1_decoder.cc119 if (aom_codec_control(&context_, AOMD_GET_FRAME_CORRUPTED, in Decode()
132 ret = aom_codec_control(&context_, AOMD_GET_LAST_QUANTIZER, &qp); in Decode()
/external/libaom/libaom/aom/
Daom_codec.h417 aom_codec_err_t aom_codec_control(aom_codec_ctx_t *ctx, int ctrl_id, ...);
440 return aom_codec_control(ctx, ctrl, data); \
Dexports_com2 text aom_codec_control
/external/libaom/libaom/aom/src/
Daom_codec.c92 aom_codec_err_t aom_codec_control(aom_codec_ctx_t *ctx, int ctrl_id, ...) { in aom_codec_control() function
/external/libaom/libaom/apps/
Daomenc.c1902 if (aom_codec_control(&stream->encoder, ctrl, value)) in initialize_encoder()