Skip to content

Commit

Permalink
Those settings are not yet possible to use.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledyba-z committed Feb 9, 2020
1 parent f9c7bc4 commit 6f7f4d4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,15 @@ void Config::modify(aom_codec_ctx_t* aom) {
// AV1E_SET_S_FRAME_MODE is for video.
aom_codec_control(aom, AV1E_SET_AQ_MODE, adaptiveQuantization ? 1 : 0);
// AV1E_SET_FRAME_PERIODIC_BOOST is for video.
// AV1E_SET_NOISE_SENSITIVITY // FIXME(ledyba-z): it can be set, but not used.
// AV1E_SET_TUNE_CONTENT // FIXME(ledyba-z): it can be set, but not used.

// FIXME(ledyba-z): it can be set, but not used.
// To check, `grep -R 'oxcf->noise_sensitivity' external/libaom/av1`
// aom_codec_control(aom, AV1E_SET_NOISE_SENSITIVITY, 0);

// FIXME(ledyba-z): it can be set, but not used.
// To check, `grep -R 'oxcf->content' external/libaom/av1`
// aom_codec_control(aom, AV1E_SET_TUNE_CONTENT, AOM_CONTENT_DEFAULT);

// AV1E_SET_CDF_UPDATE_MODE is for video.

//FIXME(ledyba-z): support color profile. PNG can contain gamma correction and color profile.
Expand Down

0 comments on commit 6f7f4d4

Please sign in to comment.