mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 19:28:40 +09:00
Add support to libstagefright for AV1 FourCCs (part 2)
This commit is contained in:
parent
06fc050848
commit
ea4e32bd8a
1 changed files with 3 additions and 0 deletions
|
|
@ -270,6 +270,7 @@ static const char *FourCC2MIME(uint32_t fourcc) {
|
|||
return MEDIA_MIMETYPE_VIDEO_VP6;
|
||||
|
||||
case FOURCC('a', 'v', '0', '1'):
|
||||
case FOURCC('.', 'a', 'v', '1'):
|
||||
return MEDIA_MIMETYPE_VIDEO_AV1;
|
||||
|
||||
default:
|
||||
|
|
@ -1349,6 +1350,8 @@ status_t MPEG4Extractor::parseChunk(off64_t *offset, int depth) {
|
|||
case FOURCC('a', 'v', 'c', '1'):
|
||||
case FOURCC('a', 'v', 'c', '3'):
|
||||
case FOURCC('V', 'P', '6', 'F'):
|
||||
case FOURCC('a', 'v', '0', '1'):
|
||||
case FOURCC('.', 'a', 'v', '1'):
|
||||
{
|
||||
mHasVideo = true;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue