diff --git a/addon/lib/filter.js b/addon/lib/filter.js index b7f6c39..b41a3cc 100644 --- a/addon/lib/filter.js +++ b/addon/lib/filter.js @@ -119,6 +119,14 @@ export const QualityFilter = { return hdrProfiles === 'DV'; } }, + { + key: 'dolbyvisionwithhdr', + label: 'Dolby Vision + HDR', + test(quality) { + const hdrProfiles = quality?.split(' ')?.slice(1)?.join() || ''; + return hdrProfiles.includes('DV') && hdrProfiles.includes('HDR'); + } + }, { key: '4k', label: '4k',