mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Merge pull request #3182 from WeiChungChang/Support_MP4_in_h262
Support H262 video in MP4
This commit is contained in:
commit
6b7e0cb606
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue