Skip to content

Commit

Permalink
Add support for VP9 in MP4 containers (#1324)
Browse files Browse the repository at this point in the history
added "vp9" to mp4 and fmp4 section of AVAILABLE_VIDEO_CODECS
  • Loading branch information
tburtenshaw authored Mar 18, 2024
1 parent 87375f4 commit 403c0a3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ class DeviceProfileBuilder(
*/
private val AVAILABLE_VIDEO_CODECS = arrayOf(
// mp4
arrayOf("mpeg1video", "mpeg2video", "h263", "mpeg4", "h264", "hevc", "av1"),
arrayOf("mpeg1video", "mpeg2video", "h263", "mpeg4", "h264", "hevc", "av1", "vp9"),
// fmp4
arrayOf("mpeg1video", "mpeg2video", "h263", "mpeg4", "h264", "hevc", "av1"),
arrayOf("mpeg1video", "mpeg2video", "h263", "mpeg4", "h264", "hevc", "av1", "vp9"),
// webm
arrayOf("vp8", "vp9", "av1"),
// mkv
Expand Down

0 comments on commit 403c0a3

Please sign in to comment.