Home
last modified time | relevance | path

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

/external/webrtc/modules/video_coding/codecs/interface/
Dlibvpx_interface.cc85 return vpx_codec_control(ctx, VP8E_SET_ENABLEAUTOALTREF, param); in codec_control()
87 return vpx_codec_control(ctx, VP8E_SET_NOISE_SENSITIVITY, param); in codec_control()
89 return vpx_codec_control(ctx, VP8E_SET_SHARPNESS, param); in codec_control()
91 return vpx_codec_control(ctx, VP8E_SET_STATIC_THRESHOLD, param); in codec_control()
93 return vpx_codec_control(ctx, VP8E_SET_ARNR_MAXFRAMES, param); in codec_control()
95 return vpx_codec_control(ctx, VP8E_SET_ARNR_STRENGTH, param); in codec_control()
97 return vpx_codec_control(ctx, VP8E_SET_CQ_LEVEL, param); in codec_control()
99 return vpx_codec_control(ctx, VP8E_SET_MAX_INTRA_BITRATE_PCT, param); in codec_control()
101 return vpx_codec_control(ctx, VP9E_SET_MAX_INTER_BITRATE_PCT, param); in codec_control()
103 return vpx_codec_control(ctx, VP8E_SET_GF_CBR_BOOST_PCT, param); in codec_control()
[all …]
/external/libvpx/examples/
Dvpx_temporal_svc_encoder.c890 vpx_codec_control(&codec, VP8E_SET_CPUUSED, -speed); in main()
891 vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, kVp8DenoiserOff); in main()
892 vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1); in main()
893 vpx_codec_control(&codec, VP8E_SET_GF_CBR_BOOST_PCT, 0); in main()
896 if (vpx_codec_control(&codec, VP8E_SET_ROI_MAP, &roi)) in main()
902 vpx_codec_control(&codec, VP9E_SET_POSTENCODE_DROP, 0); in main()
903 vpx_codec_control(&codec, VP9E_SET_DISABLE_OVERSHOOT_MAXQ_CBR, 0); in main()
904 vpx_codec_control(&codec, VP8E_SET_CPUUSED, speed); in main()
905 vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3); in main()
906 vpx_codec_control(&codec, VP9E_SET_GF_CBR_BOOST_PCT, 0); in main()
[all …]
Dvp9_spatial_svc_encoder.c719 vpx_codec_control(encoder, VP9_GET_REFERENCE, &ref_enc); in test_decode()
721 vpx_codec_control(decoder, VP9_GET_REFERENCE, &ref_dec); in test_decode()
781 vpx_codec_control(codec, VP9E_GET_SVC_LAYER_ID, layer_id); in svc_output_rc_stats()
985 vpx_codec_control(&encoder, VP8E_SET_CPUUSED, svc_ctx.speed); in main()
987 vpx_codec_control(&encoder, VP9E_SET_TILE_COLUMNS, in main()
990 vpx_codec_control(&encoder, VP9E_SET_ROW_MT, 1); in main()
992 vpx_codec_control(&encoder, VP9E_SET_ROW_MT, 0); in main()
995 vpx_codec_control(&encoder, VP9E_SET_AQ_MODE, 3); in main()
997 vpx_codec_control(&encoder, VP8E_SET_STATIC_THRESHOLD, 1); in main()
998 vpx_codec_control(&encoder, VP8E_SET_MAX_INTRA_BITRATE_PCT, 900); 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()
Dvp9cx_set_ref.c80 if (vpx_codec_control(encoder, VP9_GET_REFERENCE, &ref_enc)) in testing_decode()
83 if (vpx_codec_control(decoder, VP9_GET_REFERENCE, &ref_dec)) in testing_decode()
257 if (vpx_codec_control(&ecodec, VP8E_SET_ENABLEAUTOALTREF, 0)) in main()
274 if (vpx_codec_control(&ecodec, VP8_SET_REFERENCE, &ref)) in main()
281 if (vpx_codec_control(&dcodec, VP8_SET_REFERENCE, &ref)) 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()
Dvpx_dec_fuzzer.cc100 vpx_codec_control(&codec, VP9D_SET_LOOP_FILTER_OPT, enable); in LLVMFuzzerTestOneInput()
Dvp8cx_set_ref.c166 if (vpx_codec_control(&codec, VP8_SET_REFERENCE, &ref)) in main()
Dsvc_encodeframe.c525 vpx_codec_control(codec_ctx, VP9E_SET_SVC, 1); in vpx_svc_init()
526 vpx_codec_control(codec_ctx, VP9E_SET_SVC_PARAMETERS, &si->svc_params); in vpx_svc_init()
/external/libvpx/test/
Ddecode_api_test.cc105 EXPECT_EQ(VPX_CODEC_ERROR, vpx_codec_control(dec, VP9_GET_REFERENCE, &ref)); in TestVp9Controls()
107 vpx_codec_control(dec, VP9_GET_REFERENCE, nullptr)); in TestVp9Controls()
116 vpx_codec_control(dec, VP8_COPY_REFERENCE, &ref_copy)); in TestVp9Controls()
118 vpx_codec_control(dec, VP8_COPY_REFERENCE, nullptr)); 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/vpx/
Dvpx_codec.h389 #define vpx_codec_control(ctx, id, data) vpx_codec_control_(ctx, id, data) macro
404 #define vpx_codec_control(ctx, id, data) \ macro
/external/libvpx/
Dvpxdec.c781 if (vpx_codec_control(&decoder, VP9_DECODE_SVC_SPATIAL_LAYER, in main_loop()
789 vpx_codec_control(&decoder, VP9D_SET_ROW_MT, enable_row_mt)) { in main_loop()
795 vpx_codec_control(&decoder, VP9D_SET_LOOP_FILTER_OPT, enable_lpf_opt)) { in main_loop()
804 vpx_codec_control(&decoder, VP8_SET_POSTPROC, &vp8_pp_cfg)) { in main_loop()
866 if (vpx_codec_control(&decoder, VPXD_GET_LAST_QUANTIZER, &qp)) { in main_loop()
904 vpx_codec_control(&decoder, VP8D_GET_FRAME_CORRUPTED, &corrupted)) { in main_loop()
928 if (vpx_codec_control(&decoder, VP9D_GET_DISPLAY_SIZE, in main_loop()
Dvpxenc.c1463 vpx_codec_control(&stream->encoder, VP8E_GET_LAST_QUANTIZER_64, &q); in update_quantizer_histogram()
1600 vpx_codec_control(&stream->encoder, VP8_COPY_REFERENCE, &ref_enc); in test_decode()
1601 vpx_codec_control(&stream->decoder, VP8_COPY_REFERENCE, &ref_dec); in test_decode()
1607 vpx_codec_control(&stream->encoder, VP9_GET_REFERENCE, &ref_enc); in test_decode()
1609 vpx_codec_control(&stream->decoder, VP9_GET_REFERENCE, &ref_dec); in test_decode()
/external/openscreen/cast/standalone_sender/
Dstreaming_vpx_encoder.cc300 vpx_codec_control(&encoder_, VP8E_SET_STATIC_THRESHOLD, 1); in PrepareEncoder()
318 vpx_codec_control(&encoder_, VP8E_SET_CPUUSED, -speed); in PrepareEncoder()
382 const auto get_quantizer_result = vpx_codec_control( in ComputeFrameEncodeStats()
/external/webrtc/modules/video_coding/codecs/vp8/
Dlibvpx_vp8_decoder.cc228 vpx_codec_control(decoder_, VP8_SET_POSTPROC, &ppcfg); in Decode()
282 vpx_codec_control(decoder_, VPXD_GET_LAST_QUANTIZER, &qp); in Decode()
Dlibvpx_vp8_encoder.cc1086 vpx_codec_control(&encoders_[encoder_idx], VP8E_GET_LAST_QUANTIZER_64, &qp); in PopulateCodecSpecific()
/external/webrtc/modules/video_coding/codecs/vp9/
Dlibvpx_vp9_decoder.cc180 vpx_codec_control(decoder_, VP9D_SET_LOOP_FILTER_OPT, 1); in Configure()
248 vpx_codec_control(decoder_, VPXD_GET_LAST_QUANTIZER, &qp); in Decode()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/vp9/src/main/jni/
Dvpx_jni.cc454 err = vpx_codec_control(context->decoder, VP9D_SET_ROW_MT, in DECODER_FUNC()
461 err = vpx_codec_control(context->decoder, VP9_SET_SKIP_LOOP_FILTER, true); in DECODER_FUNC()
467 err = vpx_codec_control(context->decoder, VP9D_SET_LOOP_FILTER_OPT, true); in DECODER_FUNC()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/vp9/src/main/jni/
Dvpx_jni.cc454 err = vpx_codec_control(context->decoder, VP9D_SET_ROW_MT, in DECODER_FUNC()
461 err = vpx_codec_control(context->decoder, VP9_SET_SKIP_LOOP_FILTER, true); in DECODER_FUNC()
467 err = vpx_codec_control(context->decoder, VP9D_SET_LOOP_FILTER_OPT, true); in DECODER_FUNC()