Home
last modified time | relevance | path

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

/external/libvpx/libvpx/examples/
Dvpx_temporal_svc_encoder.c793 vpx_codec_control(&codec, VP8E_SET_CPUUSED, -speed); in main()
794 vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, kVp8DenoiserOff); in main()
795 vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1); in main()
796 vpx_codec_control(&codec, VP8E_SET_GF_CBR_BOOST_PCT, 0); in main()
799 if (vpx_codec_control(&codec, VP8E_SET_ROI_MAP, &roi)) in main()
806 vpx_codec_control(&codec, VP8E_SET_CPUUSED, speed); in main()
807 vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3); in main()
808 vpx_codec_control(&codec, VP9E_SET_GF_CBR_BOOST_PCT, 0); in main()
809 vpx_codec_control(&codec, VP9E_SET_FRAME_PARALLEL_DECODING, 0); in main()
810 vpx_codec_control(&codec, VP9E_SET_FRAME_PERIODIC_BOOST, 0); in main()
[all …]
Dvp8_multi_resolution_encoder.c499 if (vpx_codec_control(&codec[i], VP8E_SET_CPUUSED, speed)) in main()
505 if (vpx_codec_control(&codec[i], VP8E_SET_STATIC_THRESHOLD, 1)) in main()
511 if (vpx_codec_control(&codec[0], VP8E_SET_NOISE_SENSITIVITY, 1)) in main()
513 if (vpx_codec_control(&codec[1], VP8E_SET_NOISE_SENSITIVITY, 1)) in main()
516 if (vpx_codec_control(&codec[i], VP8E_SET_NOISE_SENSITIVITY, 0)) in main()
522 if (vpx_codec_control(&codec[i], VP8E_SET_TOKEN_PARTITIONS, 1)) in main()
530 if (vpx_codec_control(&codec[i], VP8E_SET_MAX_INTRA_BITRATE_PCT, in main()
584 vpx_codec_control(&codec[i], VP8E_SET_FRAME_FLAGS, flags); in main()
585 vpx_codec_control(&codec[i], VP8E_SET_TEMPORAL_LAYER_ID, layer_id); in main()
Dvp9_spatial_svc_encoder.c841 vpx_codec_control(&codec, VP8E_SET_CPUUSED, svc_ctx.speed); in main()
843 vpx_codec_control(&codec, VP9E_SET_TILE_COLUMNS, get_msb(svc_ctx.threads)); in main()
845 vpx_codec_control(&codec, VP9E_SET_ROW_MT, 1); in main()
847 vpx_codec_control(&codec, VP9E_SET_ROW_MT, 0); in main()
850 vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3); in main()
852 vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1); in main()
853 vpx_codec_control(&codec, VP8E_SET_MAX_INTRA_BITRATE_PCT, 900); in main()
855 vpx_codec_control(&codec, VP9E_SET_SVC_INTER_LAYER_PRED, in main()
858 vpx_codec_control(&codec, VP9E_SET_NOISE_SENSITIVITY, 0); in main()
860 vpx_codec_control(&codec, VP9E_SET_TUNE_CONTENT, app_input.tune_content); in main()
[all …]
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()
Dvp8cx_set_ref.c166 if (vpx_codec_control(&codec, VP8_SET_REFERENCE, &ref)) in main()
Dsvc_encodeframe.c521 vpx_codec_control(codec_ctx, VP9E_SET_SVC, 1); in vpx_svc_init()
522 vpx_codec_control(codec_ctx, VP9E_SET_SVC_PARAMETERS, &si->svc_params); in vpx_svc_init()
/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()
/external/libvpx/libvpx/vpx/
Dvpx_codec.h386 #define vpx_codec_control(ctx, id, data) vpx_codec_control_(ctx, id, data) macro
401 #define vpx_codec_control(ctx, id, data) \ macro
/external/libvpx/libvpx/
Dvpxdec.c777 if (vpx_codec_control(&decoder, VP9_DECODE_SVC_SPATIAL_LAYER, in main_loop()
785 vpx_codec_control(&decoder, VP9D_SET_ROW_MT, enable_row_mt)) { in main_loop()
791 vpx_codec_control(&decoder, VP9D_SET_LOOP_FILTER_OPT, enable_lpf_opt)) { in main_loop()
800 vpx_codec_control(&decoder, VP8_SET_POSTPROC, &vp8_pp_cfg)) { in main_loop()
858 if (vpx_codec_control(&decoder, VPXD_GET_LAST_QUANTIZER, &qp)) { in main_loop()
896 vpx_codec_control(&decoder, VP8D_GET_FRAME_CORRUPTED, &corrupted)) { in main_loop()
920 if (vpx_codec_control(&decoder, VP9D_GET_DISPLAY_SIZE, in main_loop()
Dvpxenc.c1689 vpx_codec_control(&stream->encoder, VP8E_GET_LAST_QUANTIZER_64, &q); in update_quantizer_histogram()
1833 vpx_codec_control(&stream->encoder, VP8_COPY_REFERENCE, &ref_enc); in test_decode()
1834 vpx_codec_control(&stream->decoder, VP8_COPY_REFERENCE, &ref_dec); in test_decode()
1840 vpx_codec_control(&stream->encoder, VP9_GET_REFERENCE, &ref_enc); in test_decode()
1842 vpx_codec_control(&stream->decoder, VP9_GET_REFERENCE, &ref_dec); in test_decode()