Home
last modified time | relevance | path

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

/external/libvpx/libvpx/examples/
Dvpx_temporal_svc_encoder.c709 vpx_codec_control(&codec, VP8E_SET_CPUUSED, -speed); in main()
710 vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, kDenoiserOff); in main()
711 vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1); in main()
712 vpx_codec_control(&codec, VP8E_SET_GF_CBR_BOOST_PCT, 0); in main()
716 vpx_codec_control(&codec, VP8E_SET_CPUUSED, speed); in main()
717 vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3); in main()
718 vpx_codec_control(&codec, VP9E_SET_GF_CBR_BOOST_PCT, 0); in main()
719 vpx_codec_control(&codec, VP9E_SET_FRAME_PARALLEL_DECODING, 0); in main()
720 vpx_codec_control(&codec, VP9E_SET_FRAME_PERIODIC_BOOST, 0); in main()
721 vpx_codec_control(&codec, VP9E_SET_NOISE_SENSITIVITY, kDenoiserOff); in main()
[all …]
Dvp8_multi_resolution_encoder.c498 if (vpx_codec_control(&codec[i], VP8E_SET_CPUUSED, speed)) in main()
504 if (vpx_codec_control(&codec[i], VP8E_SET_STATIC_THRESHOLD, 1)) in main()
510 if (vpx_codec_control(&codec[0], VP8E_SET_NOISE_SENSITIVITY, 1)) in main()
512 if (vpx_codec_control(&codec[1], VP8E_SET_NOISE_SENSITIVITY, 1)) in main()
515 if (vpx_codec_control(&codec[i], VP8E_SET_NOISE_SENSITIVITY, 0)) in main()
521 if (vpx_codec_control(&codec[i], VP8E_SET_TOKEN_PARTITIONS, 1)) in main()
529 if (vpx_codec_control(&codec[i], VP8E_SET_MAX_INTRA_BITRATE_PCT, in main()
582 vpx_codec_control(&codec[i], VP8E_SET_FRAME_FLAGS, flags); in main()
583 vpx_codec_control(&codec[i], VP8E_SET_TEMPORAL_LAYER_ID, layer_id); in main()
Dpostproc.c105 if (vpx_codec_control(&codec, VP8_SET_POSTPROC, &pp)) in main()
110 if (vpx_codec_control(&codec, VP8_SET_POSTPROC, &pp)) in main()
Dset_maps.c90 if (vpx_codec_control(codec, VP8E_SET_ROI_MAP, &roi)) in set_roi_map()
107 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map)) in set_active_map()
121 if (vpx_codec_control(codec, VP8E_SET_ACTIVEMAP, &map)) in unset_active_map()
Dvp9cx_set_ref.c202 if (vpx_codec_control(encoder, VP9_GET_REFERENCE, &ref_enc)) in testing_decode()
205 if (vpx_codec_control(decoder, VP9_GET_REFERENCE, &ref_dec)) in testing_decode()
379 if (vpx_codec_control(&ecodec, VP8E_SET_ENABLEAUTOALTREF, 0)) in main()
396 if (vpx_codec_control(&ecodec, VP8_SET_REFERENCE, &ref)) in main()
403 if (vpx_codec_control(&dcodec, VP8_SET_REFERENCE, &ref)) in main()
Dvp9_spatial_svc_encoder.c699 vpx_codec_control(&codec, VP8E_SET_CPUUSED, svc_ctx.speed); in main()
701 vpx_codec_control(&codec, VP9E_SET_TILE_COLUMNS, (svc_ctx.threads >> 1)); in main()
702 vpx_codec_control(&codec, VP9E_SET_ROW_MT, 0); in main()
705 vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3); in main()
707 vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1); in main()
735 vpx_codec_control(&codec, VP9E_SET_SVC_LAYER_ID, &layer_id); in main()
739 vpx_codec_control(&codec, VP9E_SET_SVC_REF_FRAME_CONFIG, in main()
777 vpx_codec_control(&codec, VP9E_GET_SVC_LAYER_ID, &layer_id); in main()
Dvp8cx_set_ref.c166 if (vpx_codec_control(&codec, VP8_SET_REFERENCE, &ref)) in main()
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc419 vpx_codec_control(encoder_, VP8E_SET_CPUUSED, cpu_speed_); in InitAndSetControlSettings()
420 vpx_codec_control(encoder_, VP8E_SET_MAX_INTRA_BITRATE_PCT, in InitAndSetControlSettings()
422 vpx_codec_control(encoder_, VP9E_SET_AQ_MODE, in InitAndSetControlSettings()
425 vpx_codec_control( in InitAndSetControlSettings()
429 vpx_codec_control(encoder_, VP9E_SET_SVC_PARAMETERS, in InitAndSetControlSettings()
436 vpx_codec_control(encoder_, VP9E_REGISTER_CX_CALLBACK, in InitAndSetControlSettings()
443 vpx_codec_control(encoder_, VP9E_SET_TILE_COLUMNS, (config_->g_threads >> 1)); in InitAndSetControlSettings()
447 vpx_codec_control(encoder_, VP9E_SET_NOISE_SENSITIVITY, in InitAndSetControlSettings()
452 vpx_codec_control(encoder_, VP9E_SET_TUNE_CONTENT, 1); in InitAndSetControlSettings()
455 vpx_codec_control(encoder_, VP8E_SET_STATIC_THRESHOLD, 1); in InitAndSetControlSettings()
[all …]
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_impl.cc670 vpx_codec_control( in InitAndSetControlSettings()
674 vpx_codec_control( in InitAndSetControlSettings()
680 vpx_codec_control(&(encoders_[i]), VP8E_SET_STATIC_THRESHOLD, in InitAndSetControlSettings()
682 vpx_codec_control(&(encoders_[i]), VP8E_SET_CPUUSED, cpu_speed_[i]); in InitAndSetControlSettings()
683 vpx_codec_control(&(encoders_[i]), VP8E_SET_TOKEN_PARTITIONS, in InitAndSetControlSettings()
685 vpx_codec_control(&(encoders_[i]), VP8E_SET_MAX_INTRA_BITRATE_PCT, in InitAndSetControlSettings()
689 vpx_codec_control(&(encoders_[i]), VP8E_SET_SCREEN_CONTENT_MODE, in InitAndSetControlSettings()
805 vpx_codec_control(&(encoders_[0]), VP8E_SET_MAX_INTRA_BITRATE_PCT, in Encode()
871 vpx_codec_control(&encoders_[i], VP8E_SET_FRAME_FLAGS, flags[stream_idx]); in Encode()
872 vpx_codec_control(&encoders_[i], VP8E_SET_TEMPORAL_LAYER_ID, in Encode()
[all …]
/external/libvpx/libvpx/test/
Ddecode_api_test.cc98 EXPECT_EQ(VPX_CODEC_ERROR, vpx_codec_control(dec, VP9_GET_REFERENCE, &ref)); in TestVp9Controls()
100 vpx_codec_control(dec, VP9_GET_REFERENCE, NULL)); in TestVp9Controls()
109 vpx_codec_control(dec, VP8_COPY_REFERENCE, &ref_copy)); in TestVp9Controls()
111 vpx_codec_control(dec, VP8_COPY_REFERENCE, NULL)); in TestVp9Controls()
Dlevel_test.cc135 vpx_codec_control(&enc, VP9E_SET_TARGET_LEVEL, level)); in TEST_P()
138 vpx_codec_control(&enc, VP9E_SET_TARGET_LEVEL, level)); in TEST_P()
Dsvc_test.cc78 vpx_codec_control(&codec_, VP8E_SET_CPUUSED, 4); // Make the test faster in InitializeEncoder()
79 vpx_codec_control(&codec_, VP9E_SET_TILE_COLUMNS, tile_columns_); in InitializeEncoder()
80 vpx_codec_control(&codec_, VP9E_SET_TILE_ROWS, tile_rows_); in InitializeEncoder()
/external/libvpx/libvpx/vpx/
Dvpx_codec.h385 #define vpx_codec_control(ctx, id, data) vpx_codec_control_(ctx, id, data) macro
400 #define vpx_codec_control(ctx, id, data) \ macro
/external/libvpx/libvpx/
Dvpxdec.c737 if (vpx_codec_control(&decoder, VP9_DECODE_SVC_SPATIAL_LAYER, in main_loop()
748 vpx_codec_control(&decoder, VP8_SET_POSTPROC, &vp8_pp_cfg)) { in main_loop()
806 if (vpx_codec_control(&decoder, VPXD_GET_LAST_QUANTIZER, &qp)) { in main_loop()
844 vpx_codec_control(&decoder, VP8D_GET_FRAME_CORRUPTED, &corrupted)) { in main_loop()
868 if (vpx_codec_control(&decoder, VP9D_GET_DISPLAY_SIZE, in main_loop()
Dvpxenc.c1651 vpx_codec_control(&stream->encoder, VP8E_GET_LAST_QUANTIZER_64, &q); in update_quantizer_histogram()
1795 vpx_codec_control(&stream->encoder, VP8_COPY_REFERENCE, &ref_enc); in test_decode()
1796 vpx_codec_control(&stream->decoder, VP8_COPY_REFERENCE, &ref_dec); in test_decode()
1802 vpx_codec_control(&stream->encoder, VP9_GET_REFERENCE, &ref_enc); in test_decode()
1804 vpx_codec_control(&stream->decoder, VP9_GET_REFERENCE, &ref_dec); in test_decode()
/external/libvpx/libvpx/vpx/src/
Dsvc_encodeframe.c530 vpx_codec_control(codec_ctx, VP9E_SET_SVC, 1); in vpx_svc_init()
531 vpx_codec_control(codec_ctx, VP9E_SET_SVC_PARAMETERS, &si->svc_params); in vpx_svc_init()