| 107 | } |
| 108 | |
| 109 | TEST(ChangeSettingTest, AOM) { |
| 110 | // Test if changes to AV1 encode settings are detected. |
| 111 | TestEncodeDecode(AVIF_CODEC_CHOICE_AOM, {{"end-usage", "cbr"}}, true, false); |
| 112 | |
| 113 | // Test if changes to codec specific options are detected. |
| 114 | TestEncodeDecode(AVIF_CODEC_CHOICE_AOM, {}, true, true); |
| 115 | } |
| 116 | |
| 117 | TEST(ChangeSettingTest, RAV1E) { |
| 118 | TestEncodeDecode(AVIF_CODEC_CHOICE_RAV1E, {}, false, false); |
nothing calls this directly
no test coverage detected