@@ -26,7 +26,9 @@ import org.jellyfin.apiclient.model.dlna.TranscodingProfile
26
26
class ExoPlayerProfile (
27
27
disableVideoDirectPlay : Boolean ,
28
28
isAC3Enabled : Boolean ,
29
- downMixAudio : Boolean
29
+ downMixAudio : Boolean ,
30
+ userAVCLevel : String? = " auto" ,
31
+ userHEVCLevel : String? = " auto"
30
32
) : DeviceProfile() {
31
33
private val downmixSupportedAudioCodecs = arrayOf(
32
34
Codec .Audio .AAC ,
@@ -153,8 +155,22 @@ class ExoPlayerProfile(
153
155
154
156
codecProfiles = buildList {
155
157
// H264 profile
156
- add(deviceAVCCodecProfile)
157
- addAll(deviceAVCLevelCodecProfiles)
158
+ if (userAVCLevel == " auto" ) {
159
+ add(deviceAVCCodecProfile)
160
+ addAll(deviceAVCLevelCodecProfiles)
161
+ } else {
162
+ add(CodecProfile ().apply {
163
+ type = CodecType .Video
164
+ codec = Codec .Video .H264
165
+ conditions = arrayOf(
166
+ ProfileCondition (
167
+ ProfileConditionType .LessThanEqual ,
168
+ ProfileConditionValue .VideoLevel ,
169
+ userAVCLevel
170
+ )
171
+ )
172
+ })
173
+ }
158
174
// H264 ref frames profile
159
175
add(CodecProfile ().apply {
160
176
type = CodecType .Video
@@ -194,8 +210,23 @@ class ExoPlayerProfile(
194
210
)
195
211
})
196
212
// HEVC profiles
197
- add(deviceHevcCodecProfile)
198
- addAll(deviceHevcLevelCodecProfiles)
213
+ if (userHEVCLevel == " auto" ) {
214
+ add(deviceHevcCodecProfile)
215
+ addAll(deviceHevcLevelCodecProfiles)
216
+ } else {
217
+ add(CodecProfile ().apply {
218
+ type = CodecType .Video
219
+ codec = Codec .Video .HEVC
220
+ conditions = arrayOf(
221
+ ProfileCondition (
222
+ ProfileConditionType .LessThanEqual ,
223
+ ProfileConditionValue .VideoLevel ,
224
+ userHEVCLevel
225
+ )
226
+ )
227
+ })
228
+ }
229
+
199
230
// AV1 profile
200
231
add(deviceAV1CodecProfile)
201
232
// Limit video resolution support for older devices
0 commit comments