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