Commit 6b7e0cb6 by ojw28 Committed by GitHub

Merge pull request #3182 from WeiChungChang/Support_MP4_in_h262

Support H262 video in MP4
parents 7ddcc46c 469780f7
...@@ -1027,6 +1027,10 @@ import java.util.List; ...@@ -1027,6 +1027,10 @@ import java.util.List;
case 0xAB: case 0xAB:
mimeType = MimeTypes.AUDIO_DTS_HD; mimeType = MimeTypes.AUDIO_DTS_HD;
return Pair.create(mimeType, null); return Pair.create(mimeType, null);
case 0x60: /* Visual 13818-2 Simple Profile */
case 0x61: /* Visual 13818-2 Main Profile */
mimeType = MimeTypes.VIDEO_MPEG2;
break;
default: default:
mimeType = null; mimeType = null;
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment