Commit 469780f7 by WeiChungChang

Support H262 video in MP4

parent 1829d71d
......@@ -1027,6 +1027,10 @@ import java.util.List;
case 0xAB:
mimeType = MimeTypes.AUDIO_DTS_HD;
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:
mimeType = null;
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