mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-31 01:25:18 +01:00
cellVdec: Add MPEG4 profile 3
This profile is used in SingStar recordings while in a song on some versions.
This commit is contained in:
committed by
Ani
parent
1591b7f5a6
commit
d7b723cd7c
@@ -823,6 +823,7 @@ static error_code vdecQueryAttr(s32 type, u32 profile, u32 spec_addr /* may be 0
|
||||
case CELL_VDEC_DIVX_QMOBILE : memSize = new_sdk ? 0x11B720 : 0x1DEF30; break;
|
||||
case CELL_VDEC_DIVX_MOBILE : memSize = new_sdk ? 0x19A740 : 0x26DED0; break;
|
||||
case CELL_VDEC_MPEG4_PROFILE_1:
|
||||
case CELL_VDEC_MPEG4_PROFILE_3:
|
||||
case CELL_VDEC_MPEG4_PROFILE_4: // just a guess based on the profile used by singstar before and after update
|
||||
case CELL_VDEC_DIVX_HOME_THEATER: memSize = new_sdk ? 0x386A60 : 0x498060; break;
|
||||
case CELL_VDEC_DIVX_HD_720 : memSize = new_sdk ? 0x692070 : 0x805690; break;
|
||||
|
||||
@@ -390,6 +390,7 @@ struct CellVdecAvcInfo
|
||||
enum DIVX_level : u8
|
||||
{
|
||||
CELL_VDEC_MPEG4_PROFILE_1 = 1, // SingStar Vol.2 / Vol.3
|
||||
CELL_VDEC_MPEG4_PROFILE_3 = 3, // Used for SingStar recordings
|
||||
CELL_VDEC_MPEG4_PROFILE_4 = 4, // SingStar Pop
|
||||
CELL_VDEC_DIVX_QMOBILE = 10,
|
||||
CELL_VDEC_DIVX_MOBILE = 11,
|
||||
|
||||
Reference in New Issue
Block a user