Skip to content

Commit

Permalink
Merge pull request xbmc#17876 from matthuisman/dvh1_android
Browse files Browse the repository at this point in the history
[Android] Support dvh1 codec
  • Loading branch information
peak3d authored Jun 17, 2020
2 parents c6d47fe + 8b8a228 commit 0c954b3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,11 @@ bool CDVDVideoCodecAndroidMediaCodec::Open(CDVDStreamInfo &hints, CDVDCodecOptio
m_mime = "video/dolby-vision";
m_formatname = "amc-dvhe";
}
else if (m_hints.codec_tag == MKTAG('d', 'v', 'h', '1'))
{
m_mime = "video/dolby-vision";
m_formatname = "amc-dvh1";
}
else
{
m_mime = "video/hevc";
Expand Down

0 comments on commit 0c954b3

Please sign in to comment.